Update changelog for 0.10 (#691)

This commit is contained in:
Oleg Grenrus 2017-01-30 08:45:58 +02:00 committed by GitHub
parent cdda7bcf8d
commit 2fd97570f0
3 changed files with 22 additions and 3 deletions

View File

@ -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
-------

View File

@ -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
------

View File

@ -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
------