Skip to content

Commit dddd164

Browse files
authored
chore(codegen): bump smithy-typescript-codegen version to 0.24 (#6530)
1 parent cf16ea2 commit dddd164

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

codegen/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Smithy AWS Typescript Codegen Changelog
22

3+
## 0.24.0 (2024-09-30)
4+
5+
### Features
6+
7+
* Populates and resolves flexible checksums client config values ([#6471](https://github.com/aws/aws-sdk-js-v3/pull/6471))
8+
9+
### Bug Fixes
10+
11+
* Allow empty string field values for headers ([#6511](https://github.com/aws/aws-sdk-js-v3/pull/6511))
12+
* Fix setting the defualt signing name ([#6487](https://github.com/aws/aws-sdk-js-v3/pull/6487))
13+
* Fix how waiters are generated using error types when using `awsQuery` ([#6501](https://github.com/aws/aws-sdk-js-v3/pull/6501))
14+
315
## 0.23.0 (2024-09-10)
416

517
### Features

codegen/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131
mavenCentral()
3232
}
3333
group = "software.amazon.smithy.typescript"
34-
version = "0.23.0"
34+
version = "0.24.0"
3535
}
3636

3737
// The root project doesn't produce a JAR.

codegen/smithy-aws-typescript-codegen/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ buildscript {
3636

3737
dependencies {
3838
// Smithy TypeScript
39-
api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.23.0")
39+
api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.24.0")
4040

4141
// Smithy generic dependencies
4242
api("software.amazon.smithy:smithy-model:$smithyVersion")

scripts/generate-clients/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Update this commit when taking up new changes from smithy-typescript.
22
module.exports = {
33
// Use full commit hash as we explicitly fetch it.
4-
SMITHY_TS_COMMIT: "35676e0a8556a822a0d036d22f1f566869c3d48d",
4+
SMITHY_TS_COMMIT: "41a96d4ad8961f97c71f503d1abd0189de67a172",
55
};
66

77
if (module.exports.SMITHY_TS_COMMIT.length < 40) {

0 commit comments

Comments
 (0)