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

v1.25.0 #2858

Merged
merged 1 commit into from
Sep 26, 2019
Merged

v1.25.0 #2858

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
Release v1.25.0 (2019-09-26)
===

### Service Client Updates
* `service/codepipeline`: Updates service documentation
* Documentation updates for CodePipeline
* `aws/endpoints`: Updated Regions and Endpoints metadata.
* `service/ssm`: Updates service API and documentation
* This release updates the AWS Systems Manager Parameter Store PutParameter and LabelParameterVersion APIs to return the "Tier" of parameter created/updated and the "parameter version" labeled respectively.

### SDK Features
* `service/dynamodb/dynamodbattribute`: Add EnableEmptyCollections flag to Encoder and Decoder ([#2834](https://github.com/aws/aws-sdk-go/pull/2834))
* The `Encoder` and `Decoder` types have been enhanced to allow support for specifying the SDK's behavior when marshaling structures, maps, and slices to DynamoDB.
* When `EnableEmptyCollections` is set to `True` the SDK will preserve the empty of these types in DynamoDB rather then encoding a NULL AttributeValue.
* Fixes [#682](https://github.com/aws/aws-sdk-go/issues/682)
* Fixes [#1890](https://github.com/aws/aws-sdk-go/issues/1890)
* Fixes [#2746](https://github.com/aws/aws-sdk-go/issues/2746)
* `service/s3/s3manager`: Add Download Buffer Provider ([#2823](https://github.com/aws/aws-sdk-go/pull/2823))
* Adds a new `BufferProvider` member for specifying how part data can be buffered in memory when copying from the http response body.
* Windows platforms will now default to buffering 1MB per part to reduce contention when downloading files.
* Non-Windows platforms will continue to employ a non-buffering behavior.
* Fixes [#2180](https://github.com/aws/aws-sdk-go/issues/2180)
* Fixes [#2662](https://github.com/aws/aws-sdk-go/issues/2662)

Release v1.24.6 (2019-09-25)
===

Expand Down
12 changes: 0 additions & 12 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,4 @@
### SDK Features
* `service/dynamodb/dynamodbattribute`: Add EnableEmptyCollections flag to Encoder and Decoder ([#2834](https://github.com/aws/aws-sdk-go/pull/2834))
* The `Encoder` and `Decoder` types have been enhanced to allow support for specifying the SDK's behavior when marshaling structures, maps, and slices to DynamoDB.
* When `EnableEmptyCollections` is set to `True` the SDK will preserve the empty of these types in DynamoDB rather then encoding a NULL AttributeValue.
* Fixes [#682](https://github.com/aws/aws-sdk-go/issues/682)
* Fixes [#1890](https://github.com/aws/aws-sdk-go/issues/1890)
* Fixes [#2746](https://github.com/aws/aws-sdk-go/issues/2746)
* `service/s3/s3manager`: Add Download Buffer Provider ([#2823](https://github.com/aws/aws-sdk-go/pull/2823))
* Adds a new `BufferProvider` member for specifying how part data can be buffered in memory when copying from the http response body.
* Windows platforms will now default to buffering 1MB per part to reduce contention when downloading files.
* Non-Windows platforms will continue to employ a non-buffering behavior.
* Fixes [#2180](https://github.com/aws/aws-sdk-go/issues/2180)
* Fixes [#2662](https://github.com/aws/aws-sdk-go/issues/2662)

### SDK Enhancements

Expand Down
39 changes: 33 additions & 6 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.24.6"
const SDKVersion = "1.25.0"
Loading