From b8d0148015326752296510817b806741bfd3e32e Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Wed, 10 Sep 2025 00:18:13 +0000 Subject: [PATCH 1/2] Bump codegen version to 0.34.1 --- CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- build.gradle.kts | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e74a50d18d..ed1d407e8eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Smithy Typescript Codegen Changelog +## 0.34.1 (2025-09-10) + +### Bug Fixes + +- Refactored http binding and cbor serializer ([#1659](https://github.com/smithy-lang/smithy-typescript/pull/1659)) +- Added bucketing system to generate schema objects into separate files ([#1672](https://github.com/smithy-lang/smithy-typescript/pull/1672)) +- Fixed event stream serialization when the `@eventStreamPayload` member is a string ([#1674](https://github.com/smithy-lang/smithy-typescript/pull/1674)) + ## 0.34.0 (2025-07-30) ### Features diff --git a/README.md b/README.md index 49080d1395f..9b4b715aec5 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ To add a minimal `typescript-client-codegen` plugin, add the following to `smith "sources": ["models"], // Add the Smithy TypeScript code generator dependency "maven": { - "dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.34.0"] + "dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.34.1"] }, "plugins": { // Add the Smithy TypeScript client plugin @@ -139,7 +139,7 @@ dependencies { smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion") // Add the Smithy TypeScript code generator dependency - implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.34.0") + implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.34.1") // Uncomment below to add various smithy dependencies (see full list of smithy dependencies in https://github.com/awslabs/smithy) // implementation("software.amazon.smithy:smithy-model:$smithyVersion") diff --git a/build.gradle.kts b/build.gradle.kts index d856527e849..dc2e7bf486b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -28,7 +28,7 @@ plugins { allprojects { group = "software.amazon.smithy.typescript" - version = "0.34.0" + version = "0.34.1" } // The root project doesn't produce a JAR. From 1f26c34da6e6349eeaef7d5711eb06be545d115f Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Tue, 9 Sep 2025 17:25:01 -0700 Subject: [PATCH 2/2] chore: remove mentions of schema serde from release notes --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed1d407e8eb..530cf1c5b48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,6 @@ ### Bug Fixes -- Refactored http binding and cbor serializer ([#1659](https://github.com/smithy-lang/smithy-typescript/pull/1659)) -- Added bucketing system to generate schema objects into separate files ([#1672](https://github.com/smithy-lang/smithy-typescript/pull/1672)) - Fixed event stream serialization when the `@eventStreamPayload` member is a string ([#1674](https://github.com/smithy-lang/smithy-typescript/pull/1674)) ## 0.34.0 (2025-07-30)