platform/CHANGELOG.md

42 lines
2.4 KiB
Markdown
Raw Normal View History

2018-08-19 15:33:25 +00:00
# 2.0.0-alpha
2018-08-17 23:05:32 +00:00
* Removed `random_string` dependency.
2018-08-19 15:33:25 +00:00
* Moved reflection to `package:angel_container`.
* Upgraded `package:file` to `5.0.0`.
* `ResponseContext.sendFile` now uses `package:file`.
* Abandon `ContentType` in favor of `MediaType`.
* Changed view engine to use `Map<String, dynamic>`.
2018-08-19 15:49:33 +00:00
* Remove dependency on `package:json_god` by default.
* Remove dependency on `package:dart2_constant`.
2018-08-20 02:31:08 +00:00
* Remove `contentType` argument in `ResponseContext.serialize`.
2018-08-20 02:37:48 +00:00
* Moved `lib/hooks.dart` into `package:angel_hooks`.
* Moved `TypedService` into `package:angel_typed_service`.
2018-08-20 03:18:19 +00:00
* Completely removed the `AngelBase` class.
2018-08-20 03:20:12 +00:00
* Removed all `@deprecated` symbols.
* `Service.toId` was renamed to `Service.parseId`; it also now uses its
single type argument to determine how to parse a value.
2018-08-20 03:28:27 +00:00
* In addition, this method was also made `static`.
* `RequestContext` and `ResponseContext` are now generic, and take a
single type argument pointing to the underlying request/response type,
2018-08-20 03:31:59 +00:00
respectively.
* `RequestContext.io` and `ResponseContext.io` are now permanently
gone.
* `HttpRequestContextImpl` and `HttpResponseContextImpl` were renamed to
2018-08-20 03:46:38 +00:00
`HttpRequestContext` and `HttpResponseContext`.
* Lazy-parsing request bodies is now the default; `Angel.lazyParseBodies` was replaced
2018-08-20 03:51:09 +00:00
with `Angel.eagerParseRequestBodies`.
* `Angel.storeOriginalBuffer` -> `Angel.storeRawRequestBuffers`.
* The methods `lazyBody`, `lazyFiles`, and `lazyOriginalBuffer` on `ResponseContext` were all
2018-08-20 04:09:54 +00:00
replaced with `parseBody`, `parseUploadedFiles`, and `parseRawRequestBuffer`, respectively.
2018-08-20 04:10:09 +00:00
* Removed the synchronous equivalents of the above methods (`body`, `files`, and `originalBuffer`),
2018-08-20 19:42:05 +00:00
as well as `query`.
2018-08-20 19:43:27 +00:00
* Removed `Angel.injections` and `RequestContext.injections`.
2018-08-20 19:52:44 +00:00
* Removed `Angel.inject` and `RequestContext.inject`.
* Removed a dependency on `package:pool`, which also meant removing `AngelHttp.throttle`.
* Remove the `RequestMiddleware` typedef; from now on, one should use `ResponseContext.end`
2018-08-20 19:52:44 +00:00
exclusively to close responses.
* `waterfall` will now only accept `RequestHandler`.
* `Routable`, and all of its subclasses, now extend `Router<RequestHandler>`, and therefore only
take routes in the form of `FutureOr myFunc(RequestContext, ResponseContext res)`.
* `@Middleware` now takes an `Iterable` of `RequestHandler`s.
* `@Expose.path` now *must* be a `String`, not just any `Pattern`.
* `@Expose.middleware` now takes `Iterable<RequestHandler>`, instead of just `List`.