Skip to content

Commit fc056f7

Browse files
authored
Bump codegen version to 0.23 (#1393)
1 parent 3a0bf5d commit fc056f7

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

CHANGELOG.md

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

3+
## 0.23.0 (2024-09-09)
4+
5+
### Features
6+
7+
- codegen: Added Smithy RPCv2 CBOR protocol generator ([#1280](https://github.com/smithy-lang/smithy-typescript/pull/1280))
8+
9+
- codegen: Added support for string array parameters in endpoints ([#1376](https://github.com/smithy-lang/smithy-typescript/pull/1376))
10+
11+
- codegen: Added support for operation context params in endpoints ([#1379](https://github.com/smithy-lang/smithy-typescript/pull/1379))
12+
13+
### Bug Fixes
14+
15+
- Added logic to resolve the service specific endpoint once per client instance instead of for each request ([#1382](https://github.com/smithy-lang/smithy-typescript/pull/1382))
16+
17+
- Fixed a bug that prevented a concrete client type (e.g., `S3Client`) to be converted to a `NodeJsClient` ([#1389](https://github.com/smithy-lang/smithy-typescript/pull/1389))
18+
19+
20+
### Documentation
21+
322
## 0.22.0 (2024-08-06)
423

524
### 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.22.0"
50+
"software.amazon.smithy.typescript:smithy-typescript-codegen:0.23.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.22.0")
144+
implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.23.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.22.0"
31+
version = "0.23.0"
3232
}
3333

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

0 commit comments

Comments
 (0)