platform/CHANGELOG.md

31 lines
875 B
Markdown
Raw Normal View History

2019-02-03 18:28:25 +00:00
# 3.0.5
* Add `MiddlewarePipelineIterator`.
2019-02-03 16:44:44 +00:00
# 3.0.4
* Add `RouteResult` class, which allows segments (i.e. wildcard) to
modify the `tail`.
* Add more wildcard tests.
2019-02-03 05:52:48 +00:00
# 3.0.3
* Support trailing text after parameters with custom Regexes.
2019-02-03 05:33:47 +00:00
# 3.0.2
* Support leading and trailing text for both `:parameters` and `*`
2018-12-09 02:32:55 +00:00
# 3.0.1
* Make the callback in `Router.group` generically-typed.
2018-08-20 18:59:51 +00:00
# 3.0.0
2018-08-20 14:24:11 +00:00
* Make `Router` and `Route` single-parameter generic.
2018-08-20 18:59:51 +00:00
* Remove `package:browser` dependency.
* `BrowserRouter.on` now only accepts a `String`.
* `MiddlewarePipeline.routingResults` now accepts
an `Iterable<RoutingResult>`, instead of just a `List`.
* Removed deprecated `Route.as`, as well as `Router.registerMiddleware`.
2018-08-20 19:33:06 +00:00
* Completely removed `Route.requestMiddleware`.
2018-06-23 02:54:20 +00:00
# 2.0.7
* Minor strong mode updates to work with stricter Dart 2.
2018-06-04 01:46:44 +00:00
# 2.0.5
* Patch to work with `combinator@1.0.0`.