Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/silent-facts-wonder.md

This file was deleted.

9 changes: 9 additions & 0 deletions docs/@v2/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ toc:

<!-- do-not-remove -->

## 2.14.3 (2026-01-02)

### Patch Changes

- Fixed the `split` command to properly handle root-level paths.
Previously, the root path `/` was converted to an empty string as a filename, leading to incorrect file structure and broken links.
Now, it correctly maps to the specified path separator.
- Updated @redocly/openapi-core to v2.14.3.

## 2.14.2 (2025-12-30)

### Patch Changes
Expand Down
98 changes: 37 additions & 61 deletions package-lock.json

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @redocly/cli

## 2.14.3

### Patch Changes

- Fixed the `split` command to properly handle root-level paths.
Previously, the root path `/` was converted to an empty string as a filename, leading to incorrect file structure and broken links.
Now, it correctly maps to the specified path separator.
- Updated @redocly/openapi-core to v2.14.3.

## 2.14.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redocly/cli",
"version": "2.14.2",
"version": "2.14.3",
"description": "",
"license": "MIT",
"bin": {
Expand Down Expand Up @@ -42,8 +42,8 @@
"@opentelemetry/resources": "2.0.1",
"@opentelemetry/sdk-trace-node": "2.0.1",
"@opentelemetry/semantic-conventions": "1.34.0",
"@redocly/openapi-core": "2.14.2",
"@redocly/respect-core": "2.14.2",
"@redocly/openapi-core": "2.14.3",
"@redocly/respect-core": "2.14.3",
"abort-controller": "^3.0.0",
"ajv-formats": "^3.0.1",
"chokidar": "^3.5.1",
Expand Down
2 changes: 2 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @redocly/openapi-core

## 2.14.3

## 2.14.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redocly/openapi-core",
"version": "2.14.2",
"version": "2.14.3",
"description": "",
"type": "module",
"types": "lib/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions packages/respect-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @redocly/respect-core

## 2.14.3

### Patch Changes

- Updated @redocly/openapi-core to v2.14.3.

## 2.14.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/respect-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redocly/respect-core",
"version": "2.14.2",
"version": "2.14.3",
"description": "API testing framework core",
"type": "module",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -40,7 +40,7 @@
"@faker-js/faker": "^7.6.0",
"@noble/hashes": "^1.8.0",
"@redocly/ajv": "8.17.1",
"@redocly/openapi-core": "2.14.2",
"@redocly/openapi-core": "2.14.3",
"better-ajv-errors": "^1.2.0",
"colorette": "^2.0.20",
"json-pointer": "^0.6.2",
Expand Down
Loading