diff --git a/CHANGELOG.md b/CHANGELOG.md index dd0d723a..7d7ab65c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.16.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.15.0...v0.16.0) (2024-11-02) + +### Bug Fixes + +- format/emit in parallel ([#265](https://github.com/mnahkies/openapi-code-generator/issues/265)) ([8f9c009](https://github.com/mnahkies/openapi-code-generator/commit/8f9c009daf0d861b3d42f1035ec7cc37053769d0)) + +- feat!: dynamic filename conventions / no spaces in filenames (#259) ([c6a72b5](https://github.com/mnahkies/openapi-code-generator/commit/c6a72b5ebc02ad2524fa14be49a6295b965a272b)), closes [#259](https://github.com/mnahkies/openapi-code-generator/issues/259) + +### Features + +- safer identifier transformation ([#260](https://github.com/mnahkies/openapi-code-generator/issues/260)) ([2bad95c](https://github.com/mnahkies/openapi-code-generator/commit/2bad95c63f57319a187996e88ba8be81e343e5a3)) +- unique client export names ([#263](https://github.com/mnahkies/openapi-code-generator/issues/263)) ([205ee94](https://github.com/mnahkies/openapi-code-generator/commit/205ee94dc26fb8310ebfe91bb3c0eaa932ca0640)), closes [#259](https://github.com/mnahkies/openapi-code-generator/issues/259) + +### BREAKING CHANGES + +- emitted filenames may change if not already in + `kebab-case` format. Use `--filename-convention` if an alternative + convention such as `camel-case` is preferred. + # [0.15.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.14.0...v0.15.0) (2024-10-27) ### Bug Fixes diff --git a/lerna.json b/lerna.json index d83050d4..c3ba6ab5 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", "npmClient": "yarn", - "version": "0.15.0", + "version": "0.16.0", "gitTagVersion": true } diff --git a/packages/openapi-code-generator/CHANGELOG.md b/packages/openapi-code-generator/CHANGELOG.md index 46a87e8e..7fd74432 100644 --- a/packages/openapi-code-generator/CHANGELOG.md +++ b/packages/openapi-code-generator/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.16.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.15.0...v0.16.0) (2024-11-02) + +### Bug Fixes + +- format/emit in parallel ([#265](https://github.com/mnahkies/openapi-code-generator/issues/265)) ([8f9c009](https://github.com/mnahkies/openapi-code-generator/commit/8f9c009daf0d861b3d42f1035ec7cc37053769d0)) + +- feat!: dynamic filename conventions / no spaces in filenames (#259) ([c6a72b5](https://github.com/mnahkies/openapi-code-generator/commit/c6a72b5ebc02ad2524fa14be49a6295b965a272b)), closes [#259](https://github.com/mnahkies/openapi-code-generator/issues/259) + +### Features + +- safer identifier transformation ([#260](https://github.com/mnahkies/openapi-code-generator/issues/260)) ([2bad95c](https://github.com/mnahkies/openapi-code-generator/commit/2bad95c63f57319a187996e88ba8be81e343e5a3)) +- unique client export names ([#263](https://github.com/mnahkies/openapi-code-generator/issues/263)) ([205ee94](https://github.com/mnahkies/openapi-code-generator/commit/205ee94dc26fb8310ebfe91bb3c0eaa932ca0640)), closes [#259](https://github.com/mnahkies/openapi-code-generator/issues/259) + +### BREAKING CHANGES + +- emitted filenames may change if not already in + `kebab-case` format. Use `--filename-convention` if an alternative + convention such as `camel-case` is preferred. + # [0.15.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.14.0...v0.15.0) (2024-10-27) ### Bug Fixes diff --git a/packages/openapi-code-generator/package.json b/packages/openapi-code-generator/package.json index 34684061..b49b4a9a 100644 --- a/packages/openapi-code-generator/package.json +++ b/packages/openapi-code-generator/package.json @@ -1,6 +1,6 @@ { "name": "@nahkies/openapi-code-generator", - "version": "0.15.0", + "version": "0.16.0", "description": "Typescript client SDK and server stub generator for OpenAPI 3 specifications", "license": "MIT", "author": { diff --git a/packages/typescript-axios-runtime/CHANGELOG.md b/packages/typescript-axios-runtime/CHANGELOG.md index 5e4e57db..3db7ebd0 100644 --- a/packages/typescript-axios-runtime/CHANGELOG.md +++ b/packages/typescript-axios-runtime/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.16.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.15.0...v0.16.0) (2024-11-02) + +**Note:** Version bump only for package @nahkies/typescript-axios-runtime + # [0.15.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.14.0...v0.15.0) (2024-10-27) **Note:** Version bump only for package @nahkies/typescript-axios-runtime diff --git a/packages/typescript-axios-runtime/package.json b/packages/typescript-axios-runtime/package.json index 2037c03e..b7f1ad31 100644 --- a/packages/typescript-axios-runtime/package.json +++ b/packages/typescript-axios-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@nahkies/typescript-axios-runtime", - "version": "0.15.0", + "version": "0.16.0", "description": "Runtime package for code generated by @nahkies/openapi-code-generator using the typescript-axios template", "license": "MIT", "author": { diff --git a/packages/typescript-fetch-runtime/CHANGELOG.md b/packages/typescript-fetch-runtime/CHANGELOG.md index 1f6f9245..6d325c13 100644 --- a/packages/typescript-fetch-runtime/CHANGELOG.md +++ b/packages/typescript-fetch-runtime/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.16.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.15.0...v0.16.0) (2024-11-02) + +**Note:** Version bump only for package @nahkies/typescript-fetch-runtime + # [0.15.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.14.0...v0.15.0) (2024-10-27) **Note:** Version bump only for package @nahkies/typescript-fetch-runtime diff --git a/packages/typescript-fetch-runtime/package.json b/packages/typescript-fetch-runtime/package.json index c8a4478c..a374144f 100644 --- a/packages/typescript-fetch-runtime/package.json +++ b/packages/typescript-fetch-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@nahkies/typescript-fetch-runtime", - "version": "0.15.0", + "version": "0.16.0", "description": "Runtime package for code generated by @nahkies/openapi-code-generator using the typescript-fetch template", "license": "MIT", "author": { diff --git a/packages/typescript-koa-runtime/CHANGELOG.md b/packages/typescript-koa-runtime/CHANGELOG.md index 9c085c5e..e23ba9f6 100644 --- a/packages/typescript-koa-runtime/CHANGELOG.md +++ b/packages/typescript-koa-runtime/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.16.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.15.0...v0.16.0) (2024-11-02) + +**Note:** Version bump only for package @nahkies/typescript-koa-runtime + # [0.15.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.14.0...v0.15.0) (2024-10-27) **Note:** Version bump only for package @nahkies/typescript-koa-runtime diff --git a/packages/typescript-koa-runtime/package.json b/packages/typescript-koa-runtime/package.json index 53dfd9bf..c80ee83e 100644 --- a/packages/typescript-koa-runtime/package.json +++ b/packages/typescript-koa-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@nahkies/typescript-koa-runtime", - "version": "0.15.0", + "version": "0.16.0", "description": "Runtime package for code generated by @nahkies/openapi-code-generator using the typescript-koa template", "license": "MIT", "author": {