mirror of https://github.com/smithy-lang/smithy-rs
set appropriate minimum httpbody version (#883)
* set appropriate minimum httpbody version * Update changelogs * changelog * HTTP Body version in generated code Co-authored-by: Zelda Hessler <zhessler@amazon.com>
This commit is contained in:
parent
a5b6c649d6
commit
32a09ecda6
|
@ -3,6 +3,7 @@ vNext (Month Day, Year)
|
|||
|
||||
**New this release**
|
||||
- Improve docs on `aws-smithy-client` (smithy-rs#855)
|
||||
- Fix http-body dependency version (smithy-rs#883, aws-sdk-rust#305)
|
||||
|
||||
**Breaking Changes**
|
||||
- (aws-smithy-client): Extraneous `pub use SdkSuccess` removed from `aws_smithy_client::hyper_ext`. (smithy-rs#855)
|
||||
|
|
|
@ -8,6 +8,7 @@ vNext (Month Day, Year)
|
|||
|
||||
- :tada: Timeouts for requests are now configurable. You can set a timeout for each individual request attempt or for all attempts made for a request. (smithy-rs#831)
|
||||
- Improve docs on `aws-smithy-client` (smithy-rs#855)
|
||||
- Fix http-body dependency version (smithy-rs#883, aws-sdk-rust#305)
|
||||
|
||||
**Breaking changes**
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ aws-smithy-types = { path = "../../../rust-runtime/aws-smithy-types" }
|
|||
bytes = "1"
|
||||
fastrand = "1.4.0"
|
||||
http = "0.2.3"
|
||||
http-body = "0.4.0"
|
||||
http-body = "0.4.4"
|
||||
hyper = { version = "0.14.2", features = ["client", "http1", "http2", "tcp", "runtime"] }
|
||||
hyper-rustls = { version = "0.22.1", optional = true, features = ["rustls-native-certs"] }
|
||||
hyper-tls = { version ="0.5.0", optional = true }
|
||||
|
|
|
@ -194,7 +194,7 @@ data class CargoDependency(
|
|||
val BytesUtils: CargoDependency = CargoDependency("bytes-utils", CratesIo("0.1.1"))
|
||||
val FastRand: CargoDependency = CargoDependency("fastrand", CratesIo("1"))
|
||||
val Hex: CargoDependency = CargoDependency("hex", CratesIo("0.4.3"))
|
||||
val HttpBody: CargoDependency = CargoDependency("http-body", CratesIo("0.4"))
|
||||
val HttpBody: CargoDependency = CargoDependency("http-body", CratesIo("0.4.4"))
|
||||
val Http: CargoDependency = CargoDependency("http", CratesIo("0.2"))
|
||||
val Hyper: CargoDependency = CargoDependency("hyper", CratesIo("0.14"))
|
||||
val HyperWithStream: CargoDependency = Hyper.withFeature("stream")
|
||||
|
|
|
@ -22,7 +22,7 @@ aws-smithy-types = { path = "../aws-smithy-types" }
|
|||
bytes = "1"
|
||||
fastrand = "1.4.0"
|
||||
http = "0.2.3"
|
||||
http-body = "0.4.0"
|
||||
http-body = "0.4.4"
|
||||
hyper = { version = "0.14.2", features = ["client", "http2"], optional = true }
|
||||
hyper-rustls = { version = "0.22.1", optional = true, features = ["rustls-native-certs"] }
|
||||
hyper-tls = { version = "0.5.0", optional = true }
|
||||
|
|
|
@ -13,7 +13,7 @@ tower = { version = "0.4.4" }
|
|||
pin-project = "1"
|
||||
http = "0.2.3"
|
||||
bytes = "1"
|
||||
http-body = "0.4.0"
|
||||
http-body = "0.4.4"
|
||||
tracing = "0.1"
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
|
@ -18,7 +18,7 @@ aws-smithy-types = { path = "../aws-smithy-types" }
|
|||
bytes = "1"
|
||||
bytes-utils = "0.1"
|
||||
http = "0.2.3"
|
||||
http-body = "0.4.0"
|
||||
http-body = "0.4.4"
|
||||
percent-encoding = "2.1.0"
|
||||
pin-project = "1"
|
||||
tracing = "0.1"
|
||||
|
|
Loading…
Reference in New Issue