Skip to content

Commit

Permalink
chore: bump versions of 'h2' and 'http'
Browse files Browse the repository at this point in the history
  • Loading branch information
gschulze committed Aug 8, 2024
1 parent 5be5382 commit 287c59f
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 7 deletions.
5 changes: 5 additions & 0 deletions actix-http-test/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

- Minimum supported Rust version (MSRV) is now 1.72.

### Dependencies

- Updated `h2` to `0.4.5`.
- Updated `http` to `1.1.0`.

## 3.2.0

- Minimum supported Rust version (MSRV) is now 1.68 due to transitive `time` dependency.
Expand Down
2 changes: 1 addition & 1 deletion actix-http-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ awc = { version = "3", default-features = false }

bytes = "1"
futures-core = { version = "0.3.17", default-features = false }
http = "0.2.7"
http = "1.1.0"
log = "0.4"
socket2 = "0.5"
serde = "1"
Expand Down
5 changes: 5 additions & 0 deletions actix-http/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

### Dependencies

- Updated `h2` to `0.4.5`.
- Updated `http` to `1.1.0`.

### Added

- Implement `FromIterator<(HeaderName, HeaderValue)>` for `HeaderMap`.
Expand Down
4 changes: 2 additions & 2 deletions actix-http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ bytestring = "1"
derive_more = "0.99.5"
encoding_rs = "0.8"
futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
http = "0.2.7"
http = "1.1.0"
httparse = "1.5.1"
httpdate = "1.0.1"
itoa = "1"
Expand All @@ -127,7 +127,7 @@ tokio-util = { version = "0.7", features = ["io", "codec"] }
tracing = { version = "0.1.30", default-features = false, features = ["log"] }

# http2
h2 = { version = "0.3.26", optional = true }
h2 = { version = "0.4.5", optional = true }

# websockets
local-channel = { version = "0.1", optional = true }
Expand Down
5 changes: 5 additions & 0 deletions actix-router/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

### Dependencies

- Updated `h2` to `0.4.5`.
- Updated `http` to `1.1.0`.

## 0.5.3

- Add `unicode` crate feature (on-by-default) to switch between `regex` and `regex-lite` as a trade-off between full unicode support and binary size.
Expand Down
4 changes: 2 additions & 2 deletions actix-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ unicode = ["dep:regex"]
[dependencies]
bytestring = ">=0.1.5, <2"
cfg-if = "1"
http = { version = "0.2.7", optional = true }
http = { version = "1.1.0", optional = true }
regex = { version = "1.5", optional = true }
regex-lite = "0.1"
serde = "1"
tracing = { version = "0.1.30", default-features = false, features = ["log"] }

[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
http = "0.2.7"
http = "1.1.0"
serde = { version = "1", features = ["derive"] }
percent-encoding = "2.1"

Expand Down
5 changes: 5 additions & 0 deletions awc/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

### Dependencies

- Updated `h2` to `0.4.5`.
- Updated `http` to `1.1.0`.

## 3.5.0

- Add `rustls-0_23`, `rustls-0_23-webpki-roots`, and `rustls-0_23-native-roots` crate features.
Expand Down
4 changes: 2 additions & 2 deletions awc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ cfg-if = "1"
derive_more = "0.99.5"
futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
futures-util = { version = "0.3.17", default-features = false, features = ["alloc", "sink"] }
h2 = "0.3.26"
http = "0.2.7"
h2 = "0.4.5"
http = "1.1.0"
itoa = "1"
log =" 0.4"
mime = "0.3"
Expand Down

0 comments on commit 287c59f

Please sign in to comment.