Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Revert "feat(codegen): bump codegen version to 0.15.0 (#4678)… #4715

Merged
merged 1 commit into from May 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 19 additions & 0 deletions codegen/CHANGELOG.md
@@ -1,5 +1,24 @@
# Smithy AWS Typescript Codegen Changelog

## 0.15.0 (2023-05-10)

### Features

* Add Gradle composite build ([#4710](https://github.com/aws/aws-sdk-js-v3/pull/4710))
* Add factory for aggregated clients ([#4639](https://github.com/aws/aws-sdk-js-v3/pull/4639))
* Shorten serde code in protocols files ([#4625](https://github.com/aws/aws-sdk-js-v3/pull/4625), [#4714](https://github.com/aws/aws-sdk-js-v3/pull/4714))
* Reduce generated HTTP request header code ([#4594](https://github.com/aws/aws-sdk-js-v3/pull/4594))
* Add client api-extraction ([#4567](https://github.com/aws/aws-sdk-js-v3/pull/4567))
* Reduce XML deserialization code size ([#4565](https://github.com/aws/aws-sdk-js-v3/pull/4565))
* Add operations list to client README files ([#4478](https://github.com/aws/aws-sdk-js-v3/pull/4478))
* Use generic client runtime config ([#4427](https://github.com/aws/aws-sdk-js-v3/pull/4427))

### Bug Fixes

* Fix jsonName deserialization on complex shapes ([#4670](https://github.com/aws/aws-sdk-js-v3/pull/4670))
* Fix allowing idempotency token ([#4642](https://github.com/aws/aws-sdk-js-v3/pull/4642))
* Fix missing dashes in client README files ([#4480](https://github.com/aws/aws-sdk-js-v3/pull/4480))

## 0.14.0 (2023-02-09)

## 0.13.0 (2023-01-31)
Expand Down
2 changes: 1 addition & 1 deletion codegen/build.gradle.kts
Expand Up @@ -28,7 +28,7 @@ allprojects {
mavenCentral()
}
group = "software.amazon.smithy.typescript"
version = "0.14.0"
version = "0.15.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 @@ -42,7 +42,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.14.0")
api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.15.0")
}

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