CHANGELOG entries for servant and servant-server

This commit is contained in:
aaron levin 2015-08-12 20:38:03 -04:00 committed by aaron levin
parent c7da1ba9dc
commit 3f5106da77
2 changed files with 12 additions and 0 deletions

View file

@ -8,6 +8,11 @@ HEAD
* Remove `RouteMismatch`.
* Redefined constructors of `RouteResult`.
* Added `Delayed` and related functions (`addMethodCheck`, `addAcceptCheck`, `addBodyCheck`, `runDelayed`)
* Support for the new authentication framework. Including:
* `HasServer` instances for `AuthProtect` in `Strict` and `Lax` mode
* `Enter` instances for `AuthProtected`
* combinators to support `Basic` authentication.
* combinators to support `JWT` authentication
0.4.1
-----

View file

@ -7,6 +7,13 @@ HEAD
* Use `http-api-data` instead of `Servant.Common.Text`
* Remove matrix params.
* Add PlainText String MimeRender and MimeUnrender instances.
* Added more instances for (:<|>)
* Add combinators for the new authentication framework:
* `AuthPolicy` universe to parameterize authentication policy strictness.
* `AuthProtect` combinator used to protect sets of endpoints
* `AuthProtected` data family that users will provide at the server/client-level.
* `BasicAuth` data type for `Basic` authentication.
* `JSON` data type for `JWT` authentication.
0.4.2
-----