Loading .github/workflows/ci.yml +1 −1 Original line number Diff line number Diff line Loading @@ -9,7 +9,7 @@ on: workflow_call: env: rust_version: 1.58.1 rust_version: 1.61.0 rust_toolchain_components: clippy,rustfmt jobs: Loading .github/workflows/pull-request-bot.yml +1 −1 Original line number Diff line number Diff line Loading @@ -28,7 +28,7 @@ concurrency: env: java_version: 11 rust_version: 1.58.1 rust_version: 1.61.0 rust_toolchain_components: clippy,rustfmt apt_dependencies: libssl-dev gnuplot jq Loading .github/workflows/release.yml +1 −1 Original line number Diff line number Diff line Loading @@ -10,7 +10,7 @@ concurrency: cancel-in-progress: true env: rust_version: 1.58.1 rust_version: 1.61.0 name: Release smithy-rs on: Loading CHANGELOG.next.toml +12 −0 Original line number Diff line number Diff line Loading @@ -214,3 +214,15 @@ fn f1(n: aws_smithy_types::Number) { references = ["smithy-rs#1274"] meta = { "breaking" = true, "tada" = false, "bug" = true } author = "david-perez" [[aws-sdk-rust]] message = "Bump [MSRV](https://github.com/awslabs/aws-sdk-rust#supported-rust-versions-msrv) from 1.58.1 to 1.61.0 per our policy." references = ["smithy-rs#1699"] meta = { "breaking" = true, "tada" = false, "bug" = false } author = "Velfi" [[smithy-rs]] message = "Bump [MSRV](https://github.com/awslabs/aws-sdk-rust#supported-rust-versions-msrv) from 1.58.1 to 1.61.0 per our policy." references = ["smithy-rs#1699"] meta = { "breaking" = true, "tada" = false, "bug" = false, "target" = "all"} author = "Velfi" No newline at end of file aws/rust-runtime/aws-config/src/environment/credentials.rs +8 −9 Original line number Diff line number Diff line Loading @@ -35,15 +35,14 @@ impl EnvironmentVariableCredentialsProvider { .or_else(|_| self.env.get("SECRET_ACCESS_KEY")) .and_then(err_if_blank) .map_err(to_cred_error)?; let session_token = self .env let session_token = self.env .get("AWS_SESSION_TOKEN") .ok() .map(|token| match token.trim() { .and_then(|token| match token.trim() { s if s.is_empty() => None, s => Some(s.to_string()), }) .flatten(); }); Ok(Credentials::new( access_key, secret_key, Loading Loading
.github/workflows/ci.yml +1 −1 Original line number Diff line number Diff line Loading @@ -9,7 +9,7 @@ on: workflow_call: env: rust_version: 1.58.1 rust_version: 1.61.0 rust_toolchain_components: clippy,rustfmt jobs: Loading
.github/workflows/pull-request-bot.yml +1 −1 Original line number Diff line number Diff line Loading @@ -28,7 +28,7 @@ concurrency: env: java_version: 11 rust_version: 1.58.1 rust_version: 1.61.0 rust_toolchain_components: clippy,rustfmt apt_dependencies: libssl-dev gnuplot jq Loading
.github/workflows/release.yml +1 −1 Original line number Diff line number Diff line Loading @@ -10,7 +10,7 @@ concurrency: cancel-in-progress: true env: rust_version: 1.58.1 rust_version: 1.61.0 name: Release smithy-rs on: Loading
CHANGELOG.next.toml +12 −0 Original line number Diff line number Diff line Loading @@ -214,3 +214,15 @@ fn f1(n: aws_smithy_types::Number) { references = ["smithy-rs#1274"] meta = { "breaking" = true, "tada" = false, "bug" = true } author = "david-perez" [[aws-sdk-rust]] message = "Bump [MSRV](https://github.com/awslabs/aws-sdk-rust#supported-rust-versions-msrv) from 1.58.1 to 1.61.0 per our policy." references = ["smithy-rs#1699"] meta = { "breaking" = true, "tada" = false, "bug" = false } author = "Velfi" [[smithy-rs]] message = "Bump [MSRV](https://github.com/awslabs/aws-sdk-rust#supported-rust-versions-msrv) from 1.58.1 to 1.61.0 per our policy." references = ["smithy-rs#1699"] meta = { "breaking" = true, "tada" = false, "bug" = false, "target" = "all"} author = "Velfi" No newline at end of file
aws/rust-runtime/aws-config/src/environment/credentials.rs +8 −9 Original line number Diff line number Diff line Loading @@ -35,15 +35,14 @@ impl EnvironmentVariableCredentialsProvider { .or_else(|_| self.env.get("SECRET_ACCESS_KEY")) .and_then(err_if_blank) .map_err(to_cred_error)?; let session_token = self .env let session_token = self.env .get("AWS_SESSION_TOKEN") .ok() .map(|token| match token.trim() { .and_then(|token| match token.trim() { s if s.is_empty() => None, s => Some(s.to_string()), }) .flatten(); }); Ok(Credentials::new( access_key, secret_key, Loading