Skip to content
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

Bump aws-sdk-s3 from 0.8.0 to 0.19.0 #103

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 29, 2023

Bumps aws-sdk-s3 from 0.8.0 to 0.19.0.

Release notes

Sourced from aws-sdk-s3's releases.

v0.15.0 (June 29th, 2022)

Breaking Changes:

  • ⚠ (smithy-rs#932) Replaced use of pin-project with equivalent pin-project-lite. For pinned enum tuple variants and tuple structs, this change requires that we switch to using enum struct variants and regular structs. Most of the structs and enums that were updated had only private fields/variants and so have the same public API. However, this change does affect the public API of aws_smithy_http_tower::map_request::MapRequestFuture<F, E>. The Inner and Ready variants contained a single value. Each have been converted to struct variants and the inner value is now accessible by the inner field instead of the 0 field.

New this release:

Contributors Thank you for your contributions! ❤

v0.14.0 (June 22nd, 2022)

New this release:

  • 🐛 (aws-sdk-rust#547, smithy-rs#1458) Fix bug in profile file credential provider where a missing default profile lead to an unintended error.
  • (smithy-rs#1421) Add Debug implementation to several types in aws-config
  • 🐛 (aws-sdk-rust#558, smithy-rs#1478) Fix bug in retry policy where user configured timeouts were not retried. With this fix, setting with_call_attempt_timeout will lead to a retry when retries are enabled.
  • 🐛 (aws-sdk-rust#554) Requests to Route53 that return ResourceIds often come with a prefix. When passing those IDs directly into another request, the request would fail unless they manually stripped the prefix. Now, when making a request with a prefixed ID, the prefix will be stripped automatically.

v0.13.0 (June 9th, 2022)

New this release:

  • 🎉 (smithy-rs#1390) Add method ByteStream::into_async_read. This makes it easy to convert ByteStreams into a struct implementing tokio:io::AsyncRead. Available on crate feature rt-tokio only.
  • 🎉 (smithy-rs#1356, @​jszwedko) Add support for credential_process in AWS configs for fetching credentials from an external process.
  • (smithy-rs#1404, @​petrosagg) Switch to RustCrypto's implementation of MD5.

Contributors Thank you for your contributions! ❤

v0.12.0 (May 13th, 2022)

New this release:

  • (smithy-rs#1352) Log a debug event when a retry is going to be peformed

v0.11.0 (April 28th 2022)

Breaking Changes:

  • ⚠ (smithy-rs#1318) Bump MSRV from 1.56.1 to 1.58.1 per our "two versions behind" policy.

New this release:

... (truncated)

Changelog

Sourced from aws-sdk-s3's changelog.

January 26th, 2023

Breaking Changes:

  • ⚠ (smithy-rs#2122, smithy-rs#2227) Improve SDK credentials caching through type safety. LazyCachingCredentialsProvider has been renamed to LazyCredentialsCache and is no longer treated as a credentials provider. Furthermore, you do not create a LazyCredentialsCache directly, and instead you interact with CredentialsCache. This introduces the following breaking changes.

    If you previously used LazyCachingCredentialsProvider, you can replace it with CredentialsCache.

    Before:

    use aws_config::meta::credentials::lazy_caching::LazyCachingCredentialsProvider;
    use aws_types::provider::ProvideCredentials;
    fn make_provider() -> impl ProvideCredentials {
    // --snip--
    }
    let credentials_provider =
    LazyCachingCredentialsProvider::builder()
    .load(make_provider())
    .build();
    let sdk_config = aws_config::from_env()
    .credentials_provider(credentials_provider)
    .load()
    .await;
    let client = aws_sdk_s3::Client::new(&sdk_config);

    After:

    use aws_credential_types::cache::CredentialsCache;
    use aws_types::provider::ProvideCredentials;
    fn make_provider() -> impl ProvideCredentials {
    // --snip--
    }
    // Wrapping a result of make_provider in LazyCredentialsCache is done automatically.
    let sdk_config = aws_config::from_env()
    .credentials_cache(CredentialsCache::lazy()) // This line can be omitted because it is on by default.
    .credentials_provider(make_provider())
    .load()
    .await;
    let client = aws_sdk_s3::Client::new(&sdk_config);

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jan 29, 2023
@dependabot dependabot bot force-pushed the dependabot/cargo/aws-sdk-s3-0.19.0 branch from fbd720d to 13be545 Compare February 15, 2023 21:41
@dependabot dependabot bot force-pushed the dependabot/cargo/aws-sdk-s3-0.19.0 branch 2 times, most recently from 9eaf527 to 4971e86 Compare April 3, 2023 22:29
@AnthonyMichaelTDM
Copy link
Member

@dependabot rebase

Bumps [aws-sdk-s3](https://github.com/awslabs/aws-sdk-rust) from 0.8.0 to 0.19.0.
- [Release notes](https://github.com/awslabs/aws-sdk-rust/releases)
- [Changelog](https://github.com/awslabs/aws-sdk-rust/blob/main/CHANGELOG.md)
- [Commits](https://github.com/awslabs/aws-sdk-rust/commits)

---
updated-dependencies:
- dependency-name: aws-sdk-s3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/aws-sdk-s3-0.19.0 branch from 4971e86 to 0fbddcb Compare May 29, 2023 05:43
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github May 31, 2023

Superseded by #223.

@dependabot dependabot bot closed this May 31, 2023
@dependabot dependabot bot deleted the dependabot/cargo/aws-sdk-s3-0.19.0 branch May 31, 2023 16:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant