purescript-httpurple/History.md

64 lines
1.8 KiB
Markdown
Raw Normal View History

2018-08-20 21:14:05 +00:00
unreleased
==========
- Re-export `HTTPure.Query` and `HTTPure.Status` (thanks **@akheron**)
- Support binary response body (thanks **@akheron**)
- Add support for chunked responses
2018-08-20 21:14:05 +00:00
2018-07-08 23:30:23 +00:00
0.7.0 / 2018-07-08
==================
2018-07-08 23:42:10 +00:00
- Add support for PureScript 0.12 (thanks **@akheron**)
- Upgrade all dependencies (thanks **@akheron**)
- Use `Effect` instead of `Eff` (thanks **@akheron**)
- Use `Foreign.Object` instead of `StrMap` (thanks **@akheron**)
- Use `Effect.Ref` instead of `Control.Monad.ST` (thanks **@akheron**)
- Drop `SecureServerM`, it's the same as `ServerM` now (thanks **@akheron**)
2018-07-08 23:29:56 +00:00
2018-02-09 05:48:47 +00:00
0.6.0 / 2018-02-08
==================
- Rename `serve'` to `serveSecure`, add `serve'` and `serveSecure'`.
2017-10-26 01:10:19 +00:00
0.5.0 / 2017-10-25
==================
- Make ResponseM an `Aff` instead of `Eff`
- Add helpers and instances for working with headers (`Semigroup` instance,
`HTTPure.header`, `HTTPure.empty`, etc)
- Clean up patterns for response helpers so all helpers are consistent
- Add `HTTPure.fullPath` function
- Extend `Lookup` typeclass -- make `!!` return `Maybe` types and add `!?` and
`!@` operators.
- Add examples and guidelines for working with middlewares
- Add guides
2017-09-26 07:15:36 +00:00
0.4.0 / 2017-09-26
==================
2017-09-26 06:08:07 +00:00
- 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
2017-08-02 05:04:18 +00:00
0.3.0 / 2017-08-01
==================
2017-07-23 19:30:45 +00:00
- Support HTTPS servers
2017-07-21 05:50:49 +00:00
0.2.0 / 2017-07-20
==================
2017-07-19 18:59:55 +00:00
- Support all HTTP response statuses
2017-07-19 05:57:41 +00:00
- Support all HTTP request methods
- Added in v0.1.0
- Get
- Post
- Put
- Delete
- New
- Head
- Connect
- Options
- Trace
- Patch
2017-07-18 05:54:41 +00:00
0.1.0 / 2017-07-17
==================
2017-07-18 05:53:40 +00:00
- Support OK response
- Support Get, Post, Put, and Delete HTTP methods
2017-07-18 05:53:40 +00:00
- Support sending and reading headers and body