Skip to content

Commit 1308a1e

Browse files
authored
Bump codegen version to 0.31.1 (#1630)
1 parent fdea2d7 commit 1308a1e

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

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

3+
## 0.31.1 (2025-06-23)
4+
5+
### Bug Fixes
6+
- use undefined placeholder for unhandled trait ([#1629](https://github.com/smithy-lang/smithy-typescript/pull/1629))
7+
- Added EndpointRequired config resolver to replace CustomEndpoint ([#1628](https://github.com/smithy-lang/smithy-typescript/pull/1628))
8+
- Corrected criteria for event stream member detection ([#1624](https://github.com/smithy-lang/smithy-typescript/pull/1624))
9+
- Located event stream member more carefully ([#1623](https://github.com/smithy-lang/smithy-typescript/pull/1623))
10+
11+
### Chores
12+
- Omitting the endpoint polymorphs from resolved config types ([#1626](https://github.com/smithy-lang/smithy-typescript/pull/1626))
13+
- Allowed protocol generators to declare error aliases ([#1622](https://github.com/smithy-lang/smithy-typescript/pull/1622))
14+
- Allowed endpoint params to be explicitly undefined if not required ([#1618](https://github.com/smithy-lang/smithy-typescript/pull/1618))
15+
316
## 0.31.0 (2025-06-09)
417

518
## Features

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To add a minimal `typescript-client-codegen` plugin, add the following to `smith
4646
"sources": ["models"],
4747
// Add the Smithy TypeScript code generator dependency
4848
"maven": {
49-
"dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.31.0"]
49+
"dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.31.1"]
5050
},
5151
"plugins": {
5252
// Add the Smithy TypeScript client plugin
@@ -139,7 +139,7 @@ dependencies {
139139
smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion")
140140

141141
// Add the Smithy TypeScript code generator dependency
142-
implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.31.0")
142+
implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.31.1")
143143

144144
// Uncomment below to add various smithy dependencies (see full list of smithy dependencies in https://github.com/awslabs/smithy)
145145
// 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.31.0"
31+
version = "0.31.1"
3232
}
3333

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

0 commit comments

Comments
 (0)