2018-06-10 23:17:11 +00:00
|
|
|
# 1.1.4+3
|
|
|
|
* Don't create a Stopwatch in production.
|
|
|
|
* Fix a bug where `handleAngelHttpException` created a race condition.
|
|
|
|
* `ResponseContext.serialize` now returns a `bool`.
|
|
|
|
|
2018-06-10 22:34:05 +00:00
|
|
|
# 1.1.4+2
|
|
|
|
* Fix a bug that prevented proper rendering of views.
|
|
|
|
* Fixed a hidden bug that prevents error handling when a
|
|
|
|
stack trace is `null`.
|
|
|
|
* Fixed a bug that prevented proper handling of `content-encoding`.
|
|
|
|
|
2018-06-08 07:20:09 +00:00
|
|
|
# 1.1.4+1
|
|
|
|
* Ensure correct error handling when `useZone` is `false`.
|
|
|
|
|
2018-06-08 07:06:26 +00:00
|
|
|
# 1.1.4
|
|
|
|
* Remove all usages of `async`/`await` in the core library.
|
|
|
|
* `AngelConfigurer` now accepts `FutureOr`.
|
|
|
|
* `AngelHttp` now has a `useZone` flag to disable custom zones.
|
|
|
|
|
2018-04-06 19:46:28 +00:00
|
|
|
# 1.1.3
|
|
|
|
* `AngelHttp` now handles requests in a `Zone`.
|
2018-05-16 02:05:13 +00:00
|
|
|
* Use `package:dart2_constant`.
|
2018-04-06 19:46:28 +00:00
|
|
|
|
2018-03-30 18:33:36 +00:00
|
|
|
# 1.1.2
|
|
|
|
* `MapService` will store `created_at` and `updated_at` as `String`.
|
|
|
|
|
2018-02-07 03:16:52 +00:00
|
|
|
# 1.1.1
|
|
|
|
* `ResponseContext` no longer automatically closes if `serializer` returns an
|
|
|
|
empty string.
|
2018-02-07 03:24:44 +00:00
|
|
|
* Added `autoSnakeCaseNames` to `MapService`.
|
2018-02-07 04:17:40 +00:00
|
|
|
* Deprecated `Angel.createZoneForRequest`.
|
|
|
|
* Deprecated all `Angel` methods that directly touch an `HttpServer` or `HttpRequest`.
|
|
|
|
* Created the `AngelHttp` class.
|
2018-02-07 05:26:11 +00:00
|
|
|
* Removed explicit dependence on `dart:io` for `Angel`, `RequestContext`, `ResponseContext`.
|
2018-02-07 05:46:59 +00:00
|
|
|
* Created `lib/http.dart`, which exports HTTP-specific functionality.
|
|
|
|
* `AnonymousService` now takes `FutureOr`.
|
2018-02-07 05:48:32 +00:00
|
|
|
* `Service.toId` no longer only takes a `String`, and is generically-typed.
|
2018-02-07 03:16:52 +00:00
|
|
|
|
2017-12-12 18:33:58 +00:00
|
|
|
# 1.1.0+3
|
|
|
|
* Modified `ResponseContext#isOpen` to also return `false` if streaming is being used.
|
|
|
|
|
2017-12-12 18:28:52 +00:00
|
|
|
# 1.1.0+2
|
|
|
|
* Modified `handleAngelHttpException` to only run rescue code
|
|
|
|
if the response is still open. Prevents application crashes.
|
|
|
|
|
2017-12-10 05:05:59 +00:00
|
|
|
# 1.1.0+1
|
|
|
|
* Modified `_matchesId` in `MapService` to support custom ID fields.
|
|
|
|
|
2017-12-06 14:46:35 +00:00
|
|
|
# 1.1.0
|
|
|
|
* The default `errorHandler` now only sends HTML if the user explicitly accepts it.
|
|
|
|
|
2017-11-28 18:14:50 +00:00
|
|
|
# 1.1.0-alpha+9
|
|
|
|
* Fixed a bug that prevented `isProduction` from ever returning `true`.
|
|
|
|
* This enabled caching, which greatly improved performance.
|
|
|
|
* Requests no longer have independent zones, which greatly improved performance.
|
|
|
|
* `FormatException`, when caught, is automatically transformed in a `400` error response.
|
|
|
|
* Added `extension` to `RequestContext`.
|
|
|
|
* Added `strict` to `RequestContext#accepts`.
|
|
|
|
* Added a `toString` override for the `Providers` class.
|
|
|
|
* Returned to `RegExp` for stripping stray slashes.
|
|
|
|
* The request path is now only parsed once.
|
|
|
|
* Optimized the parsing of the `ACCEPT_ENCODING` header.
|
|
|
|
|
2017-11-18 17:42:31 +00:00
|
|
|
# 1.1.0-alpha+8
|
|
|
|
* Added an `autoIdAndDateFields` flag to `MapService`. Finally.
|
|
|
|
|
|
|
|
# 1.1.0-alpha+7
|
|
|
|
* Made `handlerCache` public.
|
|
|
|
* Added `AngelMetrics`.
|
|
|
|
|
2017-10-10 16:55:42 +00:00
|
|
|
# 1.1.0-alpha+6
|
|
|
|
* Added `@Parameter()` annotations, with support for pattern matching.
|
|
|
|
|
2017-10-04 14:09:12 +00:00
|
|
|
# 1.1.0-alpha+5
|
|
|
|
* Closed [#166](https://github.com/angel-dart/framework/issues/166), killing any hanging `Stopwatch` instances when streaming.
|
|
|
|
* Removed `AngelPlugin` and `AngelMiddleware`, as well as the `@proxy` annotations from `Angel` and `RequestContext`.
|
|
|
|
* Officially deprecated `properties` in `Angel`.
|
|
|
|
* Fixed a bug where cached routes would not heed the request method. [#173](https://github.com/angel-dart/framework/issues/173)
|
|
|
|
* Reworked error handling logic; now, errors will not automatically default to sending JSON.
|
|
|
|
* Removed the `onController` stream from `Angel`.
|
|
|
|
* Controllers now longer use `call`, which has now been renamed to `configureServer`.
|
|
|
|
|
2017-09-24 19:43:14 +00:00
|
|
|
# 1.1.0-alpha+4
|
|
|
|
* Made `injections` in `RequestContext` private.
|
|
|
|
* Renamed `properties` in `AngelBase` to `configuration`.
|
|
|
|
|
2017-09-24 17:56:33 +00:00
|
|
|
# 1.1.0-alpha+3
|
|
|
|
* Fixed a bug where `encoders` would cause a malformed response to be sent.
|
|
|
|
* Fixed a bug where `encoders` would not always use the correct encoder.
|
|
|
|
|
2017-09-22 04:48:22 +00:00
|
|
|
# 1.1.0-alpha
|
2017-09-22 14:03:23 +00:00
|
|
|
* Removed `AngelFatalError`, and subsequently `fatalErrorStream`.
|
2017-09-22 04:48:22 +00:00
|
|
|
* Removed all `@deprecated` members.
|
2017-12-12 18:33:58 +00:00
|
|
|
* Removed `@Hooked`, `beforeProcessed`, and `afterProcessed`.
|