Skip to content

Commit

Permalink
Release v1.43.4 (2022-02-22) (#4289)
Browse files Browse the repository at this point in the history
Release v1.43.4 (2022-02-22)
===

### Service Client Updates
* `service/apprunner`: Updates service API
* `service/translate`: Updates service API and documentation
* `service/wafv2`: Updates service documentation

### SDK Bugs
* `service/lexruntimev2`: Add fix to prevent HTTP/2 event stream request hang on error with Go 1.15 through 1.17.
* `service/transcribestreamingservice`: Add fix to prevent HTTP/2 event stream request hang on error with Go 1.15 through 1.17.
  * Adds fix addressing an issue where SDK's bi-directional eventstream API operation request could hang when the HTTP/2 stream was closed by the service with a non-200 status code.
  • Loading branch information
aws-sdk-go-automation authored Feb 22, 2022
1 parent aef7eaf commit 0697fea
Show file tree
Hide file tree
Showing 12 changed files with 237 additions and 43 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Release v1.43.4 (2022-02-22)
===

### Service Client Updates
* `service/apprunner`: Updates service API
* `service/translate`: Updates service API and documentation
* `service/wafv2`: Updates service documentation

### SDK Bugs
* `service/lexruntimev2`: Add fix to prevent HTTP/2 event stream request hang on error with Go 1.15 through 1.17.
* `service/transcribestreamingservice`: Add fix to prevent HTTP/2 event stream request hang on error with Go 1.15 through 1.17.
* Adds fix addressing an issue where SDK's bi-directional eventstream API operation request could hang when the HTTP/2 stream was closed by the service with a non-200 status code.

Release v1.43.3 (2022-02-21)
===

Expand Down
3 changes: 0 additions & 3 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,3 @@
### SDK Enhancements

### SDK Bugs
* `service/lexruntimev2`: Add fix to prevent HTTP/2 event stream request hang on error with Go 1.15 through 1.17.
* `service/transcribestreamingservice`: Add fix to prevent HTTP/2 event stream request hang on error with Go 1.15 through 1.17.
* Adds fix addressing an issue where SDK's bi-directional eventstream API operation request could hang when the HTTP/2 stream was closed by the service with a non-200 status code.
8 changes: 8 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.43.3"
const SDKVersion = "1.43.4"
5 changes: 4 additions & 1 deletion models/apis/apprunner/2020-05-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,10 @@
"type":"string",
"enum":[
"PYTHON_3",
"NODEJS_12"
"NODEJS_12",
"NODEJS_14",
"CORRETTO_8",
"CORRETTO_11"
]
},
"RuntimeEnvironmentVariables":{
Expand Down
8 changes: 8 additions & 0 deletions models/apis/translate/2017-07-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,13 @@
"type":"string",
"enum":["KMS"]
},
"Formality":{
"type":"string",
"enum":[
"FORMAL",
"INFORMAL"
]
},
"GetParallelDataRequest":{
"type":"structure",
"required":["Name"],
Expand Down Expand Up @@ -908,6 +915,7 @@
"TranslationSettings":{
"type":"structure",
"members":{
"Formality":{"shape":"Formality"},
"Profanity":{"shape":"Profanity"}
}
},
Expand Down
6 changes: 6 additions & 0 deletions models/apis/translate/2017-07-01/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,12 @@
"EncryptionKey$Type": "<p>The type of encryption key used by Amazon Translate to encrypt this object.</p>"
}
},
"Formality": {
"base": null,
"refs": {
"TranslationSettings$Formality": null
}
},
"GetParallelDataRequest": {
"base": null,
"refs": {
Expand Down
26 changes: 13 additions & 13 deletions models/apis/wafv2/2019-07-29/docs-2.json

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions models/endpoints/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -14783,6 +14783,12 @@
}
},
"ec2" : {
"defaults" : {
"variants" : [ {
"hostname" : "ec2.{region}.{dnsSuffix}",
"tags" : [ "fips" ]
} ]
},
"endpoints" : {
"us-gov-east-1" : {
"credentialScope" : {
Expand Down
12 changes: 12 additions & 0 deletions service/apprunner/api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions service/translate/api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0697fea

Please sign in to comment.