From 2ea62e8c785dec97d37e8c7aedbdebcf1c33620c Mon Sep 17 00:00:00 2001 From: smilkuri Date: Mon, 13 Jul 2026 22:07:07 +0000 Subject: [PATCH] Revert "chore(codegen): bump codegen version to 0.51.0 (#2144)" This reverts commit 6becc8717266e52c5c5a044894db36645553c0a9. --- CHANGELOG.md | 18 ------------------ README.md | 4 ++-- build.gradle.kts | 2 +- 3 files changed, 3 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b1e5b14cd4..f99b7d06d5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,24 +2,6 @@ [Commit logs](https://github.com/smithy-lang/smithy-typescript/commits/main/smithy-typescript-codegen) -## 0.51.0 (2026-07-13) - -### Features - -- Made tsconfig.types.json `isolatedModules` configurable for clients ([#2131](https://github.com/smithy-lang/smithy-typescript/pull/2131)) -- Generated thinner command classes ([#2115](https://github.com/smithy-lang/smithy-typescript/pull/2115)) - -### Bug Fixes - -- Corrected type interface of Command.getEndpointParameterInstructions() ([#2119](https://github.com/smithy-lang/smithy-typescript/pull/2119)) -- Added support for numeric literal values in generated function parameters ([#2061](https://github.com/smithy-lang/smithy-typescript/pull/2061)) - -### Chores - -- Updated smithyVersion to 1.72.0 ([#2128](https://github.com/smithy-lang/smithy-typescript/pull/2128)) -- Set sha256 deprecated pacakages to conditional inclusion ([#2114](https://github.com/smithy-lang/smithy-typescript/pull/2114)) -- Set checksums in shared config ([#2113](https://github.com/smithy-lang/smithy-typescript/pull/2113)) - ## 0.50.0 (2026-05-29) ### Bug Fixes diff --git a/README.md b/README.md index e1a00d6d6eb..5fe5ac9f0a0 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ To add a minimal `typescript-client-codegen` plugin, add the following to `smith // Add the Smithy TypeScript code generator dependency "maven": { "dependencies": [ - "software.amazon.smithy.typescript:smithy-typescript-codegen:0.51.0" + "software.amazon.smithy.typescript:smithy-typescript-codegen:0.50.0" ] }, "plugins": { @@ -165,7 +165,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.51.0") + implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.50.0") // 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 0a8778fb658..20571870701 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -22,7 +22,7 @@ plugins { allprojects { group = "software.amazon.smithy.typescript" - version = "0.51.0" + version = "0.50.0" } // The root project doesn't produce a JAR.