mirror of
https://github.com/LukeHagar/redocly-cli.git
synced 2025-12-06 04:21:09 +00:00
chore: 🔖 release new versions (#1664)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
e5e59d5654
commit
295e98faaf
@@ -1,6 +0,0 @@
|
||||
---
|
||||
"@redocly/openapi-core": minor
|
||||
"@redocly/cli": minor
|
||||
---
|
||||
|
||||
Added support for ESM plugins and importing of plugins directly from npm package: `@vendor/package/plugin.js` instead of `./node_modules/@vendor/package/plugin.js`.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@redocly/cli": patch
|
||||
---
|
||||
|
||||
Added support for webhooks in stats and fixed a crash that occurred when tags were not included in webhooks.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
"@redocly/openapi-core": minor
|
||||
"@redocly/cli": minor
|
||||
---
|
||||
|
||||
Added `info-license-strict` rule as a replacement of the `info-license-url` to support the OpenAPI 3.1 changes to allow identifier or URL license details.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@redocly/openapi-core": patch
|
||||
---
|
||||
|
||||
Updated @redocly/config to v0.9.0.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
"@redocly/openapi-core": minor
|
||||
"@redocly/cli": minor
|
||||
---
|
||||
|
||||
Changed plugins format to export a function instead of an object for compatibility with other Redocly products. The backwards compatibility with an old format of plugins is maintained.
|
||||
@@ -7,6 +7,19 @@ toc:
|
||||
|
||||
<!-- do-not-remove -->
|
||||
|
||||
## 1.20.0 (2024-08-21)
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- Added support for ESM plugins and importing of plugins directly from npm package: `@vendor/package/plugin.js` instead of `./node_modules/@vendor/package/plugin.js`.
|
||||
- Added `info-license-strict` rule as a replacement of the `info-license-url` to support the OpenAPI 3.1 changes to allow identifier or URL license details.
|
||||
- Changed plugins format to export a function instead of an object for compatibility with other Redocly products. The backwards compatibility with an old format of plugins is maintained.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Added support for webhooks in stats and fixed a crash that occurred when tags were not included in webhooks.
|
||||
- Updated @redocly/openapi-core to v1.20.0.
|
||||
|
||||
## 1.19.0 (2024-08-01)
|
||||
|
||||
### Minor Changes
|
||||
|
||||
8
package-lock.json
generated
8
package-lock.json
generated
@@ -13753,10 +13753,10 @@
|
||||
},
|
||||
"packages/cli": {
|
||||
"name": "@redocly/cli",
|
||||
"version": "1.19.0",
|
||||
"version": "1.20.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@redocly/openapi-core": "1.19.0",
|
||||
"@redocly/openapi-core": "1.20.0",
|
||||
"abort-controller": "^3.0.0",
|
||||
"chokidar": "^3.5.1",
|
||||
"colorette": "^1.2.0",
|
||||
@@ -13810,7 +13810,7 @@
|
||||
},
|
||||
"packages/core": {
|
||||
"name": "@redocly/openapi-core",
|
||||
"version": "1.19.0",
|
||||
"version": "1.20.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@redocly/ajv": "^8.11.0",
|
||||
@@ -16474,7 +16474,7 @@
|
||||
"@redocly/cli": {
|
||||
"version": "file:packages/cli",
|
||||
"requires": {
|
||||
"@redocly/openapi-core": "1.19.0",
|
||||
"@redocly/openapi-core": "1.20.0",
|
||||
"@types/configstore": "^5.0.1",
|
||||
"@types/glob": "^8.1.0",
|
||||
"@types/pluralize": "^0.0.29",
|
||||
|
||||
@@ -1,5 +1,18 @@
|
||||
# @redocly/cli
|
||||
|
||||
## 1.20.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- Added support for ESM plugins and importing of plugins directly from npm package: `@vendor/package/plugin.js` instead of `./node_modules/@vendor/package/plugin.js`.
|
||||
- Added `info-license-strict` rule as a replacement of the `info-license-url` to support the OpenAPI 3.1 changes to allow identifier or URL license details.
|
||||
- Changed plugins format to export a function instead of an object for compatibility with other Redocly products. The backwards compatibility with an old format of plugins is maintained.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Added support for webhooks in stats and fixed a crash that occurred when tags were not included in webhooks.
|
||||
- Updated @redocly/openapi-core to v1.20.0.
|
||||
|
||||
## 1.19.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@redocly/cli",
|
||||
"version": "1.19.0",
|
||||
"version": "1.20.0",
|
||||
"description": "",
|
||||
"license": "MIT",
|
||||
"bin": {
|
||||
@@ -36,7 +36,7 @@
|
||||
"Roman Hotsiy <roman@redoc.ly> (https://redoc.ly/)"
|
||||
],
|
||||
"dependencies": {
|
||||
"@redocly/openapi-core": "1.19.0",
|
||||
"@redocly/openapi-core": "1.20.0",
|
||||
"abort-controller": "^3.0.0",
|
||||
"chokidar": "^3.5.1",
|
||||
"colorette": "^1.2.0",
|
||||
|
||||
@@ -1,5 +1,17 @@
|
||||
# @redocly/openapi-core
|
||||
|
||||
## 1.20.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- Added support for ESM plugins and importing of plugins directly from npm package: `@vendor/package/plugin.js` instead of `./node_modules/@vendor/package/plugin.js`.
|
||||
- Added `info-license-strict` rule as a replacement of the `info-license-url` to support the OpenAPI 3.1 changes to allow identifier or URL license details.
|
||||
- Changed plugins format to export a function instead of an object for compatibility with other Redocly products. The backwards compatibility with an old format of plugins is maintained.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated @redocly/config to v0.9.0.
|
||||
|
||||
## 1.19.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@redocly/openapi-core",
|
||||
"version": "1.19.0",
|
||||
"version": "1.20.0",
|
||||
"description": "",
|
||||
"main": "lib/index.js",
|
||||
"engines": {
|
||||
|
||||
Reference in New Issue
Block a user