From 2fd97570f098812763a7b06ee4d8aa51d3f245fa Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Mon, 30 Jan 2017 08:45:58 +0200 Subject: [PATCH] Update changelog for 0.10 (#691) --- servant-client/CHANGELOG.md | 7 ++++++- servant-server/CHANGELOG.md | 10 ++++++++++ servant/CHANGELOG.md | 8 ++++++-- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/servant-client/CHANGELOG.md b/servant-client/CHANGELOG.md index 09251bc8..62eb0ac0 100644 --- a/servant-client/CHANGELOG.md +++ b/servant-client/CHANGELOG.md @@ -7,7 +7,12 @@ * client asks for any content-type in Accept contentTypes non-empty list ([#615](https://github.com/haskell-servant/servant/pull/615)) -* Add `ClientLike` class that matches client functions generated using `client` with client data structure. +* Add `ClientLike` class that matches client functions generated using `client` + with client data structure. + ([#640](https://github.com/haskell-servant/servant/pull/640)) + +* Allow direct use of 'RequestBody' + ([#661](https://github.com/haskell-servant/servant/pull/661)) 0.9.1.1 ------- diff --git a/servant-server/CHANGELOG.md b/servant-server/CHANGELOG.md index 98c840a8..2db1abc0 100644 --- a/servant-server/CHANGELOG.md +++ b/servant-server/CHANGELOG.md @@ -15,6 +15,16 @@ `serveDirectoryWebApp`, `serveDirectoryWebAppLookup`, `serveDirectoryEmbedded` and `serveDirectoryWith` which offer 4 default options and a more flexible one for serving static files. + ([#658](https://github.com/haskell-servant/servant/pull/658)) + +* `DelayedIO` is an instance of `MonadResource`, allowing safe resource handling. + ([#622](https://github.com/haskell-servant/servant/pull/622) + , [#674](https://github.com/haskell-servant/servant/pull/674) + , [#675](https://github.com/haskell-servant/servant/pull/675)) + +* We now throw error on parameter parse failure + ([#649](https://github.com/haskell-servant/servant/pull/649) + , [#670](https://github.com/haskell-servant/servant/pull/670)) 0.7.1 ------ diff --git a/servant/CHANGELOG.md b/servant/CHANGELOG.md index 4c089f42..dcb19045 100644 --- a/servant/CHANGELOG.md +++ b/servant/CHANGELOG.md @@ -9,8 +9,8 @@ ([#527](https://github.com/haskell-servant/servant/issues/527)) * Add `Servant.API.TypeLevel` module with type families to work with API types. - ([#345](https://github.com/haskell-servant/servant/pull/345)) - ([#305](https://github.com/haskell-servant/servant/issues/305)) + ([#345](https://github.com/haskell-servant/servant/pull/345) + , [#305](https://github.com/haskell-servant/servant/issues/305)) * Default JSON content type change to `application/json;charset=utf-8`. ([#263](https://github.com/haskell-servant/servant/issues/263)) @@ -18,6 +18,10 @@ [Chromium](https://bugs.chromium.org/p/chromium/issues/detail?id=438464) and [Firefox](https://bugzilla.mozilla.org/show_bug.cgi?id=918742) +* `Accept` class may accept multiple content-types. `MimeUnrender` adopted as well. + ([#613](https://github.com/haskell-servant/servant/pull/614) + , [#615](https://github.com/haskell-servant/servant/pull/615)) + 0.9.1 ------