mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
97 lines
1.5 KiB
Markdown
97 lines
1.5 KiB
Markdown
# Changes
|
|
|
|
## [0.6.2] - 2022-01-30
|
|
|
|
* Add BytesVec support
|
|
|
|
## [0.6.1] - 2022-01-17
|
|
|
|
* Removed unused Decoder::decode_eof() method
|
|
|
|
## [0.6.0] - 2021-12-18
|
|
|
|
* Remove Framed type
|
|
|
|
* Remove tokio dependency
|
|
|
|
## [0.5.1] - 2021-09-08
|
|
|
|
* Fix tight loop in Framed::close() method
|
|
|
|
## [0.5.0] - 2021-06-27
|
|
|
|
* Use ntex-bytes stead of bytes
|
|
|
|
## [0.4.1] - 2021-04-04
|
|
|
|
* Use Either from ntex-service
|
|
|
|
## [0.4.0] - 2021-02-23
|
|
|
|
* Migrate to tokio 1.x
|
|
|
|
## [0.3.0] - 2021-02-20
|
|
|
|
* Make Encoder and Decoder methods immutable
|
|
|
|
## [0.2.2] - 2021-01-21
|
|
|
|
* Flush underlying io stream
|
|
|
|
## [0.2.1] - 2020-08-10
|
|
|
|
* Require `Debug` impl for `Error`
|
|
|
|
## [0.2.0] - 2020-08-10
|
|
|
|
* Include custom `Encoder` and `Decoder` traits
|
|
|
|
* Remove `From<io::Error>` constraint from `Encoder` and `Decoder` traits
|
|
|
|
## [0.1.2] - 2020-04-17
|
|
|
|
* Do not swallow unprocessed data on read errors
|
|
|
|
## [0.1.1] - 2020-04-07
|
|
|
|
* Optimize io operations
|
|
|
|
* Fix framed close method
|
|
|
|
## [0.1.0] - 2020-03-31
|
|
|
|
* Fork crate to ntex namespace
|
|
|
|
* Use `.advance()` intead of `.split_to()`
|
|
|
|
* Add Unpin constraint and remove unneeded unsafe
|
|
|
|
## [0.2.0] - 2019-12-10
|
|
|
|
* Use specific futures dependencies
|
|
|
|
## [0.2.0-alpha.4]
|
|
|
|
* Fix buffer remaining capacity calcualtion
|
|
|
|
## [0.2.0-alpha.3]
|
|
|
|
* Use tokio 0.2
|
|
|
|
* Fix low/high watermark for write/read buffers
|
|
|
|
## [0.2.0-alpha.2]
|
|
|
|
* Migrated to `std::future`
|
|
|
|
## [0.1.2] - 2019-03-27
|
|
|
|
* Added `Framed::map_io()` method.
|
|
|
|
## [0.1.1] - 2019-03-06
|
|
|
|
* Added `FramedParts::with_read_buffer()` method.
|
|
|
|
## [0.1.0] - 2018-12-09
|
|
|
|
* Move codec to separate crate
|