Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
karlvr committed Nov 26, 2023
1 parent 5fc036f commit f1d5974
Show file tree
Hide file tree
Showing 17 changed files with 79 additions and 59 deletions.
5 changes: 0 additions & 5 deletions .changeset/cool-flowers-grow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dirty-monkeys-smoke.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/few-hornets-tickle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fresh-cycles-cover.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/funny-knives-swim.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/khaki-bears-drive.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/silver-suns-invite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tricky-phones-yawn.md

This file was deleted.

15 changes: 15 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# openapi-generator-plus

## 2.9.0

### Patch Changes

- Updated dependencies [9320c43]
- Updated dependencies [01c7855]
- Updated dependencies [faedb90]
- Updated dependencies [61a11d1]
- Updated dependencies [edcd1b8]
- Updated dependencies [31bd79f]
- Updated dependencies [3b1dec8]
- Updated dependencies [5949a32]
- @openapi-generator-plus/core@2.9.0
- @openapi-generator-plus/types@2.8.0

## 2.8.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openapi-generator-plus",
"version": "2.8.1",
"version": "2.9.0",
"description": "Modular OpenAPI code generator written in TypeScript and Node.js",
"keywords": [
"openapi",
Expand Down Expand Up @@ -32,8 +32,8 @@
},
"homepage": "https://github.com/karlvr/openapi-generator-plus#readme",
"dependencies": {
"@openapi-generator-plus/core": "2.8.1",
"@openapi-generator-plus/types": "2.7.1",
"@openapi-generator-plus/core": "2.9.0",
"@openapi-generator-plus/types": "2.8.0",
"ansi-colors": "^4.1.1",
"getopts": "^2.3.0",
"glob": "^7.2.0",
Expand Down
22 changes: 22 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @openapi-generator-plus/core

## 2.9.0

### Minor Changes

- faedb90: Support required on allOf schema
- 31bd79f: Support OpenAPI 3.1.0 style of nullable in type arrays and anyOf with null
- 3b1dec8: Add support for null schema

A schema type of null is used in OpenAPI 3.1.0 instead of the nullable attribute.

### Patch Changes

- 9320c43: Centralise adding known schemas
- 01c7855: Use Array.isArray rather than typeof === 'object' + a cast
- 61a11d1: Don't "fix" allOf, anyOf and oneOf schemas to have a type of "object"
- edcd1b8: Improve handling of description with a $ref
- 5949a32: Improve error reporting when an unquoted null is used as a type
- Updated dependencies [faedb90]
- Updated dependencies [edcd1b8]
- Updated dependencies [3b1dec8]
- @openapi-generator-plus/types@2.8.0

## 2.8.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/core",
"version": "2.8.1",
"version": "2.9.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -25,7 +25,7 @@
"dependencies": {
"@openapi-generator-plus/indexed-type": "1.0.0",
"@openapi-generator-plus/swagger-parser": "^10.1.0",
"@openapi-generator-plus/types": "2.7.1",
"@openapi-generator-plus/types": "2.8.0",
"@openapi-generator-plus/utils": "1.0.1",
"lodash": "^4.17.21",
"pluralize": "^8.0.0"
Expand Down
15 changes: 15 additions & 0 deletions packages/testing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @openapi-generator-plus/testing

## 2.9.0

### Patch Changes

- Updated dependencies [9320c43]
- Updated dependencies [01c7855]
- Updated dependencies [faedb90]
- Updated dependencies [61a11d1]
- Updated dependencies [edcd1b8]
- Updated dependencies [31bd79f]
- Updated dependencies [3b1dec8]
- Updated dependencies [5949a32]
- @openapi-generator-plus/core@2.9.0
- @openapi-generator-plus/types@2.8.0

## 2.8.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/testing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/testing",
"version": "2.8.1",
"version": "2.9.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -21,9 +21,9 @@
},
"homepage": "https://github.com/karlvr/openapi-generator-plus#readme",
"dependencies": {
"@openapi-generator-plus/core": "2.8.1",
"@openapi-generator-plus/core": "2.9.0",
"@openapi-generator-plus/indexed-type": "1.0.0",
"@openapi-generator-plus/types": "2.7.1"
"@openapi-generator-plus/types": "2.8.0"
},
"publishConfig": {
"access": "public"
Expand Down
13 changes: 13 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @openapi-generator-plus/types

## 2.8.0

### Minor Changes

- faedb90: Support required on allOf schema
- 3b1dec8: Add support for null schema

A schema type of null is used in OpenAPI 3.1.0 instead of the nullable attribute.

### Patch Changes

- edcd1b8: Improve handling of description with a $ref

## 2.7.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/types",
"version": "2.7.1",
"version": "2.8.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f1d5974

Please sign in to comment.