From 51c4875937d7b84e9ce10114fc5d650c208486e5 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Tue, 4 Nov 2025 22:09:31 +0000 Subject: [PATCH 1/2] chore(codegen): bump codegen version to 0.37.0 --- codegen/CHANGELOG.md | 9 +++++++++ codegen/build.gradle.kts | 2 +- codegen/smithy-aws-typescript-codegen/build.gradle.kts | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/codegen/CHANGELOG.md b/codegen/CHANGELOG.md index 38d4469d3ea7..01069a266bb9 100644 --- a/codegen/CHANGELOG.md +++ b/codegen/CHANGELOG.md @@ -1,5 +1,14 @@ # Smithy AWS Typescript Codegen Changelog +## 0.37.0 (2025-11-04) + +### Features +- Upgraded to smithy-typescript 0.37.0 ([Release Notes](https://github.com/smithy-lang/smithy-typescript/blob/main/CHANGELOG.md#0361-2025-11-04)) +- Upgraded smithy version to 1.63.0 ([#7474](https://github.com/aws/aws-sdk-js-v3/pull/7474)) + +### Bug Fixes +- Applied reserved word escaping to union shape in Json serializer ([#7419](https://github.com/aws/aws-sdk-js-v3/pull/7419)) + ## 0.36.1 (2025-10-06) ### Features diff --git a/codegen/build.gradle.kts b/codegen/build.gradle.kts index 99f46981fdc4..4fd84b139fd3 100644 --- a/codegen/build.gradle.kts +++ b/codegen/build.gradle.kts @@ -32,7 +32,7 @@ allprojects { mavenCentral() } group = "software.amazon.smithy.typescript" - version = "0.36.1" + version = "0.37.0" } // The root project doesn't produce a JAR. diff --git a/codegen/smithy-aws-typescript-codegen/build.gradle.kts b/codegen/smithy-aws-typescript-codegen/build.gradle.kts index 4ea126d34042..8fc3473b4fcc 100644 --- a/codegen/smithy-aws-typescript-codegen/build.gradle.kts +++ b/codegen/smithy-aws-typescript-codegen/build.gradle.kts @@ -43,7 +43,7 @@ buildscript { dependencies { // Smithy TypeScript - api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.36.1") + api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.37.0") // Smithy generic dependencies api("software.amazon.smithy:smithy-model:$smithyVersion") From 31bb76cc47b8cc9314f502faca066a07bfb9cf14 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Wed, 5 Nov 2025 00:23:50 +0000 Subject: [PATCH 2/2] chore(codegen): update smithy-ts commit --- scripts/generate-clients/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-clients/config.js b/scripts/generate-clients/config.js index e885f82fca65..43c8fae1e231 100644 --- a/scripts/generate-clients/config.js +++ b/scripts/generate-clients/config.js @@ -3,7 +3,7 @@ module.exports = { // Use full commit hash as we explicitly fetch it. // Comparison link (update with previous hash): // https://github.com/smithy-lang/smithy-typescript/compare/56a65e69af8a8b7a814a92af716009cabe4b0b42...472a5ea035237e10c560ed362c0e0105805ad26f - SMITHY_TS_COMMIT: "3078a958f1ce563503963eb9492c83610fe1cef5", + SMITHY_TS_COMMIT: "8aef84bd27a0bb995ef908239e7bb7c6c3a37435", }; if (module.exports.SMITHY_TS_COMMIT.length < 40) {