Skip to content

Commit

Permalink
chore(codegen): bump smithy-typescript-codegen version to 0.24 (#6530)
Browse files Browse the repository at this point in the history
  • Loading branch information
kstich authored Sep 27, 2024
1 parent cf16ea2 commit dddd164
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Smithy AWS Typescript Codegen Changelog

## 0.24.0 (2024-09-30)

### Features

* Populates and resolves flexible checksums client config values ([#6471](https://github.com/aws/aws-sdk-js-v3/pull/6471))

### Bug Fixes

* Allow empty string field values for headers ([#6511](https://github.com/aws/aws-sdk-js-v3/pull/6511))
* Fix setting the defualt signing name ([#6487](https://github.com/aws/aws-sdk-js-v3/pull/6487))
* Fix how waiters are generated using error types when using `awsQuery` ([#6501](https://github.com/aws/aws-sdk-js-v3/pull/6501))

## 0.23.0 (2024-09-10)

### 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 @@ -31,7 +31,7 @@ allprojects {
mavenCentral()
}
group = "software.amazon.smithy.typescript"
version = "0.23.0"
version = "0.24.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 @@ -36,7 +36,7 @@ buildscript {

dependencies {
// Smithy TypeScript
api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.23.0")
api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.24.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
@@ -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: "35676e0a8556a822a0d036d22f1f566869c3d48d",
SMITHY_TS_COMMIT: "41a96d4ad8961f97c71f503d1abd0189de67a172",
};

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

0 comments on commit dddd164

Please sign in to comment.