Skip to content

Commit 4cea4d8

Browse files
committed
v0.20.1
1 parent 1135271 commit 4cea4d8

File tree

12 files changed

+40
-6
lines changed

12 files changed

+40
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.20.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.0...v0.20.1) (2025-05-31)
7+
8+
### Bug Fixes
9+
10+
- array schema output order ([#329](https://github.com/mnahkies/openapi-code-generator/issues/329)) ([07fcbe7](https://github.com/mnahkies/openapi-code-generator/commit/07fcbe7c1d54aef801f64e9ab639bd2af71d6b64))
11+
- bump engines ([#337](https://github.com/mnahkies/openapi-code-generator/issues/337)) ([1135271](https://github.com/mnahkies/openapi-code-generator/commit/1135271298b77f6ad6e5a8f31501f13a8ddb56bd)), closes [#332](https://github.com/mnahkies/openapi-code-generator/issues/332)
12+
- error if route placeholder present without matching path parameter ([#331](https://github.com/mnahkies/openapi-code-generator/issues/331)) ([c4ad101](https://github.com/mnahkies/openapi-code-generator/commit/c4ad101f2088450ed124bff492dd9b7b6de472a8)), closes [#330](https://github.com/mnahkies/openapi-code-generator/issues/330)
13+
- fetch proxy compatible with node 24 ([#333](https://github.com/mnahkies/openapi-code-generator/issues/333)) ([40acade](https://github.com/mnahkies/openapi-code-generator/commit/40acade7b284ca96e4e6c8c07ceddd3117721b90))
14+
615
# [0.20.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.19.2...v0.20.0) (2025-05-05)
716

817
### Bug Fixes

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
33
"npmClient": "yarn",
4-
"version": "0.20.0",
4+
"version": "0.20.1",
55
"gitTagVersion": true
66
}

packages/openapi-code-generator/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.20.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.0...v0.20.1) (2025-05-31)
7+
8+
### Bug Fixes
9+
10+
- array schema output order ([#329](https://github.com/mnahkies/openapi-code-generator/issues/329)) ([07fcbe7](https://github.com/mnahkies/openapi-code-generator/commit/07fcbe7c1d54aef801f64e9ab639bd2af71d6b64))
11+
- error if route placeholder present without matching path parameter ([#331](https://github.com/mnahkies/openapi-code-generator/issues/331)) ([c4ad101](https://github.com/mnahkies/openapi-code-generator/commit/c4ad101f2088450ed124bff492dd9b7b6de472a8)), closes [#330](https://github.com/mnahkies/openapi-code-generator/issues/330)
12+
613
# [0.20.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.19.2...v0.20.0) (2025-05-05)
714

815
### Bug Fixes

packages/openapi-code-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nahkies/openapi-code-generator",
3-
"version": "0.20.0",
3+
"version": "0.20.1",
44
"description": "Typescript client SDK and server stub generator for OpenAPI 3 specifications",
55
"license": "MIT",
66
"author": {

packages/typescript-axios-runtime/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.20.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.0...v0.20.1) (2025-05-31)
7+
8+
**Note:** Version bump only for package @nahkies/typescript-axios-runtime
9+
610
# [0.20.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.19.2...v0.20.0) (2025-05-05)
711

812
### Bug Fixes

packages/typescript-axios-runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nahkies/typescript-axios-runtime",
3-
"version": "0.20.0",
3+
"version": "0.20.1",
44
"description": "Runtime package for code generated by @nahkies/openapi-code-generator using the typescript-axios template",
55
"license": "MIT",
66
"author": {

packages/typescript-express-runtime/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.20.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.0...v0.20.1) (2025-05-31)
7+
8+
**Note:** Version bump only for package @nahkies/typescript-express-runtime
9+
610
# [0.20.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.19.2...v0.20.0) (2025-05-05)
711

812
### Bug Fixes

packages/typescript-express-runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nahkies/typescript-express-runtime",
3-
"version": "0.20.0",
3+
"version": "0.20.1",
44
"description": "Runtime package for code generated by @nahkies/openapi-code-generator using the typescript-express template",
55
"license": "MIT",
66
"author": {

packages/typescript-fetch-runtime/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.20.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.0...v0.20.1) (2025-05-31)
7+
8+
### Bug Fixes
9+
10+
- fetch proxy compatible with node 24 ([#333](https://github.com/mnahkies/openapi-code-generator/issues/333)) ([40acade](https://github.com/mnahkies/openapi-code-generator/commit/40acade7b284ca96e4e6c8c07ceddd3117721b90))
11+
612
# [0.20.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.19.2...v0.20.0) (2025-05-05)
713

814
### Bug Fixes

packages/typescript-fetch-runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nahkies/typescript-fetch-runtime",
3-
"version": "0.20.0",
3+
"version": "0.20.1",
44
"description": "Runtime package for code generated by @nahkies/openapi-code-generator using the typescript-fetch template",
55
"license": "MIT",
66
"author": {

0 commit comments

Comments
 (0)