diff --git a/.changeset/nice-houses-hug.md b/.changeset/nice-houses-hug.md deleted file mode 100644 index 6e3bd3c198..0000000000 --- a/.changeset/nice-houses-hug.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@redocly/cli': patch ---- - -Fixed an issue with resolving the `node-fetch` package by explicitly adding the missing dependency. diff --git a/.changeset/short-poets-sleep.md b/.changeset/short-poets-sleep.md deleted file mode 100644 index 9ff61333d0..0000000000 --- a/.changeset/short-poets-sleep.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@redocly/openapi-core': patch ---- - -OpenAPI 3.1.x defaults to JSON Schema draft 2020-12 and the value of property names defined in `properties` was updated since OpenAPI 3.0.x and JSON Schema draft-04. - -In the new JSON Schema specification, each property value within a `properties` schema accepts a `boolean` or `object` schema. - -https://json-schema.org/draft/2020-12/json-schema-core#section-10.3.2.1 diff --git a/.changeset/twelve-kids-tan.md b/.changeset/twelve-kids-tan.md deleted file mode 100644 index 7544a2da27..0000000000 --- a/.changeset/twelve-kids-tan.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@redocly/openapi-core": patch ---- - -Fixed incorrect browser detection by removing check for 'self' as Bun also exposes it by default. diff --git a/docs/changelog.md b/docs/changelog.md index 582d52e460..8d464828c7 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -8,6 +8,13 @@ toc: +## 1.4.1 (2023-11-15) + +### Patch Changes + +- Fixed an issue with resolving the `node-fetch` package by explicitly adding the missing dependency. +- Updated @redocly/openapi-core to v1.4.1. + ## 1.4.0 (2023-10-26) ### Minor Changes diff --git a/package-lock.json b/package-lock.json index cc8954161a..a95ef5dc24 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12841,10 +12841,10 @@ }, "packages/cli": { "name": "@redocly/cli", - "version": "1.4.0", + "version": "1.4.1", "license": "MIT", "dependencies": { - "@redocly/openapi-core": "1.4.0", + "@redocly/openapi-core": "1.4.1", "chokidar": "^3.5.1", "colorette": "^1.2.0", "core-js": "^3.32.1", @@ -12890,7 +12890,7 @@ }, "packages/core": { "name": "@redocly/openapi-core", - "version": "1.4.0", + "version": "1.4.1", "license": "MIT", "dependencies": { "@redocly/ajv": "^8.11.0", @@ -15514,7 +15514,7 @@ "@redocly/cli": { "version": "file:packages/cli", "requires": { - "@redocly/openapi-core": "1.4.0", + "@redocly/openapi-core": "1.4.1", "@types/configstore": "^5.0.1", "@types/glob": "^8.1.0", "@types/react": "^17.0.0 || ^18.2.21", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index f6f4a7c285..78a3a397ab 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,12 @@ # @redocly/cli +## 1.4.1 + +### Patch Changes + +- Fixed an issue with resolving the `node-fetch` package by explicitly adding the missing dependency. +- Updated @redocly/openapi-core to v1.4.1. + ## 1.4.0 ### Minor Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 3ed262fc41..81c58564e3 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@redocly/cli", - "version": "1.4.0", + "version": "1.4.1", "description": "", "license": "MIT", "bin": { @@ -36,7 +36,7 @@ "Roman Hotsiy (https://redoc.ly/)" ], "dependencies": { - "@redocly/openapi-core": "1.4.0", + "@redocly/openapi-core": "1.4.1", "chokidar": "^3.5.1", "colorette": "^1.2.0", "core-js": "^3.32.1", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index bd4964c16a..72f92d41bd 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,17 @@ # @redocly/openapi-core +## 1.4.1 + +### Patch Changes + +- OpenAPI 3.1.x defaults to JSON Schema draft 2020-12 and the value of property names defined in `properties` was updated since OpenAPI 3.0.x and JSON Schema draft-04. + + In the new JSON Schema specification, each property value within a `properties` schema accepts a `boolean` or `object` schema. + + https://json-schema.org/draft/2020-12/json-schema-core#section-10.3.2.1 + +- Fixed incorrect browser detection by removing check for 'self' as Bun also exposes it by default. + ## 1.4.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index 505b5a971a..e567596df6 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@redocly/openapi-core", - "version": "1.4.0", + "version": "1.4.1", "description": "", "main": "lib/index.js", "engines": {