Skip to content

Commit 5208fda

Browse files
authored
Release v0.10.0 (2019-07-24) (#344)
Services === * Synced the V2 SDK with latest AWS service API definitions. * Fixes [#341](#341) * Fixes [#342](#342) SDK Breaking Changes === * `aws`: Add default HTTP client instead of http.DefaultClient/Transport ([#315](#315)) * Adds a new BuildableHTTPClient type to the SDK's aws package. The type uses the builder pattern with immutable changes. Modifications to the buildable client create copies of the client. Adds a HTTPClient interface to the aws package that the SDK will use as an abstraction over the specific HTTP client implementation. The SDK will default to the BuildableHTTPClient, but a *http.Client can be also provided for custom configuration. When the SDK's aws.Config.HTTPClient value is a BuildableHTTPClient the SDK will be able to use API client specific request timeout options. * Fixes [#279](#279) * Fixes [#269](#269) SDK Enhancements === * `service/s3/s3manager`: Update S3 Upload Multipart location ([#324](#324)) * Updates the Location returned value of S3 Upload's Multipart UploadOutput type to be consistent with single part upload URL. This update also brings the multipart upload Location inline with the S3 object URLs created by the SDK. * Fixes [#323](#323) * V2 Port [aws/aws-sdk-go#2453](aws/aws-sdk-go#2453) SDK Bugs === * `private/model`: Handles empty map vs unset map behavior in send request ([#337](#337)) * Updated shape marshal model to handle the empty map vs nil map behavior. Adding a test case to assert behavior when a user sends an empty map vs nil map. * Fix [#332](#332) * `service/rds`: Fix presign URL for same region ([#331](#331)) * Fixes RDS no-autopresign URL for same region issue for aws-sdk-go-v2. Solves the issue by making sure that the presigned URLs are not created, when the source and destination regions are the same. Added and updated the tests accordingly. * Fix [#271](#271) * `private/protocola/json/jsonutil`: Fix Unmarshal map[string]bool ([#320](#320)) * Fixes the JSON unmarshaling of maps of bools. The unmarshal case was missing the condition for bool value, in addition the bool pointer. * Fix [#319](#319)
1 parent 829ec26 commit 5208fda

File tree

1,764 files changed

+121968
-22185
lines changed

Some content is hidden

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

1,764 files changed

+121968
-22185
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
Release v0.10.0 (2019-07-24)
2+
===
3+
4+
### Services
5+
* Synced the V2 SDK with latest AWS service API definitions.
6+
* Fixes [#341](https://github.com/aws/aws-sdk-go-v2/issues/341)
7+
* Fixes [#342](https://github.com/aws/aws-sdk-go-v2/issues/342)
8+
9+
### SDK Breaking Changes
10+
* `aws`: Add default HTTP client instead of http.DefaultClient/Transport ([#315](https://github.com/aws/aws-sdk-go-v2/pull/315))
11+
* Adds a new BuildableHTTPClient type to the SDK's aws package. The type uses the builder pattern with immutable changes. Modifications to the buildable client create copies of the client. Adds a HTTPClient interface to the aws package that the SDK will use as an abstraction over the specific HTTP client implementation. The SDK will default to the BuildableHTTPClient, but a *http.Client can be also provided for custom configuration. When the SDK's aws.Config.HTTPClient value is a BuildableHTTPClient the SDK will be able to use API client specific request timeout options.
12+
* Fixes [#279](https://github.com/aws/aws-sdk-go-v2/issues/279)
13+
* Fixes [#269](https://github.com/aws/aws-sdk-go-v2/issues/269)
14+
15+
### SDK Enhancements
16+
* `service/s3/s3manager`: Update S3 Upload Multipart location ([#324](https://github.com/aws/aws-sdk-go-v2/pull/324))
17+
* Updates the Location returned value of S3 Upload's Multipart UploadOutput type to be consistent with single part upload URL. This update also brings the multipart upload Location inline with the S3 object URLs created by the SDK.
18+
* Fixes [#323](https://github.com/aws/aws-sdk-go-v2/issues/323)
19+
* V2 Port [aws/aws-sdk-go#2453](https://github.com/aws/aws-sdk-go/issues/2453)
20+
21+
### SDK Bugs
22+
* `private/model`: Handles empty map vs unset map behavior in send request ([#337](https://github.com/aws/aws-sdk-go-v2/pull/337))
23+
* Updated shape marshal model to handle the empty map vs nil map behavior. Adding a test case to assert behavior when a user sends an empty map vs nil map.
24+
* Fix [#332](https://github.com/aws/aws-sdk-go-v2/issues/332)
25+
* `service/rds`: Fix presign URL for same region ([#331](https://github.com/aws/aws-sdk-go-v2/pull/331))
26+
* Fixes RDS no-autopresign URL for same region issue for aws-sdk-go-v2. Solves the issue by making sure that the presigned URLs are not created, when the source and destination regions are the same. Added and updated the tests accordingly.
27+
* Fix [#271](https://github.com/aws/aws-sdk-go-v2/issues/271)
28+
* `private/protocola/json/jsonutil`: Fix Unmarshal map[string]bool ([#320](https://github.com/aws/aws-sdk-go-v2/pull/320))
29+
* Fixes the JSON unmarshaling of maps of bools. The unmarshal case was missing the condition for bool value, in addition the bool pointer.
30+
* Fix [#319](https://github.com/aws/aws-sdk-go-v2/issues/319)
31+
132
Release v0.9.0 (2019-05-28)
233
===
334

0 commit comments

Comments
 (0)