Skip to content

Commit

Permalink
Merge branch 'main' into zhessler-smoke-tests-v2
Browse files Browse the repository at this point in the history
  • Loading branch information
Velfi authored Jul 23, 2024
2 parents fa8e4bb + 1223f61 commit 8c545d5
Show file tree
Hide file tree
Showing 106 changed files with 5,395 additions and 540 deletions.
3 changes: 3 additions & 0 deletions .cargo-deny-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ exceptions = [
{ allow = ["OpenSSL"], name = "ring", version = "*" },
{ allow = ["OpenSSL"], name = "aws-lc-sys", version = "*" },
{ allow = ["OpenSSL"], name = "aws-lc-fips-sys", version = "*" },
{ allow = ["BlueOak-1.0.0"], name = "minicbor", version = "<=0.24.2" },
# Safe to bump as long as license does not change -------------^
# See D105255799.
]

[[licenses.clarify]]
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
<!-- Do not manually edit this file. Use the `changelogger` tool. -->
July 16th, 2024
===============
**New this release:**
- (client, [smithy-rs#3742](https://github.com/smithy-lang/smithy-rs/issues/3742)) Support `stringArray` type in endpoints params
- (client, [smithy-rs#3755](https://github.com/smithy-lang/smithy-rs/issues/3755)) Add support for `operationContextParams` Endpoints trait
- (client, [smithy-rs#3591](https://github.com/smithy-lang/smithy-rs/issues/3591)) `aws_smithy_runtime_api::client::orchestrator::HttpRequest` and `aws_smithy_runtime_api::client::orchestrator::HttpResponse` are now re-exported in generated clients so that using these types does not require directly depending on `aws-smithy-runtime-api`.


July 9th, 2024
==============
**Breaking Changes:**
Expand Down
14 changes: 7 additions & 7 deletions CHANGELOG.next.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
# meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client | server | all"}
# author = "rcoh"

[[smithy-rs]]
message = "Support `stringArray` type in endpoints params"
references = ["smithy-rs#3742"]
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client"}
[[aws-sdk-rust]]
message = "Fix incorrect redaction of `@sensitive` types in maps and lists."
references = ["smithy-rs#3765", "smithy-rs#3757"]
meta = { "breaking" = false, "tada" = false, "bug" = true }
author = "landonxjames"

[[smithy-rs]]
message = "Add support for `operationContextParams` Endpoints trait"
references = ["smithy-rs#3755"]
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client"}
message = "Fix incorrect redaction of `@sensitive` types in maps and lists."
references = ["smithy-rs#3765", "smithy-rs#3757"]
meta = { "breaking" = false, "tada" = false, "bug" = true, "target" = "client" }
author = "landonxjames"
24 changes: 19 additions & 5 deletions aws/SDK_CHANGELOG.next.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"smithy-rs#3639"
],
"since-commit": "57ed310e6d21041eb36d825c50032295eef0b630",
"age": 4
"age": 5
},
{
"message": "Add documentation on the default configuration to `from_env`, `load_from_env`, `defaults`, and `load_from_defaults` in the `aws-config` crate.",
Expand All @@ -32,7 +32,7 @@
"aws-sdk-rust#1162"
],
"since-commit": "57ed310e6d21041eb36d825c50032295eef0b630",
"age": 4
"age": 5
},
{
"message": "Pre-signed requests may now be converted to Http v1.x requests. This requires enabling the `http-1x` feature for the SDK in question.\nThen, call `PresignedRequest::make_http_1x_request` or `PresignedRequest::into_http_1x_request`.\n",
Expand All @@ -46,7 +46,7 @@
"smithy-rs#3696"
],
"since-commit": "57ed310e6d21041eb36d825c50032295eef0b630",
"age": 4
"age": 5
},
{
"message": "`AwsErrorCodeClassifier` for S3 now treats `InternalError` as a transient error to trigger retries.",
Expand All @@ -60,7 +60,7 @@
"aws-sdk-rust#1163"
],
"since-commit": "57ed310e6d21041eb36d825c50032295eef0b630",
"age": 4
"age": 5
},
{
"message": "Add customizations for S3 Expires fields.",
Expand All @@ -74,7 +74,7 @@
"smithy-rs#3730"
],
"since-commit": "fe1b341e8f1a4ee307554f1a63bf62ec72d8c9a3",
"age": 2
"age": 3
},
{
"message": "Fix bug where stalled stream protection would panic with an underflow if the first event was logged too soon.",
Expand All @@ -88,6 +88,20 @@
"smithy-rs#3744"
],
"since-commit": "56f4c8e9479792b8b52cc394d563ed49a01d1dcc",
"age": 2
},
{
"message": "`aws_smithy_runtime_api::client::orchestrator::HttpRequest` and `aws_smithy_runtime_api::client::orchestrator::HttpResponse` are now re-exported in AWS SDK clients so that using these types does not require directly depending on `aws-smithy-runtime-api`.",
"meta": {
"bug": false,
"breaking": false,
"tada": false
},
"author": "ysaito1001",
"references": [
"smithy-rs#3591"
],
"since-commit": "8d23be1392c46a4d59c2910c3dab00ecaad2cf26",
"age": 1
}
],
Expand Down
70 changes: 20 additions & 50 deletions aws/rust-runtime/aws-config/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions aws/rust-runtime/aws-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aws-config"
version = "1.5.4"
version = "1.5.5"
authors = [
"AWS Rust SDK Team <[email protected]>",
"Russell Cohen <[email protected]>",
Expand Down Expand Up @@ -36,7 +36,6 @@ aws-smithy-types = { path = "../../sdk/build/aws-sdk/sdk/aws-smithy-types" }
aws-types = { path = "../../sdk/build/aws-sdk/sdk/aws-types" }
bytes = "1.1.0"
http = "0.2.4"
hyper = { version = "0.14.26", default-features = false }
time = { version = "0.3.4", features = ["parsing"] }
tokio = { version = "1.13.1", features = ["sync"] }
tracing = { version = "0.1" }
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ allprojects {
val allowLocalDeps: String by project
repositories {
if (allowLocalDeps.toBoolean()) {
mavenLocal()
mavenLocal()
}
mavenCentral()
google()
Expand Down
Loading

0 comments on commit 8c545d5

Please sign in to comment.