Skip to content

Commit 659a690

Browse files
sugmanuesyall
andauthored
Bump codegen version to 0.21.0 (#1286)
* Bump codegen version to 0.21.0 * Update CHANGELOG.md Co-authored-by: Steven Yuan <[email protected]> * Fix the version of tests to the previously relased version --------- Co-authored-by: Steven Yuan <[email protected]>
1 parent 128d35f commit 659a690

File tree

4 files changed

+26
-5
lines changed

4 files changed

+26
-5
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Smithy Typescript Codegen Changelog
22

3+
## 0.21.0 (2024-05-22)
4+
5+
### Breaking Changes
6+
7+
- Update Engines to Node.js 16, Node.js 14 is not officialy supported anymore ([#1258](https://github.com/smithy-lang/smithy-typescript/pull/1258))
8+
9+
### Features
10+
11+
- Bumped TypeScript to ~5.2.x in smithy JS packages ([#1275](https://github.com/smithy-lang/smithy-typescript/pull/1275))
12+
- `@smithy/fetch-http-handler`, `@smithy/node-http-handler`: Improveed stream collection performance ([#1272](https://github.com/smithy-lang/smithy-typescript/pull/1272))
13+
- Improved support for fetch and web-streams in Node.js ([#1256](https://github.com/smithy-lang/smithy-typescript/pull/1256))
14+
- `@smithy/node-http-handler`, `"@smithy/util-stream`: Handle web streams in streamCollector and sdkStreamMixin
15+
- Added service client doc generator only when typedoc is selected ([#1253](https://github.com/smithy-lang/smithy-typescript/pull/1253))
16+
17+
### Bug Fixes
18+
19+
- `@smithy/types`: Fixed type transforms account for no-args operation methods ([#1262](https://github.com/smithy-lang/smithy-typescript/pull/1262))
20+
- Check dependencies when adding imports ([#1239](https://github.com/smithy-lang/smithy-typescript/pull/1239))
21+
- Fixed typo in `HttpResponse` docs ([#958](https://github.com/smithy-lang/smithy-typescript/pull/958))
22+
- Fixed URI escape path ([#1224](https://github.com/smithy-lang/smithy-typescript/pull/1224)) ([#1226](https://github.com/smithy-lang/smithy-typescript/pull/1226))
23+
324
## 0.20.1 (2024-04-05)
425

526
### Features

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ To add a minimal `typescript-client-codegen` plugin, add the following to `smith
4747
// Add the Smithy TypeScript code generator dependency
4848
"maven": {
4949
"dependencies": [
50-
"software.amazon.smithy.typescript:smithy-typescript-codegen:0.20.1"
50+
"software.amazon.smithy.typescript:smithy-typescript-codegen:0.21.0"
5151
]
5252
},
5353
"plugins": {
@@ -141,7 +141,7 @@ dependencies {
141141
smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion")
142142

143143
// Add the Smithy TypeScript code generator dependency
144-
implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.20.1")
144+
implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.21.0")
145145

146146
// Uncomment below to add various smithy dependencies (see full list of smithy dependencies in https://github.com/awslabs/smithy)
147147
// implementation("software.amazon.smithy:smithy-model:$smithyVersion")

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ plugins {
2828

2929
allprojects {
3030
group = "software.amazon.smithy.typescript"
31-
version = "0.20.1"
31+
version = "0.21.0"
3232
}
3333

3434
// The root project doesn't produce a JAR.

smithy-typescript-codegen-test/released-version-test/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ repositories {
1515
dependencies {
1616
val smithyVersion: String by project
1717

18-
smithyBuild("software.amazon.smithy.typescript:smithy-typescript-codegen:0.+")
19-
smithyBuild("software.amazon.smithy.typescript:smithy-aws-typescript-codegen:0.+")
18+
smithyBuild("software.amazon.smithy.typescript:smithy-typescript-codegen:0.20.1!!")
19+
smithyBuild("software.amazon.smithy.typescript:smithy-aws-typescript-codegen:0.20.1!!")
2020
smithyBuild(project(":smithy-typescript-codegen-test:example-weather-customizations"))
2121

2222
// Explicitly configure for CLI version

0 commit comments

Comments
 (0)