Skip to content

Commit 81bf8d8

Browse files
authored
chore(codegen): bump version to 0.20.0 (#5942)
1 parent bff1afc commit 81bf8d8

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.20.0 (2024-03-27)
4+
5+
### Features
6+
* Reduced code size for xml serde ([#5568](https://github.com/aws/aws-sdk-js-v3/pull/5568), [#5566](https://github.com/aws/aws-sdk-js-v3/pull/5566))
7+
* Reduced generated code size for all clients with library serde helpers ([#5855](https://github.com/aws/aws-sdk-js-v3/pull/5855))
8+
* Implemented lazy-loading of STS & SSO clients in credential providers ([#5681](https://github.com/aws/aws-sdk-js-v3/pull/5681))
9+
10+
### Bug Fixes
11+
* Fixed an issue that could cause endpoint augmentations not to be applied in certain cases ([#5933](https://github.com/aws/aws-sdk-js-v3/pull/5933))
12+
* Fixed an issue where the `_json` deser function wouldn't be imported ([#5837](https://github.com/aws/aws-sdk-js-v3/pull/5837))
13+
* Added string fallback for S3 responses that contain the `Expires` timestamp instead of throwing an exception ([#5715](https://github.com/aws/aws-sdk-js-v3/pull/5715))
14+
315
## 0.19.0 (2023-11-03)
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.19.0"
34+
version = "0.20.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
@@ -43,7 +43,7 @@ dependencies {
4343
api("software.amazon.smithy:smithy-protocol-test-traits:$smithyVersion")
4444
api("software.amazon.smithy:smithy-model:$smithyVersion")
4545
api("software.amazon.smithy:smithy-rules-engine:$smithyVersion")
46-
api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.19.0")
46+
api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.20.0")
4747
}
4848

4949
tasks.register("set-aws-sdk-versions") {

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: "47555d30d155f4b6d6966c2dfe28740d18e5b5a1",
4+
SMITHY_TS_COMMIT: "66f2b660e6b1dfc40699772a51778086495fd2cf",
55
};
66

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

0 commit comments

Comments
 (0)