Nugine / s3s

S3 Service Adapter
Apache License 2.0
132 stars 33 forks source link

build(deps): bump the dependencies group with 6 updates #130

Closed dependabot[bot] closed 7 months ago

dependabot[bot] commented 7 months ago

Updates the requirements on aws-sdk-s3, aws-smithy-http, aws-smithy-runtime-api, aws-smithy-types, aws-smithy-types-convert and hyper to permit the latest version. Updates aws-sdk-s3 to 1.13.0

Changelog

Sourced from aws-sdk-s3's changelog.

January 23rd, 2024

Service Features:

  • aws-sdk-inspector2 (1.12.0): This release adds support for CIS scans on EC2 instances.

Crate Versions

Crate Version
aws-config 1.1.3
aws-credential-types 1.1.3
aws-endpoint 0.60.3
aws-http 0.60.3
aws-hyper 0.60.3
aws-runtime 1.1.3
aws-runtime-api 1.1.3
aws-sdk-accessanalyzer 1.12.0
aws-sdk-account 1.11.0
aws-sdk-acm 1.11.0
aws-sdk-acmpca 1.11.0
aws-sdk-alexaforbusiness 1.11.0
aws-sdk-amp 1.11.0
aws-sdk-amplify 1.11.0
aws-sdk-amplifybackend 1.11.0
aws-sdk-amplifyuibuilder 1.11.0
aws-sdk-apigateway 1.11.0
aws-sdk-apigatewaymanagement 1.11.0
aws-sdk-apigatewayv2 1.11.0
aws-sdk-appconfig 1.11.0
aws-sdk-appconfigdata 1.11.0
aws-sdk-appfabric 1.11.0
aws-sdk-appflow 1.11.0
aws-sdk-appintegrations 1.11.0
aws-sdk-applicationautoscaling 1.12.0
aws-sdk-applicationcostprofiler 1.11.0
aws-sdk-applicationdiscovery 1.11.0
aws-sdk-applicationinsights 1.11.0
aws-sdk-appmesh 1.11.0
aws-sdk-apprunner 1.12.0
aws-sdk-appstream 1.11.0
aws-sdk-appsync 1.12.0
aws-sdk-arczonalshift 1.12.0
aws-sdk-athena 1.12.0
aws-sdk-auditmanager 1.11.0
aws-sdk-autoscaling 1.11.0
aws-sdk-autoscalingplans 1.11.0
aws-sdk-b2bi 1.9.0

... (truncated)

Commits


Updates aws-smithy-http to 0.60.3

Changelog

Sourced from aws-smithy-http's changelog.

January 18th, 2024

New this release:

  • (client, smithy-rs#3318) EndpointPrefix and apply_endpoint moved from aws-smithy-http to aws-smithy-runtime-api so that is in a stable (1.x) crate. A deprecated type alias was left in place with a note showing the new location.
  • (client, smithy-rs#3325) The Metadata storable was moved from aws_smithy_http into aws_smithy_runtime_api. A deprecated type alias was left in place with a note showing where the new location is.

January 10th, 2024

New this release:

  • :tada: (all, smithy-rs#3300, aws-sdk-rust#977) Add support for constructing [SdkBody] and [ByteStream] from http-body 1.0 bodies. Note that this is initial support and works via a backwards compatibility shim to http-body 0.4. Hyper 1.0 is not supported.

  • :tada: (all, smithy-rs#3333, aws-sdk-rust#998, aws-sdk-rust#1010) Add as_service_err() to SdkError to allow checking the type of an error is without taking ownership.

  • (client, smithy-rs#3299, @​Ploppz) Add PaginationStreamExt extension trait to aws-smithy-types-convert behind the convert-streams feature. This makes it possible to treat a paginator as a futures_core::Stream, allowing customers to use stream combinators like map and filter.

    Example:

    use aws_smithy_types_convert::stream::PaginationStreamExt
    let stream = s3_client.list_objects_v2().bucket("...").into_paginator().send().into_stream_03x();
    
  • :bug: (client, smithy-rs#3252, smithy-rs#3312, @​milesziemer) Serialize 0/false in query parameters, and ignore actual default value during serialization instead of just 0/false. See changelog discussion for details.

  • (all, smithy-rs#3292) requireEndpointResolver: false is no longer required to remove the need for an endpoint resolver. Instead, "awsSdkBuilder" (default false), now removes that requirement.

Contributors Thank you for your contributions! ❤

December 13th, 2023

December 11th, 2023

New this release:

  • :bug: (client, smithy-rs#3305) crate::event_receiver::EventReceiver is now re-exported as crate::primitives::event_stream::EventReceiver when a service supports event stream operations.

December 8th, 2023

New this release:

  • :tada: (all, smithy-rs#3121, smithy-rs#3295) All generated docs now include docsrs labels when features are required
  • :bug: (client, smithy-rs#3262) Loading native TLS trusted certs for the default HTTP client now only occurs if the default HTTP client is not overridden in config.
  • (client, smithy-rs#3277) Improve the error messages for when auth fails to select an auth scheme for a request.
  • (client, smithy-rs#3282) Fix documentation and examples on HyperConnector and HyperClientBuilder.
  • (client, aws-sdk-rust#990, @​declanvk) Expose local socket address from ConnectionMetadata.
  • (all, smithy-rs#3294) Number TryInto implementations now succesfully convert from f64 to numeric types when no precision is lost. This fixes some deserialization issues where numbers like 25.0 were sent when Byte fields were expected.

Contributors

... (truncated)

Commits


Updates aws-smithy-runtime-api to 1.1.3

Changelog

Sourced from aws-smithy-runtime-api's changelog.

January 18th, 2024

New this release:

  • (client, smithy-rs#3318) EndpointPrefix and apply_endpoint moved from aws-smithy-http to aws-smithy-runtime-api so that is in a stable (1.x) crate. A deprecated type alias was left in place with a note showing the new location.
  • (client, smithy-rs#3325) The Metadata storable was moved from aws_smithy_http into aws_smithy_runtime_api. A deprecated type alias was left in place with a note showing where the new location is.

January 10th, 2024

New this release:

  • :tada: (all, smithy-rs#3300, aws-sdk-rust#977) Add support for constructing [SdkBody] and [ByteStream] from http-body 1.0 bodies. Note that this is initial support and works via a backwards compatibility shim to http-body 0.4. Hyper 1.0 is not supported.

  • :tada: (all, smithy-rs#3333, aws-sdk-rust#998, aws-sdk-rust#1010) Add as_service_err() to SdkError to allow checking the type of an error is without taking ownership.

  • (client, smithy-rs#3299, @​Ploppz) Add PaginationStreamExt extension trait to aws-smithy-types-convert behind the convert-streams feature. This makes it possible to treat a paginator as a futures_core::Stream, allowing customers to use stream combinators like map and filter.

    Example:

    use aws_smithy_types_convert::stream::PaginationStreamExt
    let stream = s3_client.list_objects_v2().bucket("...").into_paginator().send().into_stream_03x();
    
  • :bug: (client, smithy-rs#3252, smithy-rs#3312, @​milesziemer) Serialize 0/false in query parameters, and ignore actual default value during serialization instead of just 0/false. See changelog discussion for details.

  • (all, smithy-rs#3292) requireEndpointResolver: false is no longer required to remove the need for an endpoint resolver. Instead, "awsSdkBuilder" (default false), now removes that requirement.

Contributors Thank you for your contributions! ❤

December 13th, 2023

December 11th, 2023

New this release:

  • :bug: (client, smithy-rs#3305) crate::event_receiver::EventReceiver is now re-exported as crate::primitives::event_stream::EventReceiver when a service supports event stream operations.

December 8th, 2023

New this release:

  • :tada: (all, smithy-rs#3121, smithy-rs#3295) All generated docs now include docsrs labels when features are required
  • :bug: (client, smithy-rs#3262) Loading native TLS trusted certs for the default HTTP client now only occurs if the default HTTP client is not overridden in config.
  • (client, smithy-rs#3277) Improve the error messages for when auth fails to select an auth scheme for a request.
  • (client, smithy-rs#3282) Fix documentation and examples on HyperConnector and HyperClientBuilder.
  • (client, aws-sdk-rust#990, @​declanvk) Expose local socket address from ConnectionMetadata.
  • (all, smithy-rs#3294) Number TryInto implementations now succesfully convert from f64 to numeric types when no precision is lost. This fixes some deserialization issues where numbers like 25.0 were sent when Byte fields were expected.

Contributors

... (truncated)

Commits


Updates aws-smithy-types to 1.1.3

Changelog

Sourced from aws-smithy-types's changelog.

January 18th, 2024

New this release:

  • (client, smithy-rs#3318) EndpointPrefix and apply_endpoint moved from aws-smithy-http to aws-smithy-runtime-api so that is in a stable (1.x) crate. A deprecated type alias was left in place with a note showing the new location.
  • (client, smithy-rs#3325) The Metadata storable was moved from aws_smithy_http into aws_smithy_runtime_api. A deprecated type alias was left in place with a note showing where the new location is.

January 10th, 2024

New this release:

  • :tada: (all, smithy-rs#3300, aws-sdk-rust#977) Add support for constructing [SdkBody] and [ByteStream] from http-body 1.0 bodies. Note that this is initial support and works via a backwards compatibility shim to http-body 0.4. Hyper 1.0 is not supported.

  • :tada: (all, smithy-rs#3333, aws-sdk-rust#998, aws-sdk-rust#1010) Add as_service_err() to SdkError to allow checking the type of an error is without taking ownership.

  • (client, smithy-rs#3299, @​Ploppz) Add PaginationStreamExt extension trait to aws-smithy-types-convert behind the convert-streams feature. This makes it possible to treat a paginator as a futures_core::Stream, allowing customers to use stream combinators like map and filter.

    Example:

    use aws_smithy_types_convert::stream::PaginationStreamExt
    let stream = s3_client.list_objects_v2().bucket("...").into_paginator().send().into_stream_03x();
    
  • :bug: (client, smithy-rs#3252, smithy-rs#3312, @​milesziemer) Serialize 0/false in query parameters, and ignore actual default value during serialization instead of just 0/false. See changelog discussion for details.

  • (all, smithy-rs#3292) requireEndpointResolver: false is no longer required to remove the need for an endpoint resolver. Instead, "awsSdkBuilder" (default false), now removes that requirement.

Contributors Thank you for your contributions! ❤

December 13th, 2023

December 11th, 2023

New this release:

  • :bug: (client, smithy-rs#3305) crate::event_receiver::EventReceiver is now re-exported as crate::primitives::event_stream::EventReceiver when a service supports event stream operations.

December 8th, 2023

New this release:

  • :tada: (all, smithy-rs#3121, smithy-rs#3295) All generated docs now include docsrs labels when features are required
  • :bug: (client, smithy-rs#3262) Loading native TLS trusted certs for the default HTTP client now only occurs if the default HTTP client is not overridden in config.
  • (client, smithy-rs#3277) Improve the error messages for when auth fails to select an auth scheme for a request.
  • (client, smithy-rs#3282) Fix documentation and examples on HyperConnector and HyperClientBuilder.
  • (client, aws-sdk-rust#990, @​declanvk) Expose local socket address from ConnectionMetadata.
  • (all, smithy-rs#3294) Number TryInto implementations now succesfully convert from f64 to numeric types when no precision is lost. This fixes some deserialization issues where numbers like 25.0 were sent when Byte fields were expected.

Contributors

... (truncated)

Commits


Updates aws-smithy-types-convert to 0.60.3

Changelog

Sourced from aws-smithy-types-convert's changelog.

January 18th, 2024

New this release:

  • (client, smithy-rs#3318) EndpointPrefix and apply_endpoint moved from aws-smithy-http to aws-smithy-runtime-api so that is in a stable (1.x) crate. A deprecated type alias was left in place with a note showing the new location.
  • (client, smithy-rs#3325) The Metadata storable was moved from aws_smithy_http into aws_smithy_runtime_api. A deprecated type alias was left in place with a note showing where the new location is.

January 10th, 2024

New this release:

  • :tada: (all, smithy-rs#3300, aws-sdk-rust#977) Add support for constructing [SdkBody] and [ByteStream] from http-body 1.0 bodies. Note that this is initial support and works via a backwards compatibility shim to http-body 0.4. Hyper 1.0 is not supported.

  • :tada: (all, smithy-rs#3333, aws-sdk-rust#998, aws-sdk-rust#1010) Add as_service_err() to SdkError to allow checking the type of an error is without taking ownership.

  • (client, smithy-rs#3299, @​Ploppz) Add PaginationStreamExt extension trait to aws-smithy-types-convert behind the convert-streams feature. This makes it possible to treat a paginator as a futures_core::Stream, allowing customers to use stream combinators like map and filter.

    Example:

    use aws_smithy_types_convert::stream::PaginationStreamExt
    let stream = s3_client.list_objects_v2().bucket("...").into_paginator().send().into_stream_03x();
    
  • :bug: (client, smithy-rs#3252, smithy-rs#3312, @​milesziemer) Serialize 0/false in query parameters, and ignore actual default value during serialization instead of just 0/false. See changelog discussion for details.

  • (all, smithy-rs#3292) requireEndpointResolver: false is no longer required to remove the need for an endpoint resolver. Instead, "awsSdkBuilder" (default false), now removes that requirement.

Contributors Thank you for your contributions! ❤

December 13th, 2023

December 11th, 2023

New this release:

  • :bug: (client, smithy-rs#3305) crate::event_receiver::EventReceiver is now re-exported as crate::primitives::event_stream::EventReceiver when a service supports event stream operations.

December 8th, 2023

New this release:

  • :tada: (all, smithy-rs#3121, smithy-rs#3295) All generated docs now include docsrs labels when features are required
  • :bug: (client, smithy-rs#3262) Loading native TLS trusted certs for the default HTTP client now only occurs if the default HTTP client is not overridden in config.
  • (client, smithy-rs#3277) Improve the error messages for when auth fails to select an auth scheme for a request.
  • (client, smithy-rs#3282) Fix documentation and examples on HyperConnector and HyperClientBuilder.
  • (client, aws-sdk-rust#990, @​declanvk) Expose local socket address from ConnectionMetadata.
  • (all, smithy-rs#3294) Number TryInto implementations now succesfully convert from f64 to numeric types when no precision is lost. This fixes some deserialization issues where numbers like 25.0 were sent when Byte fields were expected.

Contributors

... (truncated)

Commits


Updates hyper to 1.1.0

Release notes

Sourced from hyper's releases.

v1.1.0

Features

  • client: add http1::Connection without_shutdown() method (#3430) (210bfaa7)
  • http1: Add support for sending HTTP/1.1 Chunked Trailer Fields (#3375) (31b41807, closes #2719)
  • server: expose server::conn::http1::UpgradeableConnection (#3457) (6e3042a8)

Bug Fixes

New Contributors

Full Changelog: https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0

Changelog

Sourced from hyper's changelog.

v1.1.0 (2023-12-18)

Bug Fixes

Features

  • client: add http1::Connection without_shutdown() method (#3430) (210bfaa7)
  • http1: Add support for sending HTTP/1.1 Chunked Trailer Fields (#3375) (31b41807, closes #2719)
  • server: expose server::conn::http1::UpgradeableConnection (#3457) (6e3042a8)

v1.0.1 (2023-11-16)

This release "fixes" or adds a few things that should have been in 1.0.0, but were forgotten. Thus, it includes additions that would normally be a semver-minor release, but because it is so close to 1.0.0, it is released as a patch version.

Bug Fixes

Features

  • rt: Make ReadBuf::new public (7161f562)

Breaking Changes

  • Pin is #[fundamental], so providing a Read/Write impl for it theoretically conflicts with existing user Read/Write for Pin impls. However, those impls probably don't exist yet. (dd6d81ca)

v1.0.0 (2023-11-15)

Be sure to check out the upgrading guide.

Bug Fixes

... (truncated)

Commits
  • 1d4ff35 v1.1.0
  • d71ff96 fix(http1): add internal limit for chunked extensions (#3495)
  • 8291538 fix(http1): reject chunked headers missing a digit (#3494)
  • 21aa2f1 refactor(common): move common feature cfg in common::task to common::mod (#3492)
  • d9c5d3b refactor(body): switch opt_len helper macro as function (#3483)
  • 53b560b refactor(proto): use HeaderMap type without client feature (#3491)
  • 31b4180 feat(http1): Add support for sending HTTP/1.1 Chunked Trailer Fields (#3375)
  • 0f2929b chore(ci): enable benchmark timeline in CI again (#3490)
  • 81b1592 chore(meta): change labels of severity to category (#3488)
  • 07554de refactor(error): remove lint config to allow unused code (#3486)
  • Additional commits viewable in compare view


Most Recent Ignore Conditions Applied to This Pull Request | Dependency Name | Ignore Conditions | | --- | --- | | hyper | [>= 1.0.a, < 1.1] |

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 show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 7 months ago

Looks like these dependencies are updatable in another way, so this is no longer needed.