Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Smithy AWS Typescript Codegen Changelog

## 0.37.0 (2025-11-04)

### Features
- Upgraded to smithy-typescript 0.37.0 ([Release Notes](https://github.com/smithy-lang/smithy-typescript/blob/main/CHANGELOG.md#0361-2025-11-04))
- Upgraded smithy version to 1.63.0 ([#7474](https://github.com/aws/aws-sdk-js-v3/pull/7474))

### Bug Fixes
- Applied reserved word escaping to union shape in Json serializer ([#7419](https://github.com/aws/aws-sdk-js-v3/pull/7419))

## 0.36.1 (2025-10-06)

### Features
Expand Down
2 changes: 1 addition & 1 deletion codegen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ allprojects {
mavenCentral()
}
group = "software.amazon.smithy.typescript"
version = "0.36.1"
version = "0.37.0"
}

// The root project doesn't produce a JAR.
Expand Down
2 changes: 1 addition & 1 deletion codegen/smithy-aws-typescript-codegen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ buildscript {

dependencies {
// Smithy TypeScript
api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.36.1")
api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.37.0")

// Smithy generic dependencies
api("software.amazon.smithy:smithy-model:$smithyVersion")
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate-clients/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = {
// Use full commit hash as we explicitly fetch it.
// Comparison link (update with previous hash):
// https://github.com/smithy-lang/smithy-typescript/compare/56a65e69af8a8b7a814a92af716009cabe4b0b42...472a5ea035237e10c560ed362c0e0105805ad26f
SMITHY_TS_COMMIT: "3078a958f1ce563503963eb9492c83610fe1cef5",
SMITHY_TS_COMMIT: "8aef84bd27a0bb995ef908239e7bb7c6c3a37435",
};

if (module.exports.SMITHY_TS_COMMIT.length < 40) {
Expand Down
Loading