diff --git a/codegen/CHANGELOG.md b/codegen/CHANGELOG.md index 98ca48ed23a1..38d4469d3ea7 100644 --- a/codegen/CHANGELOG.md +++ b/codegen/CHANGELOG.md @@ -1,5 +1,13 @@ # Smithy AWS Typescript Codegen Changelog +## 0.36.1 (2025-10-06) + +### Features +- Upgraded to smithy-typescript 0.36.1 ([Release Notes](https://github.com/smithy-lang/smithy-typescript/blob/main/CHANGELOG.md#0361-2025-10-06)) + +### Chores +- Removed usage of deprecated APIs ([#7395](https://github.com/aws/aws-sdk-js-v3/pull/7395)) + ## 0.36.0 (2025-09-30) ### Features diff --git a/codegen/build.gradle.kts b/codegen/build.gradle.kts index 98f93c5a9c47..413bb6dd35c4 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.0" + version = "0.36.1" } // 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 119b44f04026..4ea126d34042 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.0") + api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.36.1") // 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 4c78b07354cd..3e391ab36b6f 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: "ce9a4b2a0af870a8eb08b977a429f001caf397b9", + SMITHY_TS_COMMIT: "e0a328080578a96cef153014c881f786d1aaded2", }; if (module.exports.SMITHY_TS_COMMIT.length < 40) {