1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 00:01:11 +01:00
actix-net/actix-codec/CHANGES.md

86 lines
1.6 KiB
Markdown
Raw Normal View History

2018-12-10 00:19:25 +01:00
# Changes
2023-09-17 21:25:58 +02:00
## Unreleased
2022-03-15 20:43:06 +01:00
2024-05-11 18:39:34 +02:00
- Minimum supported Rust version (MSRV) is now 1.70.
## 0.5.2
2023-07-17 04:05:39 +02:00
- Minimum supported Rust version (MSRV) is now 1.65.
2022-03-15 20:43:06 +01:00
2023-09-17 21:25:58 +02:00
## 0.5.1
2023-03-03 23:36:13 +01:00
- Logs emitted now use the `tracing` crate with `log` compatibility.
2022-03-02 17:40:11 +01:00
- Minimum supported Rust version (MSRV) is now 1.49.
2021-11-05 02:05:51 +01:00
2023-09-17 21:25:58 +02:00
## 0.5.0
2023-03-03 23:36:13 +01:00
- Updated `tokio-util` dependency to `0.7.0`.
2022-02-15 02:47:27 +01:00
2023-09-17 21:25:58 +02:00
## 0.4.2
2021-12-31 09:08:14 +01:00
2023-03-03 23:36:13 +01:00
- No significant changes since `0.4.1`.
2021-12-31 09:08:14 +01:00
2023-09-17 21:25:58 +02:00
## 0.4.1
2023-03-03 23:36:13 +01:00
- Added `LinesCodec`.
- `Framed::poll_ready` flushes when the buffer is full.
2020-12-28 04:24:43 +01:00
2023-09-17 21:25:58 +02:00
## 0.4.0
2021-04-21 12:08:43 +02:00
2023-03-03 23:36:13 +01:00
- No significant changes since v0.4.0-beta.1.
2021-04-21 12:08:43 +02:00
2023-09-17 21:25:58 +02:00
## 0.4.0-beta.1
2023-03-03 23:36:13 +01:00
- Replace `pin-project` with `pin-project-lite`.
- Upgrade `tokio` dependency to `1`.
- Upgrade `tokio-util` dependency to `0.6`.
- Upgrade `bytes` dependency to `1`.
2020-12-28 04:24:43 +01:00
2023-09-17 21:25:58 +02:00
## 0.3.0
2020-08-24 10:18:37 +02:00
2023-03-03 23:36:13 +01:00
- No changes from beta 2.
2020-12-28 04:24:43 +01:00
2023-09-17 21:25:58 +02:00
## 0.3.0-beta.2
2023-03-03 23:36:13 +01:00
- Remove unused type parameter from `Framed::replace_codec`.
2020-12-28 04:24:43 +01:00
2023-09-17 21:25:58 +02:00
## 0.3.0-beta.1
2023-03-03 23:36:13 +01:00
2021-12-18 03:49:23 +01:00
- Use `.advance()` instead of `.split_to()`.
- Upgrade `tokio-util` to `0.3`.
- Improve `BytesCodec::encode()` performance.
- Simplify `BytesCodec::decode()`.
- Rename methods on `Framed` to better describe their use.
- Add method on `Framed` to get a pinned reference to the underlying I/O.
- Add method on `Framed` check emptiness of read buffer.
2019-12-19 04:50:31 +01:00
2023-09-17 21:25:58 +02:00
## 0.2.0
2019-12-11 05:18:11 +01:00
2023-03-03 23:36:13 +01:00
- Use specific futures dependencies.
2020-12-28 04:24:43 +01:00
## 0.2.0-alpha.4
2023-03-03 23:36:13 +01:00
- Fix buffer remaining capacity calculation.
2020-12-28 04:24:43 +01:00
## 0.2.0-alpha.3
2023-03-03 23:36:13 +01:00
2021-12-18 03:49:23 +01:00
- Use tokio 0.2.
- Fix low/high watermark for write/read buffers.
2020-12-28 04:24:43 +01:00
## 0.2.0-alpha.2
2019-12-02 17:30:09 +01:00
2023-03-03 23:36:13 +01:00
- Migrated to `std::future`.
2019-03-28 01:30:37 +01:00
2023-09-17 21:25:58 +02:00
## 0.1.2
2019-03-28 01:30:37 +01:00
2023-03-03 23:36:13 +01:00
- Added `Framed::map_io()` method.
2019-03-07 07:53:55 +01:00
2023-09-17 21:25:58 +02:00
## 0.1.1
2019-03-07 07:53:55 +01:00
2023-03-03 23:36:13 +01:00
- Added `FramedParts::with_read_buffer()` method.
2018-12-10 00:19:25 +01:00
2023-09-17 21:25:58 +02:00
## 0.1.0
2023-03-03 23:36:13 +01:00
2021-12-18 03:49:23 +01:00
- Move codec to separate crate.