Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit 1ac2b06

Browse files
Merge pull request #2753 from aws/release
Release v1.23.0
2 parents 2a80185 + b19b077 commit 1ac2b06

File tree

13 files changed

+127
-911
lines changed

13 files changed

+127
-911
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
Release v1.23.0 (2019-08-13)
2+
===
3+
4+
### Service Client Updates
5+
* `service/appsync`: Updates service API and documentation
6+
* `aws/endpoints`: Updated Regions and Endpoints metadata.
7+
8+
### SDK Features
9+
* SDK code generation will no longer remove stutter from operations and type names in service API packages. New API operations and types will not have the service's name removed from them. The SDK was previously squashing API types if removing stutter from a type resulted in a name of a type that already existed. The existing type would be deleted. Only the renamed type remained. This has been fixed, and previously deleted types are now available.
10+
* `AWS Glue`'s `GlueTable` with `Table`. The API's previously deleted `Table` is available as `TableData`.
11+
* `AWS IoT Events`'s `IotEventsAction` with `Action`. The previously deleted `Action` is available as `ActionData`.
12+
13+
### SDK Bugs
14+
* `private/model/api`: Fix broken shape stutter rename during generation ([#2747](https://github.com/aws/aws-sdk-go/pull/2747))
15+
* Fixes the SDK's code generation incorrectly renaming types and operations. The code generation would incorrectly rename an API type by removing the service's name from the type's name. This was done without checking for if a type with the new name already existed. Causing the SDK to replace the existing type with the renamed one.
16+
* Fixes [#2741](https://github.com/aws/aws-sdk-go/issues/2741)
17+
* `private/model/api`: Fix API doc being generated with wrong value ([#2748](https://github.com/aws/aws-sdk-go/pull/2748))
18+
* Fixes the SDK's generated API documentation for structure member being generated with the wrong documentation value when the member was included multiple times in the model doc-2.json file, but under different types.
119
Release v1.22.4 (2019-08-12)
220
===
321

CHANGELOG_PENDING.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
### SDK Features
2-
* SDK code generation will no longer remove stutter from operations and type names in service API packages. New API operations and types will not have the service's name removed from them. The SDK was previously squashing API types if removing stutter from a type resulted in a name of a type that already existed. The existing type would be deleted. Only the renamed type remained. This has been fixed, and previously deleted types are now available.
3-
* `AWS Glue`'s `GlueTable` with `Table`. The API's previously deleted `Table` is available as `TableData`.
4-
* `AWS IoT Events`'s `IotEventsAction` with `Action`. The previously deleted `Action` is available as `ActionData`.
52

63
### SDK Enhancements
74

85
### SDK Bugs
9-
* `private/model/api`: Fix broken shape stutter rename during generation ([#2747](https://github.com/aws/aws-sdk-go/pull/2747))
10-
* Fixes the SDK's code generation incorrectly renaming types and operations. The code generation would incorrectly rename an API type by removing the service's name from the type's name. This was done without checking for if a type with the new name already existed. Causing the SDK to replace the existing type with the renamed one.
11-
* Fixes [#2741](https://github.com/aws/aws-sdk-go/issues/2741)
12-
* `private/model/api`: Fix API doc being generated with wrong value ([#2748](https://github.com/aws/aws-sdk-go/pull/2748))
13-
* Fixes the SDK's generated API documentation for structure member being generated with the wrong documentation value when the member was included multiple times in the model doc-2.json file, but under different types.

aws/endpoints/defaults.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.22.4"
8+
const SDKVersion = "1.23.0"

models/apis/appsync/2017-07-25/api-2.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1559,7 +1559,8 @@
15591559
],
15601560
"members":{
15611561
"fieldLogLevel":{"shape":"FieldLogLevel"},
1562-
"cloudWatchLogsRoleArn":{"shape":"String"}
1562+
"cloudWatchLogsRoleArn":{"shape":"String"},
1563+
"excludeVerboseContent":{"shape":"Boolean"}
15631564
}
15641565
},
15651566
"Long":{"type":"long"},

models/apis/appsync/2017-07-25/docs-2.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@
130130
"Boolean": {
131131
"base": null,
132132
"refs": {
133-
"DynamodbDataSourceConfig$useCallerCredentials": "<p>Set to TRUE to use Amazon Cognito credentials with this data source.</p>"
133+
"DynamodbDataSourceConfig$useCallerCredentials": "<p>Set to TRUE to use Amazon Cognito credentials with this data source.</p>",
134+
"LogConfig$excludeVerboseContent": "<p>Set to TRUE to exclude sections that contain information such as headers, context, and evaluated mapping templates, regardless of logging level.</p>"
134135
}
135136
},
136137
"BooleanValue": {

models/endpoints/endpoints.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,7 @@
487487
"eu-west-1" : { },
488488
"eu-west-2" : { },
489489
"eu-west-3" : { },
490+
"me-south-1" : { },
490491
"sa-east-1" : { },
491492
"us-east-1" : { },
492493
"us-east-2" : { },
@@ -3107,6 +3108,7 @@
31073108
},
31083109
"storagegateway" : {
31093110
"endpoints" : {
3111+
"ap-east-1" : { },
31103112
"ap-northeast-1" : { },
31113113
"ap-northeast-2" : { },
31123114
"ap-south-1" : { },

service/apigatewayv2/api.go

Lines changed: 0 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)