chore: 1.0.0-beta.125 (#1038)

This commit is contained in:
Yevhen Smoliy
2023-04-06 17:18:57 +03:00
committed by GitHub
parent 013e52e18c
commit a7659e0f9b
6 changed files with 27 additions and 12 deletions

View File

@@ -5,6 +5,21 @@ toc:
# Redocly CLI changelog
## 1.0.0-beta.125 (2023-04-06)
### Features
- Added the [required-min-length-string-type-property](./rules/required-min-length-string-type-property.md) rule that requires required properties in the API definition with type `string` to have a `minLength`.
### Fixes
- Fixed an issue with `$ref` in path parameters during the `join` command.
- This release also includes various internal stability fixes and improvements.
### Changes
- Changed the arguments for assertion custom functions. Now as the third parameter, instead of a `location` object, assertion custom functions include a `ctx` object. See [Custom functions](./rules/custom-rules.md#custom-function-example).
## 1.0.0-beta.124 (2023-03-09)
- Fixed an issue with remote file inside the lint ignore file.

12
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@redocly/cli",
"version": "1.0.0-beta.124",
"version": "1.0.0-beta.125",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@redocly/cli",
"version": "1.0.0-beta.124",
"version": "1.0.0-beta.125",
"license": "MIT",
"workspaces": [
"packages/*"
@@ -9574,10 +9574,10 @@
},
"packages/cli": {
"name": "@redocly/cli",
"version": "1.0.0-beta.124",
"version": "1.0.0-beta.125",
"license": "MIT",
"dependencies": {
"@redocly/openapi-core": "1.0.0-beta.124",
"@redocly/openapi-core": "1.0.0-beta.125",
"assert-node-version": "^1.0.3",
"chokidar": "^3.5.1",
"colorette": "^1.2.0",
@@ -9620,7 +9620,7 @@
},
"packages/core": {
"name": "@redocly/openapi-core",
"version": "1.0.0-beta.124",
"version": "1.0.0-beta.125",
"license": "MIT",
"dependencies": {
"@redocly/ajv": "^8.11.0",
@@ -10583,7 +10583,7 @@
"@redocly/cli": {
"version": "file:packages/cli",
"requires": {
"@redocly/openapi-core": "1.0.0-beta.124",
"@redocly/openapi-core": "1.0.0-beta.125",
"@types/configstore": "^5.0.1",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",

View File

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

View File

@@ -1,6 +1,6 @@
{
"name": "@redocly/cli",
"version": "1.0.0-beta.124",
"version": "1.0.0-beta.125",
"description": "",
"license": "MIT",
"bin": {
@@ -33,7 +33,7 @@
"Roman Hotsiy <roman@redoc.ly> (https://redoc.ly/)"
],
"dependencies": {
"@redocly/openapi-core": "1.0.0-beta.124",
"@redocly/openapi-core": "1.0.0-beta.125",
"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.124",
"version": "1.0.0-beta.125",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@redocly/openapi-core",
"version": "1.0.0-beta.124",
"version": "1.0.0-beta.125",
"license": "MIT",
"dependencies": {
"@redocly/ajv": "^8.11.0",

View File

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