Skip to content

Commit 0561953

Browse files
authored
chore(codegen): bump codegen version to 0.31.1 (#7145)
1 parent 84d55cf commit 0561953

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

codegen/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Smithy AWS Typescript Codegen Changelog
22

3+
## 0.31.1 (2025-06-23)
4+
5+
## Features
6+
- Upgraded to smithy-typescript 0.31.1 ([Release Notes](https://github.com/smithy-lang/smithy-typescript/blob/main/CHANGELOG.md#0311-2025-06-23))
7+
8+
## Bug Fixes
9+
- Updated codegen for endpoint configuration, event streams, and error classification ([#7143](https://github.com/aws/aws-sdk-js-v3/pull/7143))
10+
- Fixed awsQueryCompat error structure for backwards compatibility ([#7133](https://github.com/aws/aws-sdk-js-v3/pull/7133))
11+
- Allowed explicit undefined in EndpointParameters ([#7131](https://github.com/aws/aws-sdk-js-v3/pull/7131))
12+
313
## 0.31.0 (2025-06-09)
414

515
## Features

codegen/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131
mavenCentral()
3232
}
3333
group = "software.amazon.smithy.typescript"
34-
version = "0.31.0"
34+
version = "0.31.1"
3535
}
3636

3737
// The root project doesn't produce a JAR.

codegen/smithy-aws-typescript-codegen/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ buildscript {
3636

3737
dependencies {
3838
// Smithy TypeScript
39-
api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.31.0")
39+
api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.31.1")
4040

4141
// Smithy generic dependencies
4242
api("software.amazon.smithy:smithy-model:$smithyVersion")

scripts/generate-clients/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Update this commit when taking up new changes from smithy-typescript.
22
module.exports = {
33
// Use full commit hash as we explicitly fetch it.
4-
SMITHY_TS_COMMIT: "fdea2d734272ff38904dc4e37c8656e8b60bc9ca",
4+
SMITHY_TS_COMMIT: "1308a1e047fffd2cfd99bcdf72c9cc2f4871ce1a",
55
};
66

77
if (module.exports.SMITHY_TS_COMMIT.length < 40) {

0 commit comments

Comments
 (0)