CHANGELOG entries for servant and servant-server

This commit is contained in:
aaron levin 2015-08-12 20:38:03 -04:00 committed by Arian van Putten
parent 873f79ef79
commit 4fce780c44
2 changed files with 11 additions and 0 deletions

View file

@ -3,6 +3,11 @@ HEAD
* Support for the `HttpVersion`, `IsSecure`, `RemoteHost` and `Vault` combinators * Support for the `HttpVersion`, `IsSecure`, `RemoteHost` and `Vault` combinators
* Drop `EitherT` in favor of `ExceptT` * Drop `EitherT` in favor of `ExceptT`
* 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 0.4.1
----- -----

View file

@ -4,6 +4,12 @@ HEAD
* Add `HttpVersion`, `IsSecure`, `RemoteHost` and `Vault` combinators * Add `HttpVersion`, `IsSecure`, `RemoteHost` and `Vault` combinators
* Fix safeLink, so Header is not in fact required. * Fix safeLink, so Header is not in fact required.
* Added more instances for (:<|>) * 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 0.4.2
----- -----