Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mnahkies committed Nov 12, 2023
1 parent 60838d9 commit a232cf1
Show file tree
Hide file tree
Showing 8 changed files with 64 additions and 4 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.1.1...v0.2.0) (2023-11-12)


### Bug Fixes

* allow numeric header values ([#105](https://github.com/mnahkies/openapi-code-generator/issues/105)) ([7feab98](https://github.com/mnahkies/openapi-code-generator/commit/7feab98733584221c28dd1f9b8e1f3097d58e28f))
* handle `"` in string enum values ([#107](https://github.com/mnahkies/openapi-code-generator/issues/107)) ([5b2c341](https://github.com/mnahkies/openapi-code-generator/commit/5b2c341a9a240a62e66c3eda49e80fd36b7c50a1)), closes [/github.com/APIs-guru/openapi-directory/blob/dec74da7a6785d5d5b83bc6a4cebc07336d67ec9/APIs/vercel.com/0.0.1/openapi.yaml#L4810](https://github.com//github.com/APIs-guru/openapi-directory/blob/dec74da7a6785d5d5b83bc6a4cebc07336d67ec9/APIs/vercel.com/0.0.1/openapi.yaml/issues/L4810)
* handle null in enums ([#106](https://github.com/mnahkies/openapi-code-generator/issues/106)) ([b235a7e](https://github.com/mnahkies/openapi-code-generator/commit/b235a7ead75a7655073e67b30a94c980eb9c81ef)), closes [/github.com/APIs-guru/openapi-directory/blob/dec74da7a6785d5d5b83bc6a4cebc07336d67ec9/APIs/vercel.com/0.0.1/openapi.yaml#L4648-L4655](https://github.com//github.com/APIs-guru/openapi-directory/blob/dec74da7a6785d5d5b83bc6a4cebc07336d67ec9/APIs/vercel.com/0.0.1/openapi.yaml/issues/L4648-L4655)
* optional oneOf / allOf / anyOf / $ref's ([#110](https://github.com/mnahkies/openapi-code-generator/issues/110)) ([2ff114a](https://github.com/mnahkies/openapi-code-generator/commit/2ff114ad60df1ab24085d4d6f9ab23e11c2fdd0c))
* skip broken openapi 3.1 validation for now ([#104](https://github.com/mnahkies/openapi-code-generator/issues/104)) ([f6e7956](https://github.com/mnahkies/openapi-code-generator/commit/f6e795629caa2adf9b00d53b2a771134135afdc8)), closes [#103](https://github.com/mnahkies/openapi-code-generator/issues/103)
* use numerical enums when creating zod schema ([#108](https://github.com/mnahkies/openapi-code-generator/issues/108)) ([7564c10](https://github.com/mnahkies/openapi-code-generator/commit/7564c10c730d008629a45f46d1cc074ba225e429)), closes [/github.com/colinhacks/zod/issues/2686#issuecomment-1807096385](https://github.com//github.com/colinhacks/zod/issues/2686/issues/issuecomment-1807096385)


### Features

* basic support for openapi 3.1 ([#109](https://github.com/mnahkies/openapi-code-generator/issues/109)) ([60838d9](https://github.com/mnahkies/openapi-code-generator/commit/60838d93ac8e672f2227d399b3926da17073385e))





## [0.1.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.1.0...v0.1.1) (2023-11-11)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"npmClient": "yarn",
"version": "0.1.1",
"version": "0.2.0",
"gitTagVersion": true
}
20 changes: 20 additions & 0 deletions packages/openapi-code-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.1.1...v0.2.0) (2023-11-12)


### Bug Fixes

* handle `"` in string enum values ([#107](https://github.com/mnahkies/openapi-code-generator/issues/107)) ([5b2c341](https://github.com/mnahkies/openapi-code-generator/commit/5b2c341a9a240a62e66c3eda49e80fd36b7c50a1)), closes [/github.com/APIs-guru/openapi-directory/blob/dec74da7a6785d5d5b83bc6a4cebc07336d67ec9/APIs/vercel.com/0.0.1/openapi.yaml#L4810](https://github.com//github.com/APIs-guru/openapi-directory/blob/dec74da7a6785d5d5b83bc6a4cebc07336d67ec9/APIs/vercel.com/0.0.1/openapi.yaml/issues/L4810)
* handle null in enums ([#106](https://github.com/mnahkies/openapi-code-generator/issues/106)) ([b235a7e](https://github.com/mnahkies/openapi-code-generator/commit/b235a7ead75a7655073e67b30a94c980eb9c81ef)), closes [/github.com/APIs-guru/openapi-directory/blob/dec74da7a6785d5d5b83bc6a4cebc07336d67ec9/APIs/vercel.com/0.0.1/openapi.yaml#L4648-L4655](https://github.com//github.com/APIs-guru/openapi-directory/blob/dec74da7a6785d5d5b83bc6a4cebc07336d67ec9/APIs/vercel.com/0.0.1/openapi.yaml/issues/L4648-L4655)
* optional oneOf / allOf / anyOf / $ref's ([#110](https://github.com/mnahkies/openapi-code-generator/issues/110)) ([2ff114a](https://github.com/mnahkies/openapi-code-generator/commit/2ff114ad60df1ab24085d4d6f9ab23e11c2fdd0c))
* skip broken openapi 3.1 validation for now ([#104](https://github.com/mnahkies/openapi-code-generator/issues/104)) ([f6e7956](https://github.com/mnahkies/openapi-code-generator/commit/f6e795629caa2adf9b00d53b2a771134135afdc8)), closes [#103](https://github.com/mnahkies/openapi-code-generator/issues/103)
* use numerical enums when creating zod schema ([#108](https://github.com/mnahkies/openapi-code-generator/issues/108)) ([7564c10](https://github.com/mnahkies/openapi-code-generator/commit/7564c10c730d008629a45f46d1cc074ba225e429)), closes [/github.com/colinhacks/zod/issues/2686#issuecomment-1807096385](https://github.com//github.com/colinhacks/zod/issues/2686/issues/issuecomment-1807096385)


### Features

* basic support for openapi 3.1 ([#109](https://github.com/mnahkies/openapi-code-generator/issues/109)) ([60838d9](https://github.com/mnahkies/openapi-code-generator/commit/60838d93ac8e672f2227d399b3926da17073385e))





## [0.1.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.1.0...v0.1.1) (2023-11-11)


Expand Down
2 changes: 1 addition & 1 deletion packages/openapi-code-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nahkies/openapi-code-generator",
"version": "0.1.1",
"version": "0.2.0",
"description": "Typescript client SDK and server stub generator for OpenAPI 3 specifications",
"license": "MIT",
"author": {
Expand Down
11 changes: 11 additions & 0 deletions packages/typescript-fetch-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.1.1...v0.2.0) (2023-11-12)


### Bug Fixes

* allow numeric header values ([#105](https://github.com/mnahkies/openapi-code-generator/issues/105)) ([7feab98](https://github.com/mnahkies/openapi-code-generator/commit/7feab98733584221c28dd1f9b8e1f3097d58e28f))





## [0.1.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.1.0...v0.1.1) (2023-11-11)

**Note:** Version bump only for package @nahkies/typescript-fetch-runtime
Expand Down
2 changes: 1 addition & 1 deletion packages/typescript-fetch-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nahkies/typescript-fetch-runtime",
"version": "0.1.1",
"version": "0.2.0",
"description": "Runtime package for code generated by @nahkies/openapi-code-generator using the typescript-fetch template",
"license": "MIT",
"author": {
Expand Down
8 changes: 8 additions & 0 deletions packages/typescript-koa-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.1.1...v0.2.0) (2023-11-12)

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





## [0.1.1](https://github.com/mnahkies/openapi-code-generator/compare/v0.1.0...v0.1.1) (2023-11-11)

**Note:** Version bump only for package @nahkies/typescript-koa-runtime
Expand Down
2 changes: 1 addition & 1 deletion packages/typescript-koa-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nahkies/typescript-koa-runtime",
"version": "0.1.1",
"version": "0.2.0",
"description": "Runtime package for code generated by @nahkies/openapi-code-generator using the typescript-koa template",
"license": "MIT",
"author": {
Expand Down

0 comments on commit a232cf1

Please sign in to comment.