Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Smithy AWS Typescript Codegen Changelog

## 0.6.0 (2021-09-02)

### Features

* Added support for malformed request tests. ([#2695](https://github.com/aws/aws-sdk-js-v3/pull/2695))
* Made endpoints resolution modular. ([#2704](https://github.com/aws/aws-sdk-js-v3/pull/2704))
* Updated number parsing to be stricter. ([#2662](https://github.com/aws/aws-sdk-js-v3/pull/2662), [#2719](https://github.com/aws/aws-sdk-js-v3/pull/2719))
* Reintroduced CORS retry headers for supported services. ([#2658](https://github.com/aws/aws-sdk-js-v3/pull/2658))

### Bug Fixes

* Fixed double encoding of presigned url. ([#2711](https://github.com/aws/aws-sdk-js-v3/pull/2711))
* Only trim xml tag values which contain newline. ([#2653](https://github.com/aws/aws-sdk-js-v3/pull/2653))

### Other

* Updated `smithy-typescript-codegen` dependency to `0.6.0`.
* Updated `smithy` dependencies to `1.11.x`.

## 0.5.0 (2021-07-23)

### Features
Expand Down
2 changes: 1 addition & 1 deletion codegen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ allprojects {
mavenCentral()
}
group = "software.amazon.smithy.typescript"
version = "0.5.0"
version = "0.6.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
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
api("software.amazon.smithy:smithy-waiters:[1.11.0, 1.12.0[")
api("software.amazon.smithy:smithy-aws-iam-traits:[1.11.0, 1.12.0[")
api("software.amazon.smithy:smithy-protocol-test-traits:[1.11.0, 1.12.0[")
api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.5.0")
api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.6.0")
}

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