From 52bb81536e3710037245abc0b53c056b2e35156c Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Tue, 30 Sep 2025 18:57:37 +0000 Subject: [PATCH 1/3] chore(codegen): bump codegen version to 0.36.0 --- codegen/CHANGELOG.md | 12 ++++++++++-- codegen/build.gradle.kts | 2 +- .../smithy-aws-typescript-codegen/build.gradle.kts | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/codegen/CHANGELOG.md b/codegen/CHANGELOG.md index 7b1e89bdb81b0..7151637670e1d 100644 --- a/codegen/CHANGELOG.md +++ b/codegen/CHANGELOG.md @@ -1,13 +1,21 @@ # Smithy AWS Typescript Codegen Changelog +## 0.36.0 (2025-09-30) + +### Features +- Upgraded to smithy-typescript 0.36.0 ([Release Notes](https://github.com/smithy-lang/smithy-typescript/blob/main/CHANGELOG.md#0360-2025-09-18)) +- Upgraded smithy version to 1.62.0 ([#7386](https://github.com/aws/aws-sdk-js-v3/pull/7386)) +- Used DOMParser for browser XML parsing ([#7347](https://github.com/aws/aws-sdk-js-v3/pull/7347)) +- Replaced 'uuid' with '@smithy/uuid' ([#7372](https://github.com/aws/aws-sdk-js-v3/pull/7372)) + ## 0.35.0 (2025-09-18) -### Bug Fixes +### Features - Upgraded to smithy-typescript 0.35.0 ([Release Notes](https://github.com/smithy-lang/smithy-typescript/blob/main/CHANGELOG.md#0350-2025-09-18)) ## 0.34.1 (2025-09-10) -### Bug Fixes +### Features - Upgraded to smithy-typescript 0.34.1 ([Release Notes](https://github.com/smithy-lang/smithy-typescript/blob/main/CHANGELOG.md#0341-2025-09-10)) ## 0.34.0 (2025-07-30) diff --git a/codegen/build.gradle.kts b/codegen/build.gradle.kts index 143b8ae426a9b..98f93c5a9c47a 100644 --- a/codegen/build.gradle.kts +++ b/codegen/build.gradle.kts @@ -32,7 +32,7 @@ allprojects { mavenCentral() } group = "software.amazon.smithy.typescript" - version = "0.35.0" + version = "0.36.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 9d7688e3649dc..e71dd155f085d 100644 --- a/codegen/smithy-aws-typescript-codegen/build.gradle.kts +++ b/codegen/smithy-aws-typescript-codegen/build.gradle.kts @@ -36,7 +36,7 @@ buildscript { dependencies { // Smithy TypeScript - api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.35.0") + api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.36.0") // Smithy generic dependencies api("software.amazon.smithy:smithy-model:$smithyVersion") From aed8a0ab9d43d78c497b3894c0b16f2b597880da Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Tue, 30 Sep 2025 19:54:47 +0000 Subject: [PATCH 2/3] chore(codegen): bump 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 5e6614ae7528e..387a1d94973fb 100644 --- a/scripts/generate-clients/config.js +++ b/scripts/generate-clients/config.js @@ -1,7 +1,7 @@ // Update this commit when taking up new changes from smithy-typescript. module.exports = { // Use full commit hash as we explicitly fetch it. - SMITHY_TS_COMMIT: "b20705ddfc05e7eba3fc3669888f576622474e9c", + SMITHY_TS_COMMIT: "43bec3331c9b9e5e00ce3a8113fea58fba8c59d7", }; if (module.exports.SMITHY_TS_COMMIT.length < 40) { From b1f092089d21612ba0bfaaf7ae4a31d44459067e Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Tue, 30 Sep 2025 12:56:32 -0700 Subject: [PATCH 3/3] docs: fix release notes link --- codegen/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/CHANGELOG.md b/codegen/CHANGELOG.md index 7151637670e1d..98ca48ed23a13 100644 --- a/codegen/CHANGELOG.md +++ b/codegen/CHANGELOG.md @@ -3,7 +3,7 @@ ## 0.36.0 (2025-09-30) ### Features -- Upgraded to smithy-typescript 0.36.0 ([Release Notes](https://github.com/smithy-lang/smithy-typescript/blob/main/CHANGELOG.md#0360-2025-09-18)) +- Upgraded to smithy-typescript 0.36.0 ([Release Notes](https://github.com/smithy-lang/smithy-typescript/blob/main/CHANGELOG.md#0360-2025-09-30)) - Upgraded smithy version to 1.62.0 ([#7386](https://github.com/aws/aws-sdk-js-v3/pull/7386)) - Used DOMParser for browser XML parsing ([#7347](https://github.com/aws/aws-sdk-js-v3/pull/7347)) - Replaced 'uuid' with '@smithy/uuid' ([#7372](https://github.com/aws/aws-sdk-js-v3/pull/7372))