From 4e5f6f79580f5e2456ff4981bcb950cbfe9e27e2 Mon Sep 17 00:00:00 2001 From: Michael Nahkies Date: Wed, 11 Dec 2024 07:06:35 +0000 Subject: [PATCH] v0.17.0 --- CHANGELOG.md | 18 ++++++++++++++++++ lerna.json | 2 +- packages/openapi-code-generator/CHANGELOG.md | 17 +++++++++++++++++ packages/openapi-code-generator/package.json | 2 +- packages/typescript-axios-runtime/CHANGELOG.md | 7 +++++++ packages/typescript-axios-runtime/package.json | 2 +- packages/typescript-fetch-runtime/CHANGELOG.md | 7 +++++++ packages/typescript-fetch-runtime/package.json | 2 +- packages/typescript-koa-runtime/CHANGELOG.md | 4 ++++ packages/typescript-koa-runtime/package.json | 2 +- 10 files changed, 58 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d7ab65c..22782000 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.17.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.16.0...v0.17.0) (2024-12-11) + +### Bug Fixes + +- support exactOptionalPropertyTypes on client SDKs ([#278](https://github.com/mnahkies/openapi-code-generator/issues/278)) ([5483b12](https://github.com/mnahkies/openapi-code-generator/commit/5483b12b65e977be13b5ce8728c94865c2d9e35d)), closes [#131](https://github.com/mnahkies/openapi-code-generator/issues/131) + +- fix!: angular modules have unique export names (#270) ([2d4d43b](https://github.com/mnahkies/openapi-code-generator/commit/2d4d43b1c0a1a75946e5fbb3a3495d20d0386c16)), closes [#270](https://github.com/mnahkies/openapi-code-generator/issues/270) + +### Features + +- defaultHeaders is optional ([#274](https://github.com/mnahkies/openapi-code-generator/issues/274)) ([fc7cc62](https://github.com/mnahkies/openapi-code-generator/commit/fc7cc62cf26d84543606fb52b0a8edaa61655046)) +- support http verb 'head' ([#271](https://github.com/mnahkies/openapi-code-generator/issues/271)) ([4841fed](https://github.com/mnahkies/openapi-code-generator/commit/4841fed79128da41c415da0496646d27abebbcee)) +- support servers at path / operation level + variables ([#272](https://github.com/mnahkies/openapi-code-generator/issues/272)) ([969ca68](https://github.com/mnahkies/openapi-code-generator/commit/969ca68e9e069a80b42d6a050cfd7a8cdbbfeb91)) + +### BREAKING CHANGES + +- angular service exports suffixed with `Service` + # [0.16.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.15.0...v0.16.0) (2024-11-02) ### Bug Fixes diff --git a/lerna.json b/lerna.json index c3ba6ab5..b97d2bb0 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", "npmClient": "yarn", - "version": "0.16.0", + "version": "0.17.0", "gitTagVersion": true } diff --git a/packages/openapi-code-generator/CHANGELOG.md b/packages/openapi-code-generator/CHANGELOG.md index 7fd74432..bc4170fc 100644 --- a/packages/openapi-code-generator/CHANGELOG.md +++ b/packages/openapi-code-generator/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.17.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.16.0...v0.17.0) (2024-12-11) + +### Bug Fixes + +- support exactOptionalPropertyTypes on client SDKs ([#278](https://github.com/mnahkies/openapi-code-generator/issues/278)) ([5483b12](https://github.com/mnahkies/openapi-code-generator/commit/5483b12b65e977be13b5ce8728c94865c2d9e35d)), closes [#131](https://github.com/mnahkies/openapi-code-generator/issues/131) + +- fix!: angular modules have unique export names (#270) ([2d4d43b](https://github.com/mnahkies/openapi-code-generator/commit/2d4d43b1c0a1a75946e5fbb3a3495d20d0386c16)), closes [#270](https://github.com/mnahkies/openapi-code-generator/issues/270) + +### Features + +- support http verb 'head' ([#271](https://github.com/mnahkies/openapi-code-generator/issues/271)) ([4841fed](https://github.com/mnahkies/openapi-code-generator/commit/4841fed79128da41c415da0496646d27abebbcee)) +- support servers at path / operation level + variables ([#272](https://github.com/mnahkies/openapi-code-generator/issues/272)) ([969ca68](https://github.com/mnahkies/openapi-code-generator/commit/969ca68e9e069a80b42d6a050cfd7a8cdbbfeb91)) + +### BREAKING CHANGES + +- angular service exports suffixed with `Service` + # [0.16.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.15.0...v0.16.0) (2024-11-02) ### Bug Fixes diff --git a/packages/openapi-code-generator/package.json b/packages/openapi-code-generator/package.json index 277b9945..b07c32c5 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.16.0", + "version": "0.17.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 3db7ebd0..8b9494d8 100644 --- a/packages/typescript-axios-runtime/CHANGELOG.md +++ b/packages/typescript-axios-runtime/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.17.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.16.0...v0.17.0) (2024-12-11) + +### Features + +- defaultHeaders is optional ([#274](https://github.com/mnahkies/openapi-code-generator/issues/274)) ([fc7cc62](https://github.com/mnahkies/openapi-code-generator/commit/fc7cc62cf26d84543606fb52b0a8edaa61655046)) +- support servers at path / operation level + variables ([#272](https://github.com/mnahkies/openapi-code-generator/issues/272)) ([969ca68](https://github.com/mnahkies/openapi-code-generator/commit/969ca68e9e069a80b42d6a050cfd7a8cdbbfeb91)) + # [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 diff --git a/packages/typescript-axios-runtime/package.json b/packages/typescript-axios-runtime/package.json index 2f8e33f9..b32713ed 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.16.0", + "version": "0.17.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 6d325c13..ed151692 100644 --- a/packages/typescript-fetch-runtime/CHANGELOG.md +++ b/packages/typescript-fetch-runtime/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.17.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.16.0...v0.17.0) (2024-12-11) + +### Features + +- defaultHeaders is optional ([#274](https://github.com/mnahkies/openapi-code-generator/issues/274)) ([fc7cc62](https://github.com/mnahkies/openapi-code-generator/commit/fc7cc62cf26d84543606fb52b0a8edaa61655046)) +- support servers at path / operation level + variables ([#272](https://github.com/mnahkies/openapi-code-generator/issues/272)) ([969ca68](https://github.com/mnahkies/openapi-code-generator/commit/969ca68e9e069a80b42d6a050cfd7a8cdbbfeb91)) + # [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 diff --git a/packages/typescript-fetch-runtime/package.json b/packages/typescript-fetch-runtime/package.json index f1bdf881..3769ec09 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.16.0", + "version": "0.17.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 e23ba9f6..8eccb7a5 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.17.0](https://github.com/mnahkies/openapi-code-generator/compare/v0.16.0...v0.17.0) (2024-12-11) + +**Note:** Version bump only for package @nahkies/typescript-koa-runtime + # [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 diff --git a/packages/typescript-koa-runtime/package.json b/packages/typescript-koa-runtime/package.json index dc10a327..fbbf96bf 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.16.0", + "version": "0.17.0", "description": "Runtime package for code generated by @nahkies/openapi-code-generator using the typescript-koa template", "license": "MIT", "author": {