Skip to content

Commit

Permalink
Release v1.39.1 (2021-07-06) (#3993)
Browse files Browse the repository at this point in the history
Release v1.39.1 (2021-07-06)
===

### Service Client Updates
* `service/eks`: Updates service API
* `service/imagebuilder`: Updates service API and documentation
* `service/lambda`: Updates service API, documentation, and examples
  * Added support for AmazonMQRabbitMQ as an event source. Added support for VIRTUAL_HOST as SourceAccessType for streams event source mappings.
* `service/macie2`: Updates service documentation
* `service/mgn`: Updates service API
* `service/sns`: Updates service documentation and paginators
  * Documentation updates for Amazon SNS.

### SDK Enhancements
* Update golang.org/x/net dependency [#3991](#3991)
    * Updates the SDK's dependency on golang.org/x/net module dependency.
  • Loading branch information
aws-sdk-go-automation authored Jul 6, 2021
1 parent 804a84f commit 228d522
Show file tree
Hide file tree
Showing 27 changed files with 1,383 additions and 2,323 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
Release v1.39.1 (2021-07-06)
===

### Service Client Updates
* `service/eks`: Updates service API
* `service/imagebuilder`: Updates service API and documentation
* `service/lambda`: Updates service API, documentation, and examples
* Added support for AmazonMQRabbitMQ as an event source. Added support for VIRTUAL_HOST as SourceAccessType for streams event source mappings.
* `service/macie2`: Updates service documentation
* `service/mgn`: Updates service API
* `service/sns`: Updates service documentation and paginators
* Documentation updates for Amazon SNS.

### SDK Enhancements
* Update golang.org/x/net dependency [#3991](https://github.com/aws/aws-sdk-go/pull/3991)
* Updates the SDK's dependency on golang.org/x/net module dependency.

Release v1.39.0 (2021-07-02)
===

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

### SDK Enhancements
* Update golang.org/x/net dependency [#3991](https://github.com/aws/aws-sdk-go/pull/3991)
* Updates the SDK's dependency on golang.org/x/net module dependency.

### SDK Bugs
7 changes: 7 additions & 0 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.39.0"
const SDKVersion = "1.39.1"
6 changes: 4 additions & 2 deletions models/apis/eks/2017-11-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,8 @@
"ClusterUnreachable",
"InsufficientNumberOfReplicas",
"ConfigurationConflict",
"AdmissionRequestDenied"
"AdmissionRequestDenied",
"UnsupportedAddonModification"
]
},
"AddonIssueList":{
Expand Down Expand Up @@ -1231,7 +1232,8 @@
"ClusterUnreachable",
"InsufficientNumberOfReplicas",
"ConfigurationConflict",
"AdmissionRequestDenied"
"AdmissionRequestDenied",
"UnsupportedAddonModification"
]
},
"ErrorDetail":{
Expand Down
87 changes: 85 additions & 2 deletions models/apis/imagebuilder/2019-12-02/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -924,6 +924,13 @@
"max":1536,
"min":1
},
"AdditionalInstanceConfiguration":{
"type":"structure",
"members":{
"systemsManagerAgent":{"shape":"SystemsManagerAgent"},
"userDataOverride":{"shape":"UserDataOverride"}
}
},
"Ami":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1012,6 +1019,7 @@
"type":{"shape":"ComponentType"},
"platform":{"shape":"Platform"},
"supportedOsVersions":{"shape":"OsVersionList"},
"parameters":{"shape":"ComponentParameterDetailList"},
"owner":{"shape":"NonEmptyString"},
"data":{"shape":"ComponentData"},
"kmsKeyId":{"shape":"NonEmptyString"},
Expand All @@ -1028,7 +1036,8 @@
"type":"structure",
"required":["componentArn"],
"members":{
"componentArn":{"shape":"ComponentVersionArnOrBuildVersionArn"}
"componentArn":{"shape":"ComponentVersionArnOrBuildVersionArn"},
"parameters":{"shape":"ComponentParameterList"}
}
},
"ComponentConfigurationList":{
Expand All @@ -1041,6 +1050,66 @@
"type":"string",
"enum":["SHELL"]
},
"ComponentParameter":{
"type":"structure",
"required":[
"name",
"value"
],
"members":{
"name":{"shape":"ComponentParameterName"},
"value":{"shape":"ComponentParameterValueList"}
}
},
"ComponentParameterDescription":{
"type":"string",
"max":1024,
"min":1,
"pattern":"[^\\x00]+"
},
"ComponentParameterDetail":{
"type":"structure",
"required":[
"name",
"type"
],
"members":{
"name":{"shape":"ComponentParameterName"},
"type":{"shape":"ComponentParameterType"},
"defaultValue":{"shape":"ComponentParameterValueList"},
"description":{"shape":"ComponentParameterDescription"}
}
},
"ComponentParameterDetailList":{
"type":"list",
"member":{"shape":"ComponentParameterDetail"}
},
"ComponentParameterList":{
"type":"list",
"member":{"shape":"ComponentParameter"},
"min":1
},
"ComponentParameterName":{
"type":"string",
"max":256,
"min":1,
"pattern":"[^\\x00]+"
},
"ComponentParameterType":{
"type":"string",
"max":20,
"min":1,
"pattern":"^String|Integer|Boolean|StringList$"
},
"ComponentParameterValue":{
"type":"string",
"min":1,
"pattern":"[^\\x00]+"
},
"ComponentParameterValueList":{
"type":"list",
"member":{"shape":"ComponentParameterValue"}
},
"ComponentSummary":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1316,6 +1385,7 @@
"blockDeviceMappings":{"shape":"InstanceBlockDeviceMappings"},
"tags":{"shape":"TagMap"},
"workingDirectory":{"shape":"NonEmptyString"},
"additionalInstanceConfiguration":{"shape":"AdditionalInstanceConfiguration"},
"clientToken":{
"shape":"ClientToken",
"idempotencyToken":true
Expand Down Expand Up @@ -1942,7 +2012,8 @@
"blockDeviceMappings":{"shape":"InstanceBlockDeviceMappings"},
"dateCreated":{"shape":"DateTime"},
"tags":{"shape":"TagMap"},
"workingDirectory":{"shape":"NonEmptyString"}
"workingDirectory":{"shape":"NonEmptyString"},
"additionalInstanceConfiguration":{"shape":"AdditionalInstanceConfiguration"}
}
},
"ImageRecipeArn":{
Expand Down Expand Up @@ -2761,6 +2832,12 @@
"type":"list",
"member":{"shape":"NonEmptyString"}
},
"SystemsManagerAgent":{
"type":"structure",
"members":{
"uninstallAfterBuild":{"shape":"NullableBoolean"}
}
},
"TagKey":{
"type":"string",
"max":128,
Expand Down Expand Up @@ -2936,6 +3013,12 @@
}
},
"Uri":{"type":"string"},
"UserDataOverride":{
"type":"string",
"max":21847,
"min":1,
"pattern":"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$"
},
"VersionNumber":{
"type":"string",
"pattern":"^[0-9]+\\.[0-9]+\\.[0-9]+$"
Expand Down
Loading

0 comments on commit 228d522

Please sign in to comment.