Skip to content

Commit

Permalink
Revert "Merge pull request rust-lang#8610 from rust-lang/renovate/aws…
Browse files Browse the repository at this point in the history
…-sdk-rust-monorepo"

This reverts commit 34bd67e, reversing
changes made to b6b4386.

see awslabs/aws-sdk-rust#1148
  • Loading branch information
Turbo87 committed May 14, 2024
1 parent 78e39c5 commit fd0327f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
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.268.0"
aws-sdk-cloudfront = "=1.25.0"
aws-sdk-sqs = "=1.24.0"
aws-sdk-cloudfront = "=1.23.0"
aws-sdk-sqs = "=1.22.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 @@ impl CloudFront {
let credentials = Credentials::from_keys(access_key, secret_key, None);

let config = Config::builder()
.behavior_version(BehaviorVersion::v2024_03_28())
.behavior_version(BehaviorVersion::v2023_11_09())
.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::v2024_03_28())
.behavior_version(BehaviorVersion::v2023_11_09())
.build();

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

0 comments on commit fd0327f

Please sign in to comment.