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.23.2 #2759

Merged
merged 1 commit into from
Aug 15, 2019
Merged

v1.23.2 #2759

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
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
Release v1.23.2 (2019-08-15)
===

### Service Client Updates
* `service/appmesh`: Updates service API and documentation
* `service/athena`: Updates service API and documentation
* This release adds support for querying S3 Requester Pays buckets. Users can enable this feature through their Workgroup settings.
* `service/codecommit`: Updates service API and documentation
* This release adds an API, BatchGetCommits, that allows retrieval of metadata for multiple commits in an AWS CodeCommit repository.
* `service/ec2`: Updates service API and documentation
* This release adds an option to use private certificates from AWS Certificate Manager (ACM) to authenticate a Site-to-Site VPN connection's tunnel endpoints and customer gateway device.
* `service/glue`: Updates service API, documentation, and paginators
* GetJobBookmarks API is withdrawn.
* `service/storagegateway`: Updates service API and documentation
* CreateSnapshotFromVolumeRecoveryPoint API supports new parameter: Tags (to be attached to the created resource)

### SDK Enhancements
* `service/kinesis`: Add support for retrying service specific API errors ([#2751](https://github.com/aws/aws-sdk-go/pull/2751)
* Adds support for retrying the Kinesis API error, LimitExceededException.
* Fixes [#1376](https://github.com/aws/aws-sdk-go/issues/1376)
* `aws/credentials/stscreds`: Add STS and Assume Role specific retries ([#2752](https://github.com/aws/aws-sdk-go/pull/2752))
* Adds retries to specific STS API errors to the STS AssumeRoleWithWebIdentity credential provider, and STS API operations in general.

Release v1.23.1 (2019-08-14)
===

Expand Down
5 changes: 0 additions & 5 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
### SDK Features

### SDK Enhancements
* `service/kinesis`: Add support for retrying service specific API errors ([#2751](https://github.com/aws/aws-sdk-go/pull/2751)
* Adds support for retrying the Kinesis API error, LimitExceededException.
* Fixes [#1376](https://github.com/aws/aws-sdk-go/issues/1376)
* `aws/credentials/stscreds`: Add STS and Assume Role specific retries ([#2752](https://github.com/aws/aws-sdk-go/pull/2752))
* Adds retries to specific STS API errors to the STS AssumeRoleWithWebIdentity credential provider, and STS API operations in general.

### SDK Bugs
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.23.1"
const SDKVersion = "1.23.2"
131 changes: 131 additions & 0 deletions models/apis/appmesh/2019-01-25/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,9 @@
{
"shape": "BadRequestException"
},
{
"shape": "ForbiddenException"
},
{
"shape": "InternalServerErrorException"
},
Expand All @@ -667,6 +670,9 @@
},
{
"shape": "ServiceUnavailableException"
},
{
"shape": "TooManyRequestsException"
}
]
},
Expand Down Expand Up @@ -789,6 +795,9 @@
{
"shape": "BadRequestException"
},
{
"shape": "ForbiddenException"
},
{
"shape": "InternalServerErrorException"
},
Expand All @@ -798,6 +807,9 @@
{
"shape": "ServiceUnavailableException"
},
{
"shape": "TooManyRequestsException"
},
{
"shape": "TooManyTagsException"
}
Expand All @@ -821,6 +833,9 @@
{
"shape": "BadRequestException"
},
{
"shape": "ForbiddenException"
},
{
"shape": "InternalServerErrorException"
},
Expand All @@ -829,6 +844,9 @@
},
{
"shape": "ServiceUnavailableException"
},
{
"shape": "TooManyRequestsException"
}
],
"idempotent": true
Expand Down Expand Up @@ -1660,6 +1678,27 @@
}
}
},
"Boolean": {
"type": "boolean",
"box": true
},
"HttpRouteHeader": {
"type": "structure",
"required": [
"name"
],
"members": {
"invert": {
"shape": "Boolean"
},
"match": {
"shape": "HeaderMatchMethod"
},
"name": {
"shape": "HeaderName"
}
}
},
"DescribeVirtualServiceOutput": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -1902,6 +1941,21 @@
}
}
},
"MatchRange": {
"type": "structure",
"required": [
"end",
"start"
],
"members": {
"end": {
"shape": "Long"
},
"start": {
"shape": "Long"
}
}
},
"ListVirtualRoutersLimit": {
"type": "integer",
"box": true,
Expand Down Expand Up @@ -2025,6 +2079,12 @@
}
}
},
"RoutePriority": {
"type": "integer",
"box": true,
"min": 0,
"max": 1000
},
"ListVirtualServicesInput": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -2208,6 +2268,11 @@
"Timestamp": {
"type": "timestamp"
},
"HeaderMatch": {
"type": "string",
"min": 1,
"max": 255
},
"VirtualNodeSpec": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -2247,6 +2312,20 @@
"min": 1,
"max": 1
},
"HttpMethod": {
"type": "string",
"enum": [
"connect",
"delete",
"get",
"head",
"options",
"patch",
"post",
"put",
"trace"
]
},
"ConflictException": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -2279,8 +2358,17 @@
"prefix"
],
"members": {
"headers": {
"shape": "HttpRouteHeaders"
},
"method": {
"shape": "HttpMethod"
},
"prefix": {
"shape": "String"
},
"scheme": {
"shape": "HttpScheme"
}
}
},
Expand Down Expand Up @@ -2590,6 +2678,11 @@
"fault": true
}
},
"HeaderName": {
"type": "string",
"min": 1,
"max": 50
},
"TagList": {
"type": "list",
"member": {
Expand Down Expand Up @@ -2655,6 +2748,26 @@
"senderFault": true
}
},
"HeaderMatchMethod": {
"type": "structure",
"members": {
"exact": {
"shape": "HeaderMatch"
},
"prefix": {
"shape": "HeaderMatch"
},
"range": {
"shape": "MatchRange"
},
"regex": {
"shape": "HeaderMatch"
},
"suffix": {
"shape": "HeaderMatch"
}
}
},
"DeleteMeshOutput": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -2741,6 +2854,14 @@
"min": 1,
"max": 10
},
"HttpRouteHeaders": {
"type": "list",
"member": {
"shape": "HttpRouteHeader"
},
"min": 1,
"max": 10
},
"VirtualServiceProvider": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -2773,6 +2894,13 @@
}
}
},
"HttpScheme": {
"type": "string",
"enum": [
"http",
"https"
]
},
"UpdateVirtualServiceOutput": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -2874,6 +3002,9 @@
"httpRoute": {
"shape": "HttpRoute"
},
"priority": {
"shape": "RoutePriority"
},
"tcpRoute": {
"shape": "TcpRoute"
}
Expand Down
Loading