Skip to content

Commit 52fe1bd

Browse files
committed
v0.21.0
1 parent 134270f commit 52fe1bd

13 files changed

Lines changed: 13763 additions & 7192 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@
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.21.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.1...v0.21.0) (2025-07-26)
7+
8+
### Bug Fixes
9+
10+
- adjust typing to reflect that boolean request headers are supported ([#339](https://github.com/mnahkies/openapi-code-generator/issues/339)) ([17524a5](https://github.com/mnahkies/openapi-code-generator/commit/17524a5afd9dbce6d68c36057ec846b7c6b22bcc))
11+
- check validator works ([#354](https://github.com/mnahkies/openapi-code-generator/issues/354)) ([28ad4e9](https://github.com/mnahkies/openapi-code-generator/commit/28ad4e9afb93d3a24819995066af1d407804d291))
12+
- **ci:** adjust workflow permissions ([#340](https://github.com/mnahkies/openapi-code-generator/issues/340)) ([5ad9298](https://github.com/mnahkies/openapi-code-generator/commit/5ad9298d9a2c7c491f5724af89e0abb684c034f5))
13+
- filter invalid request bodies ([#348](https://github.com/mnahkies/openapi-code-generator/issues/348)) ([39b5e3c](https://github.com/mnahkies/openapi-code-generator/commit/39b5e3c86cb31c495ea7fe136b9019be832bd69a))
14+
- improve request body / content-type handling ([#349](https://github.com/mnahkies/openapi-code-generator/issues/349)) ([7808634](https://github.com/mnahkies/openapi-code-generator/commit/7808634b0579a30bc52b4f9887cf34eebdb0aae8))
15+
- partial koa-body middlware options ([#346](https://github.com/mnahkies/openapi-code-generator/issues/346)) ([1dd0636](https://github.com/mnahkies/openapi-code-generator/commit/1dd063622da2f82874044b1c5765891995c1d7c1)), closes [/github.com/koajs/koa-body/blob/master/src/index.ts#L23](https://github.com//github.com/koajs/koa-body/blob/master/src/index.ts/issues/L23)
16+
- serialize scim json bodies ([#355](https://github.com/mnahkies/openapi-code-generator/issues/355)) ([619b014](https://github.com/mnahkies/openapi-code-generator/commit/619b014d617e281b9e57247d7c9394d4d7ea0ca2))
17+
18+
### Features
19+
20+
- allow mandatory server variables ([#341](https://github.com/mnahkies/openapi-code-generator/issues/341)) ([83673d8](https://github.com/mnahkies/openapi-code-generator/commit/83673d88478c14dd7816293cdf4d22239c584b42))
21+
- boolean schemas support enum ([#351](https://github.com/mnahkies/openapi-code-generator/issues/351)) ([46fea1e](https://github.com/mnahkies/openapi-code-generator/commit/46fea1ea9a64307fa2522d5bd2940e613b017b24))
22+
- read formatter config ([#343](https://github.com/mnahkies/openapi-code-generator/issues/343)) ([1d09da2](https://github.com/mnahkies/openapi-code-generator/commit/1d09da2d12bb25942d0fb9ec50126a1db53caa81))
23+
- support application/x-www-form-urlencoded request bodies ([#352](https://github.com/mnahkies/openapi-code-generator/issues/352)) ([0aecf2a](https://github.com/mnahkies/openapi-code-generator/commit/0aecf2adc436c5e342cc9cc47ee47aa84dd9314b))
24+
- support text/plain request bodies ([#350](https://github.com/mnahkies/openapi-code-generator/issues/350)) ([eba568f](https://github.com/mnahkies/openapi-code-generator/commit/eba568fbb694de40c374a06f7feefa15f6d6e7a9))
25+
26+
### BREAKING CHANGES
27+
28+
- `typescript-express` `ServerConfig['body']` shape
29+
changed to accommodate configuring multiple body parsers
30+
631
## [0.20.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.0...v0.20.1) (2025-05-31)
732

833
### 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": "pnpm",
4-
"version": "0.20.1",
4+
"version": "0.21.0",
55
"gitTagVersion": true
66
}

packages/openapi-code-generator/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
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.21.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.1...v0.21.0) (2025-07-26)
7+
8+
### Bug Fixes
9+
10+
- check validator works ([#354](https://github.com/mnahkies/openapi-code-generator/issues/354)) ([28ad4e9](https://github.com/mnahkies/openapi-code-generator/commit/28ad4e9afb93d3a24819995066af1d407804d291))
11+
- filter invalid request bodies ([#348](https://github.com/mnahkies/openapi-code-generator/issues/348)) ([39b5e3c](https://github.com/mnahkies/openapi-code-generator/commit/39b5e3c86cb31c495ea7fe136b9019be832bd69a))
12+
- improve request body / content-type handling ([#349](https://github.com/mnahkies/openapi-code-generator/issues/349)) ([7808634](https://github.com/mnahkies/openapi-code-generator/commit/7808634b0579a30bc52b4f9887cf34eebdb0aae8))
13+
- serialize scim json bodies ([#355](https://github.com/mnahkies/openapi-code-generator/issues/355)) ([619b014](https://github.com/mnahkies/openapi-code-generator/commit/619b014d617e281b9e57247d7c9394d4d7ea0ca2))
14+
15+
### Features
16+
17+
- allow mandatory server variables ([#341](https://github.com/mnahkies/openapi-code-generator/issues/341)) ([83673d8](https://github.com/mnahkies/openapi-code-generator/commit/83673d88478c14dd7816293cdf4d22239c584b42))
18+
- boolean schemas support enum ([#351](https://github.com/mnahkies/openapi-code-generator/issues/351)) ([46fea1e](https://github.com/mnahkies/openapi-code-generator/commit/46fea1ea9a64307fa2522d5bd2940e613b017b24))
19+
- read formatter config ([#343](https://github.com/mnahkies/openapi-code-generator/issues/343)) ([1d09da2](https://github.com/mnahkies/openapi-code-generator/commit/1d09da2d12bb25942d0fb9ec50126a1db53caa81))
20+
- support application/x-www-form-urlencoded request bodies ([#352](https://github.com/mnahkies/openapi-code-generator/issues/352)) ([0aecf2a](https://github.com/mnahkies/openapi-code-generator/commit/0aecf2adc436c5e342cc9cc47ee47aa84dd9314b))
21+
- support text/plain request bodies ([#350](https://github.com/mnahkies/openapi-code-generator/issues/350)) ([eba568f](https://github.com/mnahkies/openapi-code-generator/commit/eba568fbb694de40c374a06f7feefa15f6d6e7a9))
22+
23+
### BREAKING CHANGES
24+
25+
- `typescript-express` `ServerConfig['body']` shape
26+
changed to accommodate configuring multiple body parsers
27+
628
## [0.20.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.0...v0.20.1) (2025-05-31)
729

830
### 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.1",
3+
"version": "0.21.0",
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
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.21.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.1...v0.21.0) (2025-07-26)
7+
8+
### Bug Fixes
9+
10+
- adjust typing to reflect that boolean request headers are supported ([#339](https://github.com/mnahkies/openapi-code-generator/issues/339)) ([17524a5](https://github.com/mnahkies/openapi-code-generator/commit/17524a5afd9dbce6d68c36057ec846b7c6b22bcc))
11+
12+
### Features
13+
14+
- support application/x-www-form-urlencoded request bodies ([#352](https://github.com/mnahkies/openapi-code-generator/issues/352)) ([0aecf2a](https://github.com/mnahkies/openapi-code-generator/commit/0aecf2adc436c5e342cc9cc47ee47aa84dd9314b))
15+
616
## [0.20.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.0...v0.20.1) (2025-05-31)
717

818
**Note:** Version bump only for package @nahkies/typescript-axios-runtime

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.1",
3+
"version": "0.21.0",
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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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.21.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.1...v0.21.0) (2025-07-26)
7+
8+
### Features
9+
10+
- support application/x-www-form-urlencoded request bodies ([#352](https://github.com/mnahkies/openapi-code-generator/issues/352)) ([0aecf2a](https://github.com/mnahkies/openapi-code-generator/commit/0aecf2adc436c5e342cc9cc47ee47aa84dd9314b))
11+
- support text/plain request bodies ([#350](https://github.com/mnahkies/openapi-code-generator/issues/350)) ([eba568f](https://github.com/mnahkies/openapi-code-generator/commit/eba568fbb694de40c374a06f7feefa15f6d6e7a9))
12+
13+
### BREAKING CHANGES
14+
15+
- `typescript-express` `ServerConfig['body']` shape
16+
changed to accommodate configuring multiple body parsers
17+
618
## [0.20.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.0...v0.20.1) (2025-05-31)
719

820
**Note:** Version bump only for package @nahkies/typescript-express-runtime

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.1",
3+
"version": "0.21.0",
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
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.21.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.1...v0.21.0) (2025-07-26)
7+
8+
### Bug Fixes
9+
10+
- adjust typing to reflect that boolean request headers are supported ([#339](https://github.com/mnahkies/openapi-code-generator/issues/339)) ([17524a5](https://github.com/mnahkies/openapi-code-generator/commit/17524a5afd9dbce6d68c36057ec846b7c6b22bcc))
11+
12+
### Features
13+
14+
- support application/x-www-form-urlencoded request bodies ([#352](https://github.com/mnahkies/openapi-code-generator/issues/352)) ([0aecf2a](https://github.com/mnahkies/openapi-code-generator/commit/0aecf2adc436c5e342cc9cc47ee47aa84dd9314b))
15+
616
## [0.20.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.20.0...v0.20.1) (2025-05-31)
717

818
### 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.1",
3+
"version": "0.21.0",
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)