mirror of
https://github.com/LukeHagar/redocly-cli.git
synced 2025-12-06 04:21:09 +00:00
chore: 🔖 release new versions (#1218)
This commit is contained in:
committed by
GitHub
parent
0ea1b59f7e
commit
b8bf0075ac
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@redocly/openapi-core': minor
|
||||
'@redocly/cli': minor
|
||||
---
|
||||
|
||||
Added `ignoreCase` option for `tags-alphabetical` rule.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@redocly/openapi-core': patch
|
||||
'@redocly/cli': patch
|
||||
---
|
||||
|
||||
Fixed an issue where the `--remove-unused-components` option removed used components that were referenced as child objects.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@redocly/cli': minor
|
||||
---
|
||||
|
||||
Added `join` support for OAS 3.1 definitions.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@redocly/openapi-core': patch
|
||||
'@redocly/cli': patch
|
||||
---
|
||||
|
||||
Updated Redocly config validation.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@redocly/openapi-core': patch
|
||||
'@redocly/cli': patch
|
||||
---
|
||||
|
||||
Fixed the location pointer when reporting on the `no-path-trailing-slash` rule.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@redocly/cli': minor
|
||||
---
|
||||
|
||||
Added support for Redoc v2.1.2, and aligned the dependencies for both projects.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@redocly/cli': patch
|
||||
---
|
||||
|
||||
Updated minimum required version of Node.js to v14 and removed deprecated packages.
|
||||
@@ -8,6 +8,22 @@ toc:
|
||||
|
||||
<!-- do-not-remove -->
|
||||
|
||||
## 1.1.0 (2023-09-14)
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- Added `ignoreCase` option for `tags-alphabetical` rule.
|
||||
- Added `join` support for OAS 3.1 definitions.
|
||||
- Added support for Redoc v2.1.2, and aligned the dependencies for both projects.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Fixed an issue where the `--remove-unused-components` option removed used components that were referenced as child objects.
|
||||
- Updated Redocly config validation.
|
||||
- Fixed the location pointer when reporting on the `no-path-trailing-slash` rule.
|
||||
- Updated minimum required version of Node.js to v14 and removed deprecated packages.
|
||||
- Updated @redocly/openapi-core to v1.1.0.
|
||||
|
||||
## 1.0.2 (2023-08-07)
|
||||
|
||||
### Patch Changes
|
||||
|
||||
8
package-lock.json
generated
8
package-lock.json
generated
@@ -14288,10 +14288,10 @@
|
||||
},
|
||||
"packages/cli": {
|
||||
"name": "@redocly/cli",
|
||||
"version": "1.0.2",
|
||||
"version": "1.1.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@redocly/openapi-core": "1.0.2",
|
||||
"@redocly/openapi-core": "1.1.0",
|
||||
"chokidar": "^3.5.1",
|
||||
"colorette": "^1.2.0",
|
||||
"core-js": "^3.32.1",
|
||||
@@ -14335,7 +14335,7 @@
|
||||
},
|
||||
"packages/core": {
|
||||
"name": "@redocly/openapi-core",
|
||||
"version": "1.0.2",
|
||||
"version": "1.1.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@redocly/ajv": "^8.11.0",
|
||||
@@ -16890,7 +16890,7 @@
|
||||
"@redocly/cli": {
|
||||
"version": "file:packages/cli",
|
||||
"requires": {
|
||||
"@redocly/openapi-core": "1.0.2",
|
||||
"@redocly/openapi-core": "1.1.0",
|
||||
"@types/configstore": "^5.0.1",
|
||||
"@types/glob": "^8.1.0",
|
||||
"@types/react": "^17.0.0 || ^18.2.21",
|
||||
|
||||
@@ -1,5 +1,21 @@
|
||||
# @redocly/cli
|
||||
|
||||
## 1.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- Added `ignoreCase` option for `tags-alphabetical` rule.
|
||||
- Added `join` support for OAS 3.1 definitions.
|
||||
- Added support for Redoc v2.1.2, and aligned the dependencies for both projects.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Fixed an issue where the `--remove-unused-components` option removed used components that were referenced as child objects.
|
||||
- Updated Redocly config validation.
|
||||
- Fixed the location pointer when reporting on the `no-path-trailing-slash` rule.
|
||||
- Updated minimum required version of Node.js to v14 and removed deprecated packages.
|
||||
- Updated @redocly/openapi-core to v1.1.0.
|
||||
|
||||
## 1.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@redocly/cli",
|
||||
"version": "1.0.2",
|
||||
"version": "1.1.0",
|
||||
"description": "",
|
||||
"license": "MIT",
|
||||
"bin": {
|
||||
@@ -34,7 +34,7 @@
|
||||
"Roman Hotsiy <roman@redoc.ly> (https://redoc.ly/)"
|
||||
],
|
||||
"dependencies": {
|
||||
"@redocly/openapi-core": "1.0.2",
|
||||
"@redocly/openapi-core": "1.1.0",
|
||||
"chokidar": "^3.5.1",
|
||||
"colorette": "^1.2.0",
|
||||
"core-js": "^3.32.1",
|
||||
|
||||
@@ -1,5 +1,17 @@
|
||||
# @redocly/openapi-core
|
||||
|
||||
## 1.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- Added `ignoreCase` option for `tags-alphabetical` rule.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Fixed an issue where the `--remove-unused-components` option removed used components that were referenced as child objects.
|
||||
- Updated Redocly config validation.
|
||||
- Fixed the location pointer when reporting on the `no-path-trailing-slash` rule.
|
||||
|
||||
## 1.0.2
|
||||
|
||||
## 1.0.1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@redocly/openapi-core",
|
||||
"version": "1.0.2",
|
||||
"version": "1.1.0",
|
||||
"description": "",
|
||||
"main": "lib/index.js",
|
||||
"engines": {
|
||||
|
||||
Reference in New Issue
Block a user