Skip to content

Commit b8a3f09

Browse files
authored
Release v0.21.0 (2020-04-21) (#539)
Breaking Change --- * `aws/endpoints`: Several functions and types have been removed * Removes `DecodeModel` and `DecodeModelOptions` from the package ([#509](#509)) * Remove Region Constants, Partition Constants, and types use for exploring the endpoint data model ([#512](#512)) * `service/s3/s3crypto`: Package and associated encryption/decryption clients have been removed from the SDK ([#511](#511)) * `aws/external`: Removes several export constants and types ([#508](#508)) * No longer exports AWS environment constants used by the external environment configuration loader * `DefaultSharedConfigProfile` is now defined an exported constant * `aws`: `ErrMissingRegion`, `ErrMissingEndpoint`, `ErrStaticCredentialsEmpty` are now concrete error types ([#510](#510)) Services --- * Synced the V2 SDK with latest AWS service API definitions. SDK Features --- * `aws/signer/v4`: New methods `SignHTTP` and `PresignHTTP` have been added ([#519](#519)) * `SignHTTP` replaces `Sign`, and usage of `Sign` should be migrated before it's removal at a later date * `PresignHTTP` replaces `Presign`, and usage of `Presign` should be migrated before it's removal at a later date * `DisableRequestBodyOverwrite` and `UnsignedPayload` are now deprecated options and have no effect on `SignHTTP` or `PresignHTTP`. These options will be removed at a later date. * `aws/external`: Add Support for setting a default fallback region and resolving region from EC2 IMDS ([#523](#523)) * `WithDefaultRegion` helper has been added which can be passed to `LoadDefaultAWSConfig` * This helper can be used to configure a default fallback region in the event a region fails to be resolved from other sources * Support has been added to resolve region using EC2 IMDS when available * The IMDS region will be used if region as not found configured in either the shared config or the process environment. * Fixes [#244](#244) * Fixes [#515](#515) SDK Enhancements --- * `service/dynamodb/expression`: Add IsSet helper for ConditionBuilder and KeyConditionBuilder ([#494](#494)) * Adds a IsSet helper for ConditionBuilder and KeyConditionBuilder to make it easier to determine if the condition builders have any conditions added to them. * Implements [#493](#493). * `internal/ini`: Normalize Section keys to lowercase ([#495](#495)) * Update's SDK's ini utility to store all keys as lowercase. This brings the SDK inline with the AWS CLI's behavior. SDK Bugs --- * `internal/sdk`: Fix SDK's UUID utility to handle partial read ([#536](#536)) * Fixes the SDK's UUID utility to correctly handle partial reads from its crypto rand source. This error was sometimes causing the SDK's InvocationID value to fail to be obtained, due to a partial read from crypto.Rand. * Fix [#534](#534) * `aws/defaults`: Fix request metadata headers causing signature errors ([#536](#536)) * Fixes the SDK's adding the request metadata headers in the wrong location within the request handler stack. This created a situation where a request that was retried would sign the new attempt using the old value of the header. The header value would then be changed before sending the request. * Fix [#533](#533) * Fix [#521](#521)
1 parent 33b219a commit b8a3f09

File tree

757 files changed

+49419
-6516
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

757 files changed

+49419
-6516
lines changed

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,53 @@
1+
Release v0.21.0 (2020-04-21)
2+
===
3+
4+
Breaking Change
5+
---
6+
* `aws/endpoints`: Several functions and types have been removed
7+
* Removes `DecodeModel` and `DecodeModelOptions` from the package ([#509](https://github.com/aws/aws-sdk-go-v2/pull/509))
8+
* Remove Region Constants, Partition Constants, and types use for exploring the endpoint data model ([#512](https://github.com/aws/aws-sdk-go-v2/pull/512))
9+
* `service/s3/s3crypto`: Package and associated encryption/decryption clients have been removed from the SDK ([#511](https://github.com/aws/aws-sdk-go-v2/pull/511))
10+
* `aws/external`: Removes several export constants and types ([#508](https://github.com/aws/aws-sdk-go-v2/pull/508))
11+
* No longer exports AWS environment constants used by the external environment configuration loader
12+
* `DefaultSharedConfigProfile` is now defined an exported constant
13+
* `aws`: `ErrMissingRegion`, `ErrMissingEndpoint`, `ErrStaticCredentialsEmpty` are now concrete error types ([#510](https://github.com/aws/aws-sdk-go-v2/pull/510))
14+
15+
Services
16+
---
17+
* Synced the V2 SDK with latest AWS service API definitions.
18+
19+
SDK Features
20+
---
21+
* `aws/signer/v4`: New methods `SignHTTP` and `PresignHTTP` have been added ([#519](https://github.com/aws/aws-sdk-go-v2/pull/519))
22+
* `SignHTTP` replaces `Sign`, and usage of `Sign` should be migrated before it's removal at a later date
23+
* `PresignHTTP` replaces `Presign`, and usage of `Presign` should be migrated before it's removal at a later date
24+
* `DisableRequestBodyOverwrite` and `UnsignedPayload` are now deprecated options and have no effect on `SignHTTP` or `PresignHTTP`. These options will be removed at a later date.
25+
* `aws/external`: Add Support for setting a default fallback region and resolving region from EC2 IMDS ([#523](https://github.com/aws/aws-sdk-go-v2/pull/523))
26+
* `WithDefaultRegion` helper has been added which can be passed to `LoadDefaultAWSConfig`
27+
* This helper can be used to configure a default fallback region in the event a region fails to be resolved from other sources
28+
* Support has been added to resolve region using EC2 IMDS when available
29+
* The IMDS region will be used if region as not found configured in either the shared config or the process environment.
30+
* Fixes [#244](https://github.com/aws/aws-sdk-go-v2/issues/244)
31+
* Fixes [#515](https://github.com/aws/aws-sdk-go-v2/issues/515)
32+
33+
SDK Enhancements
34+
---
35+
* `service/dynamodb/expression`: Add IsSet helper for ConditionBuilder and KeyConditionBuilder ([#494](https://github.com/aws/aws-sdk-go-v2/pull/494))
36+
* Adds a IsSet helper for ConditionBuilder and KeyConditionBuilder to make it easier to determine if the condition builders have any conditions added to them.
37+
* Implements [#493](https://github.com/aws/aws-sdk-go-v2/issues/493).
38+
* `internal/ini`: Normalize Section keys to lowercase ([#495](https://github.com/aws/aws-sdk-go-v2/pull/495))
39+
* Update's SDK's ini utility to store all keys as lowercase. This brings the SDK inline with the AWS CLI's behavior.
40+
41+
SDK Bugs
42+
---
43+
* `internal/sdk`: Fix SDK's UUID utility to handle partial read ([#536](https://github.com/aws/aws-sdk-go-v2/pull/536))
44+
* Fixes the SDK's UUID utility to correctly handle partial reads from its crypto rand source. This error was sometimes causing the SDK's InvocationID value to fail to be obtained, due to a partial read from crypto.Rand.
45+
* Fix [#534](https://github.com/aws/aws-sdk-go-v2/issues/534)
46+
* `aws/defaults`: Fix request metadata headers causing signature errors ([#536](https://github.com/aws/aws-sdk-go-v2/pull/536))
47+
* Fixes the SDK's adding the request metadata headers in the wrong location within the request handler stack. This created a situation where a request that was retried would sign the new attempt using the old value of the header. The header value would then be changed before sending the request.
48+
* Fix [#533](https://github.com/aws/aws-sdk-go-v2/issues/533)
49+
* Fix [#521](https://github.com/aws/aws-sdk-go-v2/issues/521)
50+
151
Release v0.20.0 (2020-03-17)
252
===
353

CHANGELOG_PENDING.md

Lines changed: 1 addition & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,11 @@
1-
Breaking Change
2-
---
3-
* `aws/endpoints`: Several functions and types have been removed
4-
* Removes `DecodeModel` and `DecodeModelOptions` from the package ([#509](https://github.com/aws/aws-sdk-go-v2/pull/509))
5-
* Remove Region Constants, Partition Constants, and types use for exploring the endpoint data model ([#512](https://github.com/aws/aws-sdk-go-v2/pull/512))
6-
* `service/s3/s3crypto`: Package and associated encryption/decryption clients have been removed from the SDK ([#511](https://github.com/aws/aws-sdk-go-v2/pull/511))
7-
* `aws/external`: Removes several export constants and types ([#508](https://github.com/aws/aws-sdk-go-v2/pull/508))
8-
* No longer exports AWS environment constants used by the external environment configuration loader
9-
* `DefaultSharedConfigProfile` is now defined an exported constant
10-
* `aws`: `ErrMissingRegion`, `ErrMissingEndpoint`, `ErrStaticCredentialsEmpty` are now concrete error types ([#510](https://github.com/aws/aws-sdk-go-v2/pull/510))
11-
121
Services
132
---
143

154
SDK Features
165
---
17-
* `aws/signer/v4`: New methods `SignHTTP` and `PresignHTTP` have been added ([#519](https://github.com/aws/aws-sdk-go-v2/pull/519))
18-
* `SignHTTP` replaces `Sign`, and usage of `Sign` should be migrated before it's removal at a later date
19-
* `PresignHTTP` replaces `Presign`, and usage of `Presign` should be migrated before it's removal at a later date
20-
* `DisableRequestBodyOverwrite` and `UnsignedPayload` are now deprecated options and have no effect on `SignHTTP` or `PresignHTTP`. These options will be removed at a later date.
21-
* `aws/external`: Add Support for setting a default fallback region and resolving region from EC2 IMDS ([#523](https://github.com/aws/aws-sdk-go-v2/pull/523))
22-
* `WithDefaultRegion` helper has been added which can be passed to `LoadDefaultAWSConfig`
23-
* This helper can be used to configure a default fallback region in the event a region fails to be resolved from other sources
24-
* Support has been added to resolve region using EC2 IMDS when available
25-
* The IMDS region will be used if region as not found configured in either the shared config or the process environment.
26-
* Fixes [#244](https://github.com/aws/aws-sdk-go-v2/issues/244)
27-
* Fixes [#515](https://github.com/aws/aws-sdk-go-v2/issues/515)
6+
287
SDK Enhancements
298
---
30-
* `service/dynamodb/expression`: Add IsSet helper for ConditionBuilder and KeyConditionBuilder ([#494](https://github.com/aws/aws-sdk-go-v2/pull/494))
31-
* Adds a IsSet helper for ConditionBuilder and KeyConditionBuilder to make it easier to determine if the condition builders have any conditions added to them.
32-
* Implements [#493](https://github.com/aws/aws-sdk-go-v2/issues/493).
33-
* `internal/ini`: Normalize Section keys to lowercase ([#495](https://github.com/aws/aws-sdk-go-v2/pull/495))
34-
* Update's SDK's ini utility to store all keys as lowercase. This brings the SDK inline with the AWS CLI's behavior.
35-
369

3710
SDK Bugs
3811
---
39-
* `internal/sdk`: Fix SDK's UUID utility to handle partial read ([#536](https://github.com/aws/aws-sdk-go-v2/pull/536))
40-
* Fixes the SDK's UUID utility to correctly handle partial reads from its crypto rand source. This error was sometimes causing the SDK's InvocationID value to fail to be obtained, due to a partial read from crypto.Rand.
41-
* Fix [#534](https://github.com/aws/aws-sdk-go-v2/issues/534)
42-
* `aws/defaults`: Fix request metadata headers causing signature errors ([#536](https://github.com/aws/aws-sdk-go-v2/pull/536))
43-
* Fixes the SDK's adding the request metadata headers in the wrong location within the request handler stack. This created a situation where a request that was retried would sign the new attempt using the old value of the header. The header value would then be changed before sending the request.
44-
* Fix [#533](https://github.com/aws/aws-sdk-go-v2/issues/533)
45-
* Fix [#521](https://github.com/aws/aws-sdk-go-v2/issues/521)

0 commit comments

Comments
 (0)