diff --git a/codegen/CHANGELOG.md b/codegen/CHANGELOG.md index 7b1e89bdb81b..98ca48ed23a1 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-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)) + ## 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 143b8ae426a9..98f93c5a9c47 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 9d7688e3649d..e71dd155f085 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") diff --git a/scripts/generate-clients/config.js b/scripts/generate-clients/config.js index 5e6614ae7528..387a1d94973f 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) {