1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-28 21:28:10 +00:00

docs: update changelogs

This commit is contained in:
Rob Ede 2024-05-14 09:44:17 +01:00
parent 086da28a63
commit 37a3d26ca5
No known key found for this signature in database
GPG key ID: 97C636207D3EF933
6 changed files with 10 additions and 5 deletions

View file

@ -4,6 +4,7 @@
### Changed
- Update `brotli` dependency to `6`.
- Minimum supported Rust version (MSRV) is now 1.72.
## 3.6.0

View file

@ -114,7 +114,7 @@ sha1 = { version = "0.10", optional = true }
actix-tls = { version = "3.3", default-features = false, optional = true }
# compress-*
brotli = { version = "6.0.0", optional = true }
brotli = { version = "6", optional = true }
flate2 = { version = "1.0.13", optional = true }
zstd = { version = "0.13", optional = true }

View file

@ -8,8 +8,12 @@
### Changed
- Update `brotli` dependency to `6`.
- Minimum supported Rust version (MSRV) is now 1.72.
- Avoid type confusion in rare circumstances
### Fixed
- Avoid type confusion with `rustls` in some circumstances.
## 4.5.1

View file

@ -125,7 +125,7 @@ actix-files = "0.6"
actix-test = { version = "0.1", features = ["openssl", "rustls-0_22"] }
awc = { version = "3", features = ["openssl"] }
brotli = "6.0.0"
brotli = "6"
const-str = "0.5"
criterion = { version = "0.5", features = ["html_reports"] }
env_logger = "0.11"

View file

@ -2,8 +2,8 @@
## Unreleased
- Update `brotli` dependency to `6`.
- Minimum supported Rust version (MSRV) is now 1.72.
- Fix warning on 1.78 due to unused TlsConnectorService struct
## 3.4.0

View file

@ -116,7 +116,7 @@ actix-tls = { version = "3.3", features = ["openssl", "rustls-0_22"] }
actix-utils = "3"
actix-web = { version = "4", features = ["openssl"] }
brotli = "6.0.0"
brotli = "6"
const-str = "0.5"
env_logger = "0.11"
flate2 = "1.0.13"