ntex/ntex-codec/CHANGES.md
Nikolay Kim 6c250c9a4d
Refactor h1 dispatcher (#38)
* refactor h1 dispatcher

* Rename FrameReadTask/FramedWriteTask to ReadTask/WriteTask

* Make Encoder and Decoder methods immutable
2021-01-23 19:44:56 +06:00

1.1 KiB

Changes

[0.3.0] - 2021-01-23

  • 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