Skip to content

Commit

Permalink
chore(codegen): bump version to 0.20.0 (#5942)
Browse files Browse the repository at this point in the history
  • Loading branch information
milesziemer committed Mar 27, 2024
1 parent bff1afc commit 81bf8d8
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
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion codegen/build.gradle.kts
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion codegen/smithy-aws-typescript-codegen/build.gradle.kts
Expand Up @@ -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") {
Expand Down
2 changes: 1 addition & 1 deletion 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) {
Expand Down

0 comments on commit 81bf8d8

Please sign in to comment.