Skip to content

Commit

Permalink
Release v1.4.16
Browse files Browse the repository at this point in the history
Service Model Updates
---
* `service/ecr`: Update Amazon EC2 Container Registry service model
  * DescribeImages is a new api used to expose image metadata which today includes image size and image creation timestamp.
* `service/elasticache`: Update Amazon ElastiCache service model
  * Elasticache is launching a new major engine release of Redis, 3.2 (providing stability updates and new command sets over 2.8), as well as ElasticSupport for enabling Redis Cluster in 3.2, which provides support for multiple node groups to horizontally scale data, as well as superior engine failover capabilities

SDK Bug Fixes
---
* `aws/session`: Skip shared config on read errors (aws#883)
* `aws/signer/v4`: Add support for URL.EscapedPath to signer (aws#885)

SDK Features
---
* `private/model/api`: Add docs for errors to API operations (aws#881)
* `private/model/api`: Improve field and waiter doc strings (aws#879)
* `service/dynamodb/dynamodbattribute`: Allow multiple struct tag elements (aws#886)
* Add build tags to internal SDK tools (aws#880)
  • Loading branch information
jasdel committed Oct 12, 2016
1 parent 4bbd1ce commit 9ffbd77
Show file tree
Hide file tree
Showing 12 changed files with 1,666 additions and 902 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
Release v1.4.16
===

Service Model Updates
---
* `service/ecr`: Update Amazon EC2 Container Registry service model
* DescribeImages is a new api used to expose image metadata which today includes image size and image creation timestamp.
* `service/elasticache`: Update Amazon ElastiCache service model
* Elasticache is launching a new major engine release of Redis, 3.2 (providing stability updates and new command sets over 2.8), as well as ElasticSupport for enabling Redis Cluster in 3.2, which provides support for multiple node groups to horizontally scale data, as well as superior engine failover capabilities

SDK Bug Fixes
---
* `aws/session`: Skip shared config on read errors (#883)
* `aws/signer/v4`: Add support for URL.EscapedPath to signer (#885)

SDK Features
---
* `private/model/api`: Add docs for errors to API operations (#881)
* `private/model/api`: Improve field and waiter doc strings (#879)
* `service/dynamodb/dynamodbattribute`: Allow multiple struct tag elements (#886)
* Add build tags to internal SDK tools (#880)

Release v1.4.15
===

Expand Down
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.4.14"
const SDKVersion = "1.4.16"
72 changes: 71 additions & 1 deletion models/apis/ecr/2015-09-21/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,21 @@
{"shape":"RepositoryPolicyNotFoundException"}
]
},
"DescribeImages":{
"name":"DescribeImages",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeImagesRequest"},
"output":{"shape":"DescribeImagesResponse"},
"errors":[
{"shape":"ServerException"},
{"shape":"InvalidParameterException"},
{"shape":"RepositoryNotFoundException"},
{"shape":"ImageNotFoundException"}
]
},
"DescribeRepositories":{
"name":"DescribeRepositories",
"http":{
Expand Down Expand Up @@ -374,6 +389,7 @@
"repository":{"shape":"Repository"}
}
},
"CreationTimestamp":{"type":"timestamp"},
"DeleteRepositoryPolicyRequest":{
"type":"structure",
"required":["repositoryName"],
Expand Down Expand Up @@ -405,6 +421,31 @@
"repository":{"shape":"Repository"}
}
},
"DescribeImagesFilter":{
"type":"structure",
"members":{
"tagStatus":{"shape":"TagStatus"}
}
},
"DescribeImagesRequest":{
"type":"structure",
"required":["repositoryName"],
"members":{
"registryId":{"shape":"RegistryId"},
"repositoryName":{"shape":"RepositoryName"},
"imageIds":{"shape":"ImageIdentifierList"},
"nextToken":{"shape":"NextToken"},
"maxResults":{"shape":"MaxResults"},
"filter":{"shape":"DescribeImagesFilter"}
}
},
"DescribeImagesResponse":{
"type":"structure",
"members":{
"imageDetails":{"shape":"ImageDetailList"},
"nextToken":{"shape":"NextToken"}
}
},
"DescribeRepositoriesRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -500,6 +541,21 @@
},
"exception":true
},
"ImageDetail":{
"type":"structure",
"members":{
"registryId":{"shape":"RegistryId"},
"repositoryName":{"shape":"RepositoryName"},
"imageDigest":{"shape":"ImageDigest"},
"imageTags":{"shape":"ImageTagList"},
"imageSizeInBytes":{"shape":"ImageSizeInBytes"},
"imagePushedAt":{"shape":"PushTimestamp"}
}
},
"ImageDetailList":{
"type":"list",
"member":{"shape":"ImageDetail"}
},
"ImageDigest":{"type":"string"},
"ImageFailure":{
"type":"structure",
Expand Down Expand Up @@ -542,7 +598,19 @@
"member":{"shape":"Image"}
},
"ImageManifest":{"type":"string"},
"ImageNotFoundException":{
"type":"structure",
"members":{
"message":{"shape":"ExceptionMessage"}
},
"exception":true
},
"ImageSizeInBytes":{"type":"long"},
"ImageTag":{"type":"string"},
"ImageTagList":{
"type":"list",
"member":{"shape":"ImageTag"}
},
"InitiateLayerUploadRequest":{
"type":"structure",
"required":["repositoryName"],
Expand Down Expand Up @@ -704,6 +772,7 @@
"min":0
},
"ProxyEndpoint":{"type":"string"},
"PushTimestamp":{"type":"timestamp"},
"PutImageRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -732,7 +801,8 @@
"repositoryArn":{"shape":"Arn"},
"registryId":{"shape":"RegistryId"},
"repositoryName":{"shape":"RepositoryName"},
"repositoryUri":{"shape":"Url"}
"repositoryUri":{"shape":"Url"},
"createdAt":{"shape":"CreationTimestamp"}
}
},
"RepositoryAlreadyExistsException":{
Expand Down
Loading

0 comments on commit 9ffbd77

Please sign in to comment.