From 8e32b0a6912ced7ce5736887bc664c7f5b3b4b94 Mon Sep 17 00:00:00 2001 From: Jaykumar Gosar Date: Wed, 1 Sep 2021 11:39:48 -0700 Subject: [PATCH] Bump code generators to 0.6.0 --- CHANGELOG.md | 16 ++++++++++++++++ build.gradle.kts | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82d48fd6e73..bd389261bdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Smithy Typescript Codegen Changelog +## 0.6.0 (2021-09-02) + +### Features + +* Updated parsing of request and response payloads for Http binding protocols to be stricter. ([#405](https://github.com/awslabs/smithy-typescript/pull/405)) +* Updated number parsing to be stricter based on size. ([#397](https://github.com/awslabs/smithy-typescript/pull/397), [#404](https://github.com/awslabs/smithy-typescript/pull/404)) +* Added handling for Content-Type and Accept headers in SSDK. ([#394](https://github.com/awslabs/smithy-typescript/pull/394)) +* Added a generator for `@httpMalformedRequestTests`. ([#393](https://github.com/awslabs/smithy-typescript/pull/393)) +* Added warning for unsupported Node.js version. ([#392](https://github.com/awslabs/smithy-typescript/pull/392)) + +### Bug Fixes + +* Allowed setting prefix path for rpc protocols. ([#406](https://github.com/awslabs/smithy-typescript/pull/406)) +* Fixed SSDK codegen for different casing of operation name, by using operation symbol name consistently. ([#402](https://github.com/awslabs/smithy-typescript/pull/402)) +* Fixed processing of runtime config for generic clients. ([#401](https://github.com/awslabs/smithy-typescript/pull/401)) + ## 0.5.0 (2021-07-23) ### Features diff --git a/build.gradle.kts b/build.gradle.kts index 3bcabe3dda7..d7e83819296 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,7 +25,7 @@ plugins { allprojects { group = "software.amazon.smithy.typescript" - version = "0.5.0" + version = "0.6.0" } // The root project doesn't produce a JAR.