2.3 KiB
2.3 KiB
0.8.1 / 2019-05-20
- Add HTTP version to
HTTPure.Request(thanks @joneshf) - Fix inconsistent case-insensitivity with
HTTPure.Headers(thanks @joneshf)
0.8.0 / 2019-02-16
- Re-export
HTTPure.QueryandHTTPure.Status(thanks @akheron) - Support binary response body (thanks @akheron)
- Add support for chunked responses
ServerMnow contains a callback that when called will shut down the server- Map empty query parameters to empty strings instead of
"true" - Decode percent encoding in path segments and query parameters automatically
- Use psc-package instead of bower
0.7.0 / 2018-07-08
- Add support for PureScript 0.12 (thanks @akheron)
- Upgrade all dependencies (thanks @akheron)
- Use
Effectinstead ofEff(thanks @akheron) - Use
Foreign.Objectinstead ofStrMap(thanks @akheron) - Use
Effect.Refinstead ofControl.Monad.ST(thanks @akheron) - Drop
SecureServerM, it's the same asServerMnow (thanks @akheron)
0.6.0 / 2018-02-08
- Rename
serve'toserveSecure, addserve'andserveSecure'.
0.5.0 / 2017-10-25
- Make ResponseM an
Affinstead ofEff - Add helpers and instances for working with headers (
Semigroupinstance,HTTPure.header,HTTPure.empty, etc) - Clean up patterns for response helpers so all helpers are consistent
- Add
HTTPure.fullPathfunction - Extend
Lookuptypeclass -- make!!returnMaybetypes and add!?and!@operators. - Add examples and guidelines for working with middlewares
- Add guides
0.4.0 / 2017-09-26
- Major refactor for simpler APIs
- Lookup typeclass and
!!operator - Support for inspecting and routing on path segments
- Support for inspecting and routing on query parameters
0.3.0 / 2017-08-01
- Support HTTPS servers
0.2.0 / 2017-07-20
- Support all HTTP response statuses
- Support all HTTP request methods
- Added in v0.1.0
- Get
- Post
- Put
- Delete
- New
- Head
- Connect
- Options
- Trace
- Patch
- Added in v0.1.0
0.1.0 / 2017-07-17
- Support OK response
- Support Get, Post, Put, and Delete HTTP methods
- Support sending and reading headers and body