From c2e6d6ba245692fb9da1336749a1140b0ec15826 Mon Sep 17 00:00:00 2001 From: Miles Ziemer Date: Wed, 27 Mar 2024 14:23:44 -0400 Subject: [PATCH 1/2] chore(codegen): bump version to 0.20.0 --- codegen/CHANGELOG.md | 12 ++++++++++++ codegen/build.gradle.kts | 2 +- .../smithy-aws-typescript-codegen/build.gradle.kts | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/codegen/CHANGELOG.md b/codegen/CHANGELOG.md index ea353356c6a92..26fa153d6e72f 100644 --- a/codegen/CHANGELOG.md +++ b/codegen/CHANGELOG.md @@ -1,5 +1,17 @@ # Smithy AWS Typescript Codegen Changelog +## 0.20.0 (2024-03-27) + +### Features +* 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)) +* Reduced generated code size for all clients with library serde helpers ([#5855](https://github.com/aws/aws-sdk-js-v3/pull/5855)) +* Implemented lazy-loading of STS & SSO clients in credential providers ([#5681](https://github.com/aws/aws-sdk-js-v3/pull/5681)) + +### Bug Fixes +* 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)) +* Fixed an issue where the `_json` deser function wouldn't be imported ([#5837](https://github.com/aws/aws-sdk-js-v3/pull/5837)) +* 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)) + ## 0.19.0 (2023-11-03) ### Features diff --git a/codegen/build.gradle.kts b/codegen/build.gradle.kts index 42cf1ec60c643..1850284d660cd 100644 --- a/codegen/build.gradle.kts +++ b/codegen/build.gradle.kts @@ -31,7 +31,7 @@ allprojects { mavenCentral() } group = "software.amazon.smithy.typescript" - version = "0.19.0" + version = "0.20.0" } // The root project doesn't produce a JAR. diff --git a/codegen/smithy-aws-typescript-codegen/build.gradle.kts b/codegen/smithy-aws-typescript-codegen/build.gradle.kts index 21a43823519a3..d647b432a1021 100644 --- a/codegen/smithy-aws-typescript-codegen/build.gradle.kts +++ b/codegen/smithy-aws-typescript-codegen/build.gradle.kts @@ -43,7 +43,7 @@ dependencies { api("software.amazon.smithy:smithy-protocol-test-traits:$smithyVersion") api("software.amazon.smithy:smithy-model:$smithyVersion") api("software.amazon.smithy:smithy-rules-engine:$smithyVersion") - api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.19.0") + api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.20.0") } tasks.register("set-aws-sdk-versions") { From 3848a8daf2c879fcbc261bdabb94f930b25823e6 Mon Sep 17 00:00:00 2001 From: Miles Ziemer Date: Wed, 27 Mar 2024 15:56:01 -0400 Subject: [PATCH 2/2] chore(codegen): update smithy-typescript commit --- scripts/generate-clients/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-clients/config.js b/scripts/generate-clients/config.js index e412ef63a3bc8..434e4f99fa84d 100644 --- a/scripts/generate-clients/config.js +++ b/scripts/generate-clients/config.js @@ -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: "47555d30d155f4b6d6966c2dfe28740d18e5b5a1", + SMITHY_TS_COMMIT: "66f2b660e6b1dfc40699772a51778086495fd2cf", }; if (module.exports.SMITHY_TS_COMMIT.length < 40) {