Skip to content

Commit 287c59f

Browse files
committed
chore: bump versions of 'h2' and 'http'
1 parent 5be5382 commit 287c59f

File tree

8 files changed

+27
-7
lines changed

8 files changed

+27
-7
lines changed

actix-http-test/CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

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

7+
### Dependencies
8+
9+
- Updated `h2` to `0.4.5`.
10+
- Updated `http` to `1.1.0`.
11+
712
## 3.2.0
813

914
- Minimum supported Rust version (MSRV) is now 1.68 due to transitive `time` dependency.

actix-http-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ awc = { version = "3", default-features = false }
4747

4848
bytes = "1"
4949
futures-core = { version = "0.3.17", default-features = false }
50-
http = "0.2.7"
50+
http = "1.1.0"
5151
log = "0.4"
5252
socket2 = "0.5"
5353
serde = "1"

actix-http/CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
### Dependencies
6+
7+
- Updated `h2` to `0.4.5`.
8+
- Updated `http` to `1.1.0`.
9+
510
### Added
611

712
- Implement `FromIterator<(HeaderName, HeaderValue)>` for `HeaderMap`.

actix-http/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ bytestring = "1"
113113
derive_more = "0.99.5"
114114
encoding_rs = "0.8"
115115
futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
116-
http = "0.2.7"
116+
http = "1.1.0"
117117
httparse = "1.5.1"
118118
httpdate = "1.0.1"
119119
itoa = "1"
@@ -127,7 +127,7 @@ tokio-util = { version = "0.7", features = ["io", "codec"] }
127127
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
128128

129129
# http2
130-
h2 = { version = "0.3.26", optional = true }
130+
h2 = { version = "0.4.5", optional = true }
131131

132132
# websockets
133133
local-channel = { version = "0.1", optional = true }

actix-router/CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
### Dependencies
6+
7+
- Updated `h2` to `0.4.5`.
8+
- Updated `http` to `1.1.0`.
9+
510
## 0.5.3
611

712
- 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.

actix-router/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ unicode = ["dep:regex"]
2626
[dependencies]
2727
bytestring = ">=0.1.5, <2"
2828
cfg-if = "1"
29-
http = { version = "0.2.7", optional = true }
29+
http = { version = "1.1.0", optional = true }
3030
regex = { version = "1.5", optional = true }
3131
regex-lite = "0.1"
3232
serde = "1"
3333
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
3434

3535
[dev-dependencies]
3636
criterion = { version = "0.5", features = ["html_reports"] }
37-
http = "0.2.7"
37+
http = "1.1.0"
3838
serde = { version = "1", features = ["derive"] }
3939
percent-encoding = "2.1"
4040

awc/CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
### Dependencies
6+
7+
- Updated `h2` to `0.4.5`.
8+
- Updated `http` to `1.1.0`.
9+
510
## 3.5.0
611

712
- Add `rustls-0_23`, `rustls-0_23-webpki-roots`, and `rustls-0_23-native-roots` crate features.

awc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ cfg-if = "1"
109109
derive_more = "0.99.5"
110110
futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
111111
futures-util = { version = "0.3.17", default-features = false, features = ["alloc", "sink"] }
112-
h2 = "0.3.26"
113-
http = "0.2.7"
112+
h2 = "0.4.5"
113+
http = "1.1.0"
114114
itoa = "1"
115115
log =" 0.4"
116116
mime = "0.3"

0 commit comments

Comments
 (0)