chore: v1.0.0-beta.128 (#1122)

This commit is contained in:
Ihor Karpiuk
2023-06-07 11:04:46 +03:00
committed by GitHub
parent 67118db653
commit 34e9023172
6 changed files with 24 additions and 21 deletions

View File

@@ -5,6 +5,18 @@ toc:
# Redocly CLI changelog
## 1.0.0-beta.128 (2023-06-06)
### Features
- Support rule/ as a prefix for configurable rules
- Resolve $refs in preprocessors
- Create the `spec-strict-refs` rule to ensure `$ref` usage is in accordance with the OpenAPI specification
### Fixes
- Handle syntax errors from plugins
- Apply the following regular expression, `^[a-zA-Z0-9\.\-_]+$`, only to fixed fields under components
## 1.0.0-beta.127 (2023-05-25)

21
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@redocly/cli",
"version": "1.0.0-beta.127",
"version": "1.0.0-beta.128",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@redocly/cli",
"version": "1.0.0-beta.127",
"version": "1.0.0-beta.128",
"license": "MIT",
"workspaces": [
"packages/*"
@@ -9577,10 +9577,10 @@
},
"packages/cli": {
"name": "@redocly/cli",
"version": "1.0.0-beta.127",
"version": "1.0.0-beta.128",
"license": "MIT",
"dependencies": {
"@redocly/openapi-core": "1.0.0-beta.127",
"@redocly/openapi-core": "1.0.0-beta.128",
"assert-node-version": "^1.0.3",
"chokidar": "^3.5.1",
"colorette": "^1.2.0",
@@ -9614,11 +9614,6 @@
"node": ">=12.0.0"
}
},
"packages/cli/node_modules/@types/node": {
"version": "14.18.47",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.47.tgz",
"integrity": "sha512-OuJi8bIng4wYHHA3YpKauL58dZrPxro3d0tabPHyiNF8rKfGKuVfr83oFlPLmKri1cX+Z3cJP39GXmnqkP11Gw=="
},
"packages/cli/node_modules/@types/yargs": {
"version": "17.0.5",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.5.tgz",
@@ -9630,7 +9625,7 @@
},
"packages/core": {
"name": "@redocly/openapi-core",
"version": "1.0.0-beta.127",
"version": "1.0.0-beta.128",
"license": "MIT",
"dependencies": {
"@redocly/ajv": "^8.11.0",
@@ -10593,7 +10588,7 @@
"@redocly/cli": {
"version": "file:packages/cli",
"requires": {
"@redocly/openapi-core": "1.0.0-beta.127",
"@redocly/openapi-core": "1.0.0-beta.128",
"@types/configstore": "^5.0.1",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
@@ -10618,10 +10613,6 @@
"yargs": "17.0.1"
},
"dependencies": {
"@types/node": {
"version": "https://registry.npmjs.org/@types/node/-/node-14.18.47.tgz",
"integrity": "sha512-OuJi8bIng4wYHHA3YpKauL58dZrPxro3d0tabPHyiNF8rKfGKuVfr83oFlPLmKri1cX+Z3cJP39GXmnqkP11Gw=="
},
"@types/yargs": {
"version": "17.0.5",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.5.tgz",

View File

@@ -1,6 +1,6 @@
{
"name": "@redocly/cli",
"version": "1.0.0-beta.127",
"version": "1.0.0-beta.128",
"description": "",
"private": true,
"engines": {

View File

@@ -1,6 +1,6 @@
{
"name": "@redocly/cli",
"version": "1.0.0-beta.127",
"version": "1.0.0-beta.128",
"description": "",
"license": "MIT",
"bin": {
@@ -33,7 +33,7 @@
"Roman Hotsiy <roman@redoc.ly> (https://redoc.ly/)"
],
"dependencies": {
"@redocly/openapi-core": "1.0.0-beta.127",
"@redocly/openapi-core": "1.0.0-beta.128",
"assert-node-version": "^1.0.3",
"chokidar": "^3.5.1",
"colorette": "^1.2.0",

View File

@@ -1,12 +1,12 @@
{
"name": "@redocly/openapi-core",
"version": "1.0.0-beta.126",
"version": "1.0.0-beta.128",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@redocly/openapi-core",
"version": "1.0.0-beta.126",
"version": "1.0.0-beta.128",
"license": "MIT",
"dependencies": {
"@redocly/ajv": "^8.11.0",

View File

@@ -1,6 +1,6 @@
{
"name": "@redocly/openapi-core",
"version": "1.0.0-beta.127",
"version": "1.0.0-beta.128",
"description": "",
"main": "lib/index.js",
"engines": {