diff --git a/codegen/CHANGELOG.md b/codegen/CHANGELOG.md index 95d650575bc5..df8aa86d6164 100644 --- a/codegen/CHANGELOG.md +++ b/codegen/CHANGELOG.md @@ -1,5 +1,13 @@ # Smithy AWS Typescript Codegen Changelog +## 0.29.1 (2025-04-24) + +## Features +- Upgraded to smithy-typescript 0.29.1 ([Release Notes](https://github.com/smithy-lang/smithy-typescript/blob/main/CHANGELOG.md#0291-2025-04-24)) + +## Bug Fixes +- Removed host prefix behaviour for S3 and S3Control ([#7025](https://github.com/aws/aws-sdk-js-v3/pull/7025)) + ## 0.29.0 (2025-04-11) ## Features diff --git a/codegen/build.gradle.kts b/codegen/build.gradle.kts index cf71f632e423..c1dc5b393811 100644 --- a/codegen/build.gradle.kts +++ b/codegen/build.gradle.kts @@ -31,7 +31,7 @@ allprojects { mavenCentral() } group = "software.amazon.smithy.typescript" - version = "0.29.0" + version = "0.29.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 8c47e25396ab..0017586c3b94 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.29.0") + api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.29.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 839cb2eb9fe6..8e8d54170cb0 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: "47e23f6185502c4148acc84a24eb048bbf25cd90", + SMITHY_TS_COMMIT: "7af8ef9daa0f7f6525dbd5039d166e716fdc2b52", }; if (module.exports.SMITHY_TS_COMMIT.length < 40) {