diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b025580d3a..8aa6470d053 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Smithy Typescript Codegen Changelog +## 0.15.0 (2023-05-10) + +### Features + +* Add Gradle composite build ([#761](https://github.com/awslabs/smithy-typescript/pull/761)) +* Improve generated command documentation ([#757](https://github.com/awslabs/smithy-typescript/pull/757)) +* Bump SSDK libs version to 1.0.0-alpha.10 ([#738](https://github.com/awslabs/smithy-typescript/pull/738)) +* Use aggregated client runtime generator ([#736](https://github.com/awslabs/smithy-typescript/pull/736)) +* Add SerdeElision KnowledgeIndex and serde helper function ([#735](https://github.com/awslabs/smithy-typescript/pull/735), [#759](https://github.com/awslabs/smithy-typescript/pull/759)) +* Shorten internal serde function names ([#730](https://github.com/awslabs/smithy-typescript/pull/730)) +* Reduce generated HTTP request header code ([#729](https://github.com/awslabs/smithy-typescript/pull/729)) +* Improve documentation truncation ([#728](https://github.com/awslabs/smithy-typescript/pull/728)) +* Export `enum` as `const` to reduce generated code ([#726](https://github.com/awslabs/smithy-typescript/pull/726)) +* Add structural hint to commmand examples ([#723](https://github.com/awslabs/smithy-typescript/pull/723)) +* Skip generating unused sensitive filter functions ([#722](https://github.com/awslabs/smithy-typescript/pull/722)) +* Add DefaultReadmeGenerator ([#721](https://github.com/awslabs/smithy-typescript/pull/721)) +* Add TSDocs release tags ([#719](https://github.com/awslabs/smithy-typescript/pull/719)) +* Add thrown exceptions to generated command documentation ([#715](https://github.com/awslabs/smithy-typescript/pull/715)) +* Remove internal enum values from validation message ([#713](https://github.com/awslabs/smithy-typescript/pull/713)) +* Omit aggregated client from paginators ([#712](https://github.com/awslabs/smithy-typescript/pull/712)) +* Add NodeJS runtime support to SSDK ([#703](https://github.com/awslabs/smithy-typescript/pull/703)) +* Remove reflected values from validation message ([#695](https://github.com/awslabs/smithy-typescript/pull/695)) +* Add AddClientRuntimeConfig for generic clients ([#693](https://github.com/awslabs/smithy-typescript/pull/693)) + +### Bug Fixes + +* Fix creating empty model files when chunking ([#714](https://github.com/awslabs/smithy-typescript/pull/714)) + ## 0.14.0 (2023-02-09) ### Features diff --git a/README.md b/README.md index 024ce9b5212..cf70bdf2f25 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ are as follows: mavenCentral() } dependencies { - "classpath"("software.amazon.smithy:smithy-cli:[1.27.0,1.28.0[") + "classpath"("software.amazon.smithy:smithy-cli:[1.31.1,1.32.0[") } } @@ -36,8 +36,8 @@ are as follows: } dependencies { - implementation("software.amazon.smithy:smithy-model:[1.27.0,1.28.0[") - implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.14.0") + implementation("software.amazon.smithy:smithy-model:[1.31.1,1.32.0[") + implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.15.0") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index ff3f141cc96..1920356fe30 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,7 +25,7 @@ plugins { allprojects { group = "software.amazon.smithy.typescript" - version = "0.14.0" + version = "0.15.0" } // The root project doesn't produce a JAR.