From 04e594f24ffe374385783933d4efcd854210c33b Mon Sep 17 00:00:00 2001 From: smilkuri Date: Mon, 6 Oct 2025 19:29:07 +0000 Subject: [PATCH 1/3] Bump codegen version to 0.36.1 --- CHANGELOG.md | 11 +++++++++++ README.md | 4 ++-- build.gradle.kts | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5efb9b47b5f..19b28cdb04a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Smithy Typescript Codegen Changelog +## 0.36.1 (2025-10-06) + +### Features + +- Allow schema-serde toggle by protocol ([#1733](https://github.com/smithy-lang/smithy-typescript/pull/1733)) + +### Bug Fixes + +- Fixed CBOR eventstream codegen ([#1731](https://github.com/smithy-lang/smithy-typescript/pull/1731)) +- Escape $ character in schema generation ([#1728](https://github.com/smithy-lang/smithy-typescript/pull/1728)) + ## 0.36.0 (2025-09-30) ### Features diff --git a/README.md b/README.md index c32e2fd3092..a80ace3a49c 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.36.0"] + "dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.36.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.36.0") + implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.36.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 0671818d0c5..43f898d767b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -28,7 +28,7 @@ plugins { allprojects { group = "software.amazon.smithy.typescript" - version = "0.36.0" + version = "0.36.1" } // The root project doesn't produce a JAR. From 5bd1ae31cfb09d3bc9f3fad14a1645df789501a5 Mon Sep 17 00:00:00 2001 From: smilkuri Date: Mon, 6 Oct 2025 20:11:48 +0000 Subject: [PATCH 2/3] update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19b28cdb04a..757ddb927ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### Features - Allow schema-serde toggle by protocol ([#1733](https://github.com/smithy-lang/smithy-typescript/pull/1733)) +- Added 'pnpm' to 'PackageManager' ([#1658](https://github.com/smithy-lang/smithy-typescript/pull/1658)) ### Bug Fixes From ef2c85fb660038f89138f280223b998c30ffd69a Mon Sep 17 00:00:00 2001 From: Sreeja Milkuri Date: Mon, 6 Oct 2025 16:40:28 -0400 Subject: [PATCH 3/3] Update CHANGELOG.md Removed two entries from the changelog for version 0.36.1. --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 757ddb927ad..b9be621de58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,11 @@ ### Features -- Allow schema-serde toggle by protocol ([#1733](https://github.com/smithy-lang/smithy-typescript/pull/1733)) - Added 'pnpm' to 'PackageManager' ([#1658](https://github.com/smithy-lang/smithy-typescript/pull/1658)) ### Bug Fixes - Fixed CBOR eventstream codegen ([#1731](https://github.com/smithy-lang/smithy-typescript/pull/1731)) -- Escape $ character in schema generation ([#1728](https://github.com/smithy-lang/smithy-typescript/pull/1728)) ## 0.36.0 (2025-09-30)