1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-12 19:57:38 +01:00
actix-web/CHANGES.md

62 lines
974 B
Markdown
Raw Permalink Normal View History

2017-10-30 20:46:39 -07:00
# Changes
2017-10-23 23:25:32 -07:00
2018-01-13 16:57:01 -08:00
## 0.3.1 (2018-01-13)
2018-01-13 11:17:48 -08:00
* Fix directory entry path #47
* Do not enable chunked encoding for HTTP/1.0
2018-01-13 11:17:48 -08:00
2018-01-13 16:57:01 -08:00
* Allow explicitly disable chunked encoding
2017-10-23 23:25:32 -07:00
2018-01-12 12:31:33 -08:00
## 0.3.0 (2018-01-12)
2017-11-06 01:24:49 -08:00
* HTTP/2 Support
2017-11-30 14:42:20 -08:00
* Refactor streaming responses
2017-11-15 20:06:28 -10:00
* Refactor error handling
2017-11-09 22:08:54 -08:00
* Asynchronous middlewares
2017-11-10 13:26:12 -08:00
* Refactor logger middleware
2017-11-19 17:26:31 -10:00
* Content compression/decompression (br, gzip, deflate)
2018-01-03 23:59:12 -08:00
* Server multi-threading
* Gracefull shutdown support
2017-11-06 01:24:49 -08:00
2017-11-03 13:35:34 -07:00
## 0.2.1 (2017-11-03)
* Allow to start tls server with `HttpServer::serve_tls`
2017-11-03 13:35:34 -07:00
* Export `Frame` enum
* Add conversion impl from `HttpResponse` and `BinaryBody` to a `Frame`
2017-11-06 01:24:49 -08:00
2017-10-30 20:39:56 -07:00
## 0.2.0 (2017-10-30)
2017-10-23 23:25:32 -07:00
* Do not use `http::Uri` as it can not parse some valid paths
2017-10-23 23:25:32 -07:00
* Refactor response `Body`
* Refactor `RouteRecognizer` usability
2017-10-23 23:39:01 -07:00
* Refactor `HttpContext::write`
2017-10-26 23:14:33 -07:00
* Refactor `Payload` stream
2017-10-23 23:39:01 -07:00
* Re-use `BinaryBody` for `Frame::Payload`
2017-10-29 20:51:06 -07:00
* Stop http actor on `write_eof`
2017-10-25 16:25:26 -07:00
* Fix disconnection handling.
2017-10-23 23:25:32 -07:00
## 0.1.0 (2017-10-23)
* First release