Skip to content

Update aws-sdk-rust monorepo #8610

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ anyhow = "=1.0.83"
async-trait = "=0.1.80"
aws-credential-types = { version = "=1.2.0", features = ["hardcoded-credentials"] }
aws-ip-ranges = "=0.262.0"
aws-sdk-cloudfront = "=1.23.0"
aws-sdk-sqs = "=1.22.0"
aws-sdk-cloudfront = "=1.25.0"
aws-sdk-sqs = "=1.24.0"
axum = { version = "=0.7.5", features = ["macros", "matched-path"] }
axum-extra = { version = "=0.9.3", features = ["cookie-signed", "typed-header"] }
base64 = "=0.22.1"
Expand Down
2 changes: 1 addition & 1 deletion src/cloudfront.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
let credentials = Credentials::from_keys(access_key, secret_key, None);

let config = Config::builder()
.behavior_version(BehaviorVersion::v2023_11_09())
.behavior_version(BehaviorVersion::v2024_03_28())

Check warning on line 21 in src/cloudfront.rs

View check run for this annotation

Codecov / codecov/patch

src/cloudfront.rs#L21

Added line #L21 was not covered by tests
.region(Region::new("us-east-1"))
.credentials_provider(credentials)
.retry_config(RetryConfig::standard().with_max_attempts(10))
Expand Down
2 changes: 1 addition & 1 deletion src/sqs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl SqsQueueImpl {
let config = aws_sdk_sqs::Config::builder()
.credentials_provider(credentials)
.region(region)
.behavior_version(BehaviorVersion::v2023_11_09())
.behavior_version(BehaviorVersion::v2024_03_28())
.build();

let client = aws_sdk_sqs::Client::from_conf(config);
Expand Down