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.14.5 #1989

Merged
merged 1 commit into from
Jun 12, 2018
Merged

v1.14.5 #1989

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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
Release v1.14.5 (2018-06-12)
===

### Service Client Updates
* `service/devicefarm`: Updates service API and documentation
* Adding VPCEndpoint support for Remote access. Allows customers to be able to access their private endpoints/services running in their VPC during remote access.
* `service/ecs`: Updates service API and documentation
* Introduces daemon scheduling capability to deploy one task per instance on selected instances in a cluster. Adds a "force" flag to the DeleteService API to delete a service without requiring to scale down the number of tasks to zero.

### SDK Enhancements
* `service/rds/rdsutils`: Clean up the rdsutils package and adds a new builder to construct connection strings ([#1985](https://github.com/aws/aws-sdk-go/pull/1985))
* Rewords documentation to be more useful and provides links to prior setup needed to support authentication tokens. Introduces a builder that allows for building connection strings

### SDK Bugs
* `aws/signer/v4`: Fix X-Amz-Content-Sha256 being in to query for presign ([#1976](https://github.com/aws/aws-sdk-go/pull/1976))
* Fixes the bug which would allow the X-Amz-Content-Sha256 header to be promoted to the query string when presigning a S3 request. This bug also was preventing users from setting their own sha256 value for a presigned URL. Presigned requests generated with the custom sha256 would of always failed with invalid signature.
* Fixes [#1974](https://github.com/aws/aws-sdk-go/pull/1974)
Release v1.14.4 (2018-06-11)
===

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/rds/rdsutils`: Clean up the rdsutils package and adds a new builder to construct connection strings ([#1985](https://github.com/aws/aws-sdk-go/pull/1985))
* Rewords documentation to be more useful and provides links to prior setup needed to support authentication tokens. Introduces a builder that allows for building connection strings

### SDK Bugs
* `aws/signer/v4`: Fix X-Amz-Content-Sha256 being in to query for presign ([#1976](https://github.com/aws/aws-sdk-go/pull/1976))
* Fixes the bug which would allow the X-Amz-Content-Sha256 header to be promoted to the query string when presigning a S3 request. This bug also was preventing users from setting their own sha256 value for a presigned URL. Presigned requests generated with the custom sha256 would of always failed with invalid signature.
* Fixes [#1974](https://github.com/aws/aws-sdk-go/pull/1974)
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.14.4"
const SDKVersion = "1.14.5"
3 changes: 2 additions & 1 deletion models/apis/devicefarm/2015-06-23/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,8 @@
"CreateRemoteAccessSessionConfiguration":{
"type":"structure",
"members":{
"billingMethod":{"shape":"BillingMethod"}
"billingMethod":{"shape":"BillingMethod"},
"vpceConfigurationArns":{"shape":"AmazonResourceNames"}
}
},
"CreateRemoteAccessSessionRequest":{
Expand Down
1 change: 1 addition & 0 deletions models/apis/devicefarm/2015-06-23/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@
"AmazonResourceNames": {
"base": null,
"refs": {
"CreateRemoteAccessSessionConfiguration$vpceConfigurationArns": "<p>An array of Amazon Resource Names (ARNs) included in the VPC endpoint configuration.</p>",
"ScheduleRunConfiguration$vpceConfigurationArns": "<p>An array of Amazon Resource Names (ARNs) for your VPC endpoint configurations.</p>",
"ScheduleRunConfiguration$auxiliaryApps": "<p>A list of auxiliary apps for the run.</p>"
}
Expand Down
22 changes: 16 additions & 6 deletions models/apis/ecs/2014-11-13/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -790,8 +790,7 @@
"type":"structure",
"required":[
"serviceName",
"taskDefinition",
"desiredCount"
"taskDefinition"
],
"members":{
"cluster":{"shape":"String"},
Expand All @@ -808,7 +807,8 @@
"placementConstraints":{"shape":"PlacementConstraints"},
"placementStrategy":{"shape":"PlacementStrategies"},
"networkConfiguration":{"shape":"NetworkConfiguration"},
"healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"}
"healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"},
"schedulingStrategy":{"shape":"SchedulingStrategy"}
}
},
"CreateServiceResponse":{
Expand Down Expand Up @@ -849,7 +849,8 @@
"required":["service"],
"members":{
"cluster":{"shape":"String"},
"service":{"shape":"String"}
"service":{"shape":"String"},
"force":{"shape":"BoxedBoolean"}
}
},
"DeleteServiceResponse":{
Expand Down Expand Up @@ -1187,7 +1188,8 @@
"cluster":{"shape":"String"},
"nextToken":{"shape":"String"},
"maxResults":{"shape":"BoxedInteger"},
"launchType":{"shape":"LaunchType"}
"launchType":{"shape":"LaunchType"},
"schedulingStrategy":{"shape":"SchedulingStrategy"}
}
},
"ListServicesResponse":{
Expand Down Expand Up @@ -1515,6 +1517,13 @@
"failures":{"shape":"Failures"}
}
},
"SchedulingStrategy":{
"type":"string",
"enum":[
"REPLICA",
"DAEMON"
]
},
"ServerException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1546,7 +1555,8 @@
"placementConstraints":{"shape":"PlacementConstraints"},
"placementStrategy":{"shape":"PlacementStrategies"},
"networkConfiguration":{"shape":"NetworkConfiguration"},
"healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"}
"healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"},
"schedulingStrategy":{"shape":"SchedulingStrategy"}
}
},
"ServiceEvent":{
Expand Down
Loading