Unverified Commit 32a09ecd authored by Russell Cohen's avatar Russell Cohen Committed by GitHub
Browse files

set appropriate minimum httpbody version (#883)



* set appropriate minimum httpbody version

* Update changelogs

* changelog

* HTTP Body version in generated code

Co-authored-by: default avatarZelda Hessler <zhessler@amazon.com>
parent a5b6c649
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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)
+1 −0
Original line number Diff line number Diff line
@@ -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**

+1 −1
Original line number Diff line number Diff line
@@ -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 }
+1 −1
Original line number Diff line number Diff line
@@ -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")
+1 −1
Original line number Diff line number Diff line
@@ -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 }
Loading