Skip to content

Commit 24d2614

Browse files
committed
Merge remote-tracking branch 'upstream/main' into smithy-rpc-v2
2 parents 9531447 + 9c1ae5a commit 24d2614

File tree

11 files changed

+850
-411
lines changed

11 files changed

+850
-411
lines changed

CHANGELOG.next.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,18 @@
1111
# meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client | server | all"}
1212
# author = "rcoh"
1313

14+
[[aws-sdk-rust]]
15+
message = "Add support for v1 `http_body::Body` to `aws_smithy_types::byte_stream::bytestream_util::PathBody`."
16+
references = ["smithy-rs#1925", "smithy-rs#3673"]
17+
meta = { "breaking" = false, "tada" = false, "bug" = false }
18+
author = "Velfi"
19+
20+
[[smithy-rs]]
21+
message = "Add support for v1 `http_body::Body` to `aws_smithy_types::byte_stream::bytestream_util::PathBody`."
22+
references = ["smithy-rs#1925", "smithy-rs#3673"]
23+
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "all"}
24+
author = "Velfi"
25+
1426
[[smithy-rs]]
1527
message = "Reduce verbosity of various debug logs"
1628
references = ["smithy-rs#3664"]

aws/rust-runtime/aws-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-types"
3-
version = "1.3.0"
3+
version = "1.3.1"
44
authors = ["AWS Rust SDK Team <[email protected]>", "Russell Cohen <[email protected]>"]
55
description = "Cross-service types for the AWS SDK."
66
edition = "2021"
@@ -27,7 +27,7 @@ hyper-rustls = { version = "0.24", optional = true, features = ["rustls-native-c
2727
[dev-dependencies]
2828
http = "0.2.4"
2929
tempfile = "3"
30-
tracing-test = "0.2.4"
30+
tracing-test = "=0.2.5"
3131
tokio = { version = "1", features = ["rt", "macros"] }
3232

3333
[build-dependencies]

aws/rust-runtime/aws-types/src/app_name.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ mod tests {
140140

141141
// HACK: there's no way to reset tracing-test, so just
142142
// reach into its internals and clear it manually
143-
tracing_test::internal::GLOBAL_BUF.lock().unwrap().clear();
143+
tracing_test::internal::global_buf().lock().unwrap().clear();
144144

145145
AppName::new("greaterthanfiftycharactersgreaterthanfiftycharacters").unwrap();
146146
assert!(!logs_contain(

codegen-core/src/main/kotlin/software/amazon/smithy/rust/codegen/core/rustlang/CargoDependency.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ data class CargoDependency(
301301
val Tokio: CargoDependency =
302302
CargoDependency(
303303
"tokio",
304-
CratesIo("1.23.1"),
304+
CratesIo("=1.37.0"),
305305
DependencyScope.Dev,
306306
features = setOf("macros", "test-util", "rt-multi-thread"),
307307
)
@@ -321,7 +321,7 @@ data class CargoDependency(
321321
val TracingTest: CargoDependency =
322322
CargoDependency(
323323
"tracing-test",
324-
CratesIo("0.2.4"),
324+
CratesIo("0.2.5"),
325325
DependencyScope.Dev,
326326
features = setOf("no-env-filter"),
327327
)

rust-runtime/aws-smithy-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-smithy-types"
3-
version = "1.1.10"
3+
version = "1.2.0"
44
authors = [
55
"AWS Rust SDK Team <[email protected]>",
66
"Russell Cohen <[email protected]>",

rust-runtime/aws-smithy-types/src/byte_stream.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ pub use self::bytestream_util::FsBuilder;
149149
/// The name has a suffix `_x` to avoid name collision with a third-party `http-body-0-4`.
150150
#[cfg(feature = "http-body-0-4-x")]
151151
pub mod http_body_0_4_x;
152+
152153
#[cfg(feature = "http-body-1-x")]
153154
pub mod http_body_1_x;
154155

0 commit comments

Comments
 (0)