mirror of https://github.com/smithy-lang/smithy-rs
parent
1f71c35713
commit
4b12d80d9f
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -1,18 +1,20 @@
|
|||
vNext (Month Day, Year)
|
||||
=======================
|
||||
**New this week**
|
||||
- Add docs.rs metadata section to all crates to document all features
|
||||
|
||||
**New this release**
|
||||
v0.30.0-alpha (November 23rd, 2021)
|
||||
===================================
|
||||
|
||||
**New this week**
|
||||
- Improve docs on `aws-smithy-client` (smithy-rs#855)
|
||||
- Fix http-body dependency version (smithy-rs#883, aws-sdk-rust#305)
|
||||
- `SdkError` now includes a variant `TimeoutError` for when a request times out (smithy-rs#885)
|
||||
- Add docs.rs metadata section to all crates to document all features
|
||||
- Timeouts for requests are now configurable. You can set separate timeouts for each individual request attempt and all attempts made for a request. (smithy-rs#831)
|
||||
|
||||
**Breaking Changes**
|
||||
- (aws-smithy-client): Extraneous `pub use SdkSuccess` removed from `aws_smithy_client::hyper_ext`. (smithy-rs#855)
|
||||
|
||||
**New this week**
|
||||
|
||||
- Timeouts for requests are now configurable. You can set separate timeouts for each individual request attempt and all attempts made for a request. (smithy-rs#831)
|
||||
|
||||
v0.29.0-alpha (November 11th, 2021)
|
||||
===================================
|
||||
|
|
|
@ -1,33 +1,27 @@
|
|||
vNext (Month Day, Year)
|
||||
=======================
|
||||
**New this release**
|
||||
- Add docs.rs metadata section to all crates to document all features
|
||||
- [Added a new example showing how to set all currently supported timeouts](./sdk/examples/setting_timeouts/src/main.rs)
|
||||
- Add a new check so that the SDK doesn't emit an irrelevant `$HOME` dir warning when running in a Lambda (aws-sdk-rust#307)
|
||||
- :bug: Don't capture empty session tokens from the `AWS_SESSION_TOKEN` environment variable (aws-sdk-rust#316, smithy-rs#906)
|
||||
|
||||
**TODO Upon release**
|
||||
- Update README & aws-sdk-rust CI for MSRV upgrade to 1.54
|
||||
v0.0.26-alpha (November 23rd, 2021)
|
||||
===================================
|
||||
|
||||
**New this release**
|
||||
|
||||
- :tada: Timeouts for requests are now configurable. You can set a timeout for each individual request attempt or for all attempts made for a request. (smithy-rs#831)
|
||||
- `SdkError` now includes a variant `TimeoutError` for when a request times out (smithy-rs#885)
|
||||
- Improve docs on `aws-smithy-client` (smithy-rs#855)
|
||||
- Fix http-body dependency version (smithy-rs#883, aws-sdk-rust#305)
|
||||
- [Added a new example showing how to set all currently supported timeouts](./sdk/examples/setting_timeouts/src/main.rs)
|
||||
- Add a new check so that the SDK doesn't emit an irrelevant `$HOME` dir warning when running in a Lambda (aws-sdk-rust#307)
|
||||
- :bug: Don't capture empty session tokens from the `AWS_SESSION_TOKEN` environment variable (aws-sdk-rust#316, smithy-rs#906)
|
||||
- Add docs.rs metadata section to all crates to document all features
|
||||
|
||||
**Breaking changes**
|
||||
|
||||
**Breaking Changes**
|
||||
- `RetryConfigBuilder::merge_with` has been renamed to `RetryConfigBuilder::take_unset_from`
|
||||
- `Credentials::from_keys` is now behind a feature flag named `hardcoded-credentials` in `aws-types`.
|
||||
It is __NOT__ secure to hardcode credentials into your application, and the credentials
|
||||
providers that come with the AWS SDK should be preferred. (smithy-rs#875, smithy-rs#317)
|
||||
- (aws-smithy-client): Extraneous `pub use SdkSuccess` removed from `aws_smithy_client::hyper_ext`. (smithy-rs#855)
|
||||
|
||||
v0.0.26-alpha (TBD)
|
||||
===================================
|
||||
|
||||
**Breaking Changes**
|
||||
|
||||
- The `add_metadata` function was removed from `AwsUserAgent` in `aws-http`.
|
||||
Use `with_feature_metadata`, `with_config_metadata`, or `with_framework_metadata` now instead. (smithy-rs#865)
|
||||
- Several breaking changes around `aws_smithy_types::Instant` were introduced by smithy-rs#849:
|
||||
|
@ -83,6 +77,10 @@ v0.0.26-alpha (TBD)
|
|||
- Added missing features to user agent formatting, and made it possible to configure an app name for the user agent via service config. (smithy-rs#865)
|
||||
- :bug: Relaxed profile name validation to allow `@` and other characters (smithy-rs#861, aws-sdk-rust#270)
|
||||
- :bug: Fixed signing problem with S3 Control (smithy-rs#858, aws-sd-rust#291)
|
||||
- :tada: Timeouts for requests are now configurable. You can set a timeout for each individual request attempt or for all attempts made for a request. (smithy-rs#831)
|
||||
- `SdkError` now includes a variant `TimeoutError` for when a request times out (smithy-rs#885)
|
||||
- Improve docs on `aws-smithy-client` (smithy-rs#855)
|
||||
- Fix http-body dependency version (smithy-rs#883, aws-sdk-rust#305)
|
||||
|
||||
**Contributions**
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
aws.sdk.version=0.0.26-alpha
|
||||
|
||||
# Version number to use for the generated runtime crates
|
||||
smithy.rs.runtime.crate.version=0.29.0-alpha
|
||||
smithy.rs.runtime.crate.version=0.30.0-alpha
|
||||
|
||||
kotlin.code.style=official
|
||||
|
||||
|
|
Loading…
Reference in New Issue