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.20.0 #2648

Merged
merged 1 commit into from
Jun 13, 2019
Merged

v1.20.0 #2648

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.20.0 (2019-06-13)
===

### Service Client Updates
* `service/appmesh`: Updates service API and documentation
* `service/ec2`: Updates service API
* G4 instances are Amazon EC2 instances based on NVIDIA T4 GPUs and are designed to provide cost-effective machine learning inference for applications, like image classification, object detection, recommender systems, automated speech recognition, and language translation. G4 instances are also a cost-effective platform for building and running graphics-intensive applications, such as remote graphics workstations, video transcoding, photo-realistic design, and game streaming in the cloud. To get started with G4 instances visit https://aws.amazon.com/ec2/instance-types/g4.
* `service/elasticache`: Updates service API and documentation
* This release is to add support for reader endpoint for cluster-mode disabled Amazon ElastiCache for Redis clusters.
* `service/guardduty`: Updates service API, documentation, and paginators
* Support for tagging functionality in Create and Get operations for Detector, IP Set, Threat Intel Set, and Finding Filter resources and 3 new tagging APIs: ListTagsForResource, TagResource, and UntagResource.

### SDK Features

* `aws/session`: Add support for chaining assume IAM role from shared config ([#2579](https://github.com/aws/aws-sdk-go/pull/2579))
* Adds support chaining assume role credentials from the shared config/credentials files. This change allows you to create an assume role chain of multiple levels of assumed IAM roles. The config profile the deepest in the chain must use static credentials, or `credential_source`. If the deepest profile doesn't have either of these the session will fail to load.
* Fixes the SDK's shared config credential source not assuming a role with environment and ECS credentials. EC2 credentials were already supported.
* Fix [#2528](https://github.com/aws/aws-sdk-go/issue/2528)
* Fix [#2385](https://github.com/aws/aws-sdk-go/issue/2385)

### SDK Enhancements
* `service/s3/s3manager/s3manageriface`: Add missing methods ([#2612](https://github.com/aws/aws-sdk-go/pull/2612))
* Adds the missing interface and methods from the `s3manager` Uploader, Downloader, and Batch Delete utilities.

Release v1.19.49 (2019-06-12)
===

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

* `aws/session`: Add support for chaining assume IAM role from shared config ([#2579](https://github.com/aws/aws-sdk-go/pull/2579))
* Adds support chaining assume role credentials from the shared config/credentials files. This change allows you to create an assume role chain of multiple levels of assumed IAM roles. The config profile the deepest in the chain must use static credentials, or `credential_source`. If the deepest profile doesn't have either of these the session will fail to load.
* Fixes the SDK's shared config credential source not assuming a role with environment and ECS credentials. EC2 credentials were already supported.
* Fix [#2528](https://github.com/aws/aws-sdk-go/issue/2528)
* Fix [#2385](https://github.com/aws/aws-sdk-go/issue/2385)

### SDK Enhancements
* `service/s3/s3manager/s3manageriface`: Add missing methods ([#2612](https://github.com/aws/aws-sdk-go/pull/2612))
* Adds the missing interface and methods from the `s3manager` Uploader, Downloader, and Batch Delete utilities.

### 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.19.49"
const SDKVersion = "1.20.0"
63 changes: 60 additions & 3 deletions models/apis/appmesh/2019-01-25/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1677,6 +1677,12 @@
"min": 1,
"max": 255
},
"AwsCloudMapInstanceAttributes": {
"type": "list",
"member": {
"shape": "AwsCloudMapInstanceAttribute"
}
},
"VirtualNodeRef": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -1729,6 +1735,12 @@
},
"payload": "virtualNode"
},
"AwsCloudMapName": {
"type": "string",
"min": 1,
"max": 1024,
"pattern": "((?=^.{1,127}$)^([a-zA-Z0-9_][a-zA-Z0-9-_]{0,61}[a-zA-Z0-9_]|[a-zA-Z0-9])(.([a-zA-Z0-9_][a-zA-Z0-9-_]{0,61}[a-zA-Z0-9_]|[a-zA-Z0-9]))*$)|(^.$)"
},
"LimitExceededException": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -1859,6 +1871,21 @@
"type": "structure",
"members": { }
},
"AwsCloudMapInstanceAttribute": {
"type": "structure",
"required": [
"key",
"value"
],
"members": {
"key": {
"shape": "AwsCloudMapInstanceAttributeKey"
},
"value": {
"shape": "AwsCloudMapInstanceAttributeValue"
}
}
},
"VirtualServiceSpec": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -2150,11 +2177,14 @@
"min": 1,
"max": 255
},
"AwsCloudMapInstanceAttributeKey": {
"type": "string",
"min": 1,
"max": 255,
"pattern": "^[a-zA-Z0-9!-~]+$"
},
"VirtualRouterSpec": {
"type": "structure",
"required": [
"listeners"
],
"members": {
"listeners": {
"shape": "VirtualRouterListeners"
Expand Down Expand Up @@ -2360,6 +2390,12 @@
}
}
},
"AwsCloudMapInstanceAttributeValue": {
"type": "string",
"min": 1,
"max": 1024,
"pattern": "^([a-zA-Z0-9!-~][ ta-zA-Z0-9!-~]*){0,1}[a-zA-Z0-9!-~]{0,1}$"
},
"WeightedTarget": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -2719,6 +2755,24 @@
"String": {
"type": "string"
},
"AwsCloudMapServiceDiscovery": {
"type": "structure",
"required": [
"namespaceName",
"serviceName"
],
"members": {
"attributes": {
"shape": "AwsCloudMapInstanceAttributes"
},
"namespaceName": {
"shape": "AwsCloudMapName"
},
"serviceName": {
"shape": "AwsCloudMapName"
}
}
},
"UpdateVirtualServiceOutput": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -2931,6 +2985,9 @@
"ServiceDiscovery": {
"type": "structure",
"members": {
"awsCloudMap": {
"shape": "AwsCloudMapServiceDiscovery"
},
"dns": {
"shape": "DnsServiceDiscovery"
}
Expand Down
Loading