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-types from 0.12.0 to 0.13.0 #155

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 10, 2022

Bumps aws-types from 0.12.0 to 0.13.0.

Release notes

Sourced from aws-types's releases.

June 15th, 2021: CloudFormation, SageMaker, EC2, and SES

Smithy-rs now has codegen support for all AWS services! This week, we've added CloudFormation, SageMaker, EC2, and SES. More details below.

New this Week

  • 🎉 Add support for CloudFormation (#500, @​alistaim)
  • 🎉 Add support for SageMaker (#473, @​alistaim)
  • 🎉 Add support for EC2 (#495)
  • 🎉 Add support for SES (#499)
  • Add support for the EC2 Query protocol (#475)
  • Generate fluent builders for all smithy-rs clients (#496, @​jonhoo)
  • 🐛 Bugfix: RFC-3339 timestamps (date-time format in Smithy) are now formatted correctly (#479, #489)
  • 🐛 Bugfix: Union and enum variants named Self no longer cause compile errors in generated code (#492)

Internal Changes

  • Combine individual example packages into per-service example packages with multiple binaries (#477, #480, #482, #484, #485, #486, #487, #491)
  • Work towards JSON deserialization overhaul (#474)
  • Make deserializer function naming consistent between XML and JSON deserializers (#497)

Contributors:

Thanks!!

Changelog

Sourced from aws-types's changelog.

v0.43.0 (June 9th, 2022)

New this release:

  • 🎉 (smithy-rs#1381, @​alonlud) Add ability to sign a request with all headers, or to change which headers are excluded from signing
  • 🎉 (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#1404, @​petrosagg) Add ability to specify a different rust crate name than the one derived from the package name
  • (smithy-rs#1404, @​petrosagg) Switch to RustCrypto's implementation of MD5.

Contributors Thank you for your contributions! ❤

v0.42.0 (May 13th, 2022)

Breaking Changes:

  • ⚠🎉 (aws-sdk-rust#494, aws-sdk-rust#519) The aws_smithy_http::byte_stream::bytestream_util::FsBuilder has been updated to allow for easier creation of multi-part requests.

    • FsBuilder::offset is a new method allowing users to specify an offset to start reading a file from.
    • FsBuilder::file_size has been reworked into FsBuilder::length and is now used to specify the amount of data to read.

    With these two methods, it's now simple to create a ByteStream that will read a single "chunk" of a file. The example below demonstrates how you could divide a single File into consecutive chunks to create multiple ByteStreams.

    let example_file_path = Path::new("/example.txt");
    let example_file_size = tokio::fs::metadata(&example_file_path).await.unwrap().len();
    let chunks = 6;
    let chunk_size = file_size / chunks;
    let mut byte_streams = Vec::new();
    for i in 0..chunks {
    let length = if i == chunks - 1 {
    // If we're on the last chunk, the length to read might be less than a whole chunk.
    // We substract the size of all previous chunks from the total file size to get the
    // size of the final chunk.
    file_size - (i * chunk_size)
    } else {
    chunk_size
    };
    let byte_stream = ByteStream::read_from()
        .path(&file_path)
        .offset(i * chunk_size)
        .length(length)
        .build()
        .await?;

... (truncated)

Commits
  • bf0389b Bump to version 0.0.8-alpha (#503)
  • cf1450f Moved Polly code examples into polly directory (#484)
  • 1501c17 Moved QLDB code examples into qldb directory; added create-ledger code exampl...
  • 05eace6 Moved RDS code examples into rds directory (#486)
  • b9df4d6 Moved KMS code examples into KMS directory; added new KMS code examples (#480)
  • 762ab41 Adding cloudformation support (#500)
  • 20dcbbf Add SES model & example (#499)
  • 5e6212d Moved MediaLive code examples into medialive directory (#482)
  • 6ce79e8 Refactor XML deserialization to use InlineFunctionNamer and add test (#497)
  • 4ad0d22 Introduce generic fluent client generator to non-sdk codegen — take 2 (#496)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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)

Bumps [aws-types](https://github.com/awslabs/smithy-rs) from 0.12.0 to 0.13.0.
- [Release notes](https://github.com/awslabs/smithy-rs/releases)
- [Changelog](https://github.com/awslabs/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy-rs@v0.12...v0.13)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jun 10, 2022
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 23, 2022

Superseded by #160.

@dependabot dependabot bot closed this Jun 23, 2022
@dependabot dependabot bot deleted the dependabot/cargo/aws-types-0.13.0 branch June 23, 2022 06:58
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.

0 participants