diff --git a/CHANGELOG.md b/CHANGELOG.md index 62a0fed..7a05104 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,34 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.0.7](https://github.com/public-js/ng-openapi-gen/compare/0.0.6...0.0.7) (2023-10-27) + + +### Features + +* add "ignorecase" enumStyle option ([273c6ff](https://github.com/public-js/ng-openapi-gen/commit/273c6ff070e2b5ea2d42b2539ea71caef2c3736a)) +* add "ignorecase" enumStyle option ([#9](https://github.com/public-js/ng-openapi-gen/issues/9)) ([4a1b6ba](https://github.com/public-js/ng-openapi-gen/commit/4a1b6ba1ff237dd10dea3bed5073bbd3994a169c)) +* add EOL config ([8c30ce1](https://github.com/public-js/ng-openapi-gen/commit/8c30ce1a8c87508df16b89aef95f5a3696839336)) +* add EOL config ([#8](https://github.com/public-js/ng-openapi-gen/issues/8)) ([575038c](https://github.com/public-js/ng-openapi-gen/commit/575038c1a59f311e561f87003f42246ca48f782d)) +* add HttpContext support for Angular 12+ ([9c2041f](https://github.com/public-js/ng-openapi-gen/commit/9c2041f09f0154bf0628efabe7429c5c1632aa9c)) +* add HttpContext support for Angular 12+ ([#14](https://github.com/public-js/ng-openapi-gen/issues/14)) ([489ffae](https://github.com/public-js/ng-openapi-gen/commit/489ffaea6bd95308947f31ac0e3848884a5f61f5)) +* add support for explicit discriminators ([0da326f](https://github.com/public-js/ng-openapi-gen/commit/0da326f5d457b1096e5dcc07a0cd994a4c1c1008)) +* add support for explicit discriminators ([#15](https://github.com/public-js/ng-openapi-gen/issues/15)) ([f38dc37](https://github.com/public-js/ng-openapi-gen/commit/f38dc37f245fce5977537cfbb27ad21765f63f59)) +* more compact templates ([797b9ee](https://github.com/public-js/ng-openapi-gen/commit/797b9ee8fc23925e6af3fa114acce1d60a35bb61)) +* more compact templates ([#16](https://github.com/public-js/ng-openapi-gen/issues/16)) ([c57cc04](https://github.com/public-js/ng-openapi-gen/commit/c57cc048f9a122d4db7cf8cc2218b45850f63e77)) + + +### Bug Fixes + +* escaped single letter ids generation ([aa1fe18](https://github.com/public-js/ng-openapi-gen/commit/aa1fe181a1daaecb5a62f262598f3dbf5bb93815)) +* escaped single letter ids generation ([#12](https://github.com/public-js/ng-openapi-gen/issues/12)) ([2f52a86](https://github.com/public-js/ng-openapi-gen/commit/2f52a86db5d6d4e78bf13942fde34ef6c24dd997)) +* nullable array elements ([fa02a49](https://github.com/public-js/ng-openapi-gen/commit/fa02a4970c1e828c3f3deacf9ec9d2af67322776)) +* nullable array elements ([#13](https://github.com/public-js/ng-openapi-gen/issues/13)) ([16b2491](https://github.com/public-js/ng-openapi-gen/commit/16b2491566ea4ddd17d47dcd15c0287a83a8a23a)) +* oneOf keyword behavior ([ea44ea8](https://github.com/public-js/ng-openapi-gen/commit/ea44ea8f9400c39a3006fe0e9fa4dcc7a1c2541b)) +* oneOf keyword behavior ([#11](https://github.com/public-js/ng-openapi-gen/issues/11)) ([d48c23a](https://github.com/public-js/ng-openapi-gen/commit/d48c23afbca6b5a6103a929d1935c86429230587)) +* replace all occurrences in path parameter sanitization ([75af9ca](https://github.com/public-js/ng-openapi-gen/commit/75af9ca7272540379434eda75b91369c62f3a5a8)) +* replace all occurrences in path parameter sanitization ([#10](https://github.com/public-js/ng-openapi-gen/issues/10)) ([8d92340](https://github.com/public-js/ng-openapi-gen/commit/8d92340d23a30014c038f9ecec03c215a3e29825)) + ### [0.0.6](https://github.com/public-js/ng-openapi-gen/compare/0.0.5...0.0.6) (2023-02-26) diff --git a/package-lock.json b/package-lock.json index 2e2cf75..c13c791 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ng-openapi-gen", - "version": "0.0.6", + "version": "0.0.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ng-openapi-gen", - "version": "0.0.6", + "version": "0.0.7", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 7bfb7d6..eca89ec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ng-openapi-gen", - "version": "0.0.6", + "version": "0.0.7", "description": "", "scripts": { "ps-test:quick": "nx build ng-openapi-gen && nx pseudo-test ng-openapi-gen", diff --git a/packages/ng-openapi-gen/package.json b/packages/ng-openapi-gen/package.json index 15090cb..de5b1e1 100644 --- a/packages/ng-openapi-gen/package.json +++ b/packages/ng-openapi-gen/package.json @@ -1,6 +1,6 @@ { "name": "@public-js/ng-openapi-gen", - "version": "0.0.6", + "version": "0.0.7", "description": "An OpenAPI 3 code generator for Angular", "dependencies": { "@apidevtools/json-schema-ref-parser": "~9.0.0",