Skip to content

Commit a66e679

Browse files
chore: 🔖 release new versions (next) (#2200)
1 parent 3bdf00a commit a66e679

File tree

9 files changed

+91
-15
lines changed

9 files changed

+91
-15
lines changed

.changeset/pre.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@
1616
"cold-ducks-bake",
1717
"cyan-months-visit",
1818
"cyan-points-pull",
19+
"eight-onions-visit",
1920
"fuzzy-ducks-exist",
2021
"good-vans-sell",
2122
"happy-gorillas-march",
23+
"lazy-ears-learn",
2224
"long-cows-teach",
2325
"long-ducks-deliver",
2426
"metal-bears-fetch",
27+
"modern-fishes-float",
2528
"new-actors-study",
2629
"nice-cups-sing",
2730
"odd-ladybugs-tan",
@@ -36,6 +39,7 @@
3639
"thin-rings-sell",
3740
"thin-timers-play",
3841
"three-chairs-cover",
42+
"tough-keys-compare",
3943
"unlucky-meals-hunt",
4044
"warm-suns-try",
4145
"young-olives-rest",

docs/@v2/changelog.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@ toc:
77

88
<!-- do-not-remove -->
99

10+
## 2.0.0-next.8 (2025-07-23)
11+
12+
### Major Changes
13+
14+
- Removed support for default config file names other than `redocly.yaml`.
15+
16+
### Minor Changes
17+
18+
- Enabled `no-required-schema-properties-undefined`, `no-schema-type-mismatch`, and `no-enum-type-mismatch` rules for **AsyncAPI** and **Arazzo** specifications.
19+
Adjusted the rules' severities in the `recommended` and `minimal` rulesets. Refer to the following table:
20+
21+
| Rule \ Ruleset | recommended | minimal |
22+
| --------------------------------------- | ----------------- | --------------- |
23+
| no-required-schema-properties-undefined | `off` -> `warn` | `off` -> `warn` |
24+
| no-enum-type-mismatch | `error` | `warn` |
25+
| no-schema-type-mismatch | `warn` -> `error` | `off` -> `warn` |
26+
27+
### Patch Changes
28+
29+
- Fixed plugins validation in config files referenced in the `extends` section.
30+
- Updated @redocly/openapi-core to v2.0.0-next.8.
31+
1032
## 2.0.0-next.7 (2025-07-21)
1133

1234
### Patch Changes

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cli/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# @redocly/cli
22

3+
## 2.0.0-next.8
4+
5+
### Major Changes
6+
7+
- Removed support for default config file names other than `redocly.yaml`.
8+
9+
### Minor Changes
10+
11+
- Enabled `no-required-schema-properties-undefined`, `no-schema-type-mismatch`, and `no-enum-type-mismatch` rules for **AsyncAPI** and **Arazzo** specifications.
12+
Adjusted the rules' severities in the `recommended` and `minimal` rulesets. Refer to the following table:
13+
14+
| Rule \ Ruleset | recommended | minimal |
15+
| --------------------------------------- | ----------------- | --------------- |
16+
| no-required-schema-properties-undefined | `off` -> `warn` | `off` -> `warn` |
17+
| no-enum-type-mismatch | `error` | `warn` |
18+
| no-schema-type-mismatch | `warn` -> `error` | `off` -> `warn` |
19+
20+
### Patch Changes
21+
22+
- Fixed plugins validation in config files referenced in the `extends` section.
23+
- Updated @redocly/openapi-core to v2.0.0-next.8.
24+
325
## 2.0.0-next.7
426

527
### Patch Changes

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redocly/cli",
3-
"version": "2.0.0-next.7",
3+
"version": "2.0.0-next.8",
44
"description": "",
55
"license": "MIT",
66
"bin": {
@@ -43,8 +43,8 @@
4343
"@opentelemetry/sdk-trace-node": "2.0.1",
4444
"@opentelemetry/semantic-conventions": "1.34.0",
4545
"@redocly/config": "^0.26.4",
46-
"@redocly/openapi-core": "2.0.0-next.7",
47-
"@redocly/respect-core": "2.0.0-next.7",
46+
"@redocly/openapi-core": "2.0.0-next.8",
47+
"@redocly/respect-core": "2.0.0-next.8",
4848
"abort-controller": "^3.0.0",
4949
"chokidar": "^3.5.1",
5050
"colorette": "^1.2.0",

packages/core/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# @redocly/openapi-core
22

3+
## 2.0.0-next.8
4+
5+
### Major Changes
6+
7+
- Removed support for default config file names other than `redocly.yaml`.
8+
9+
### Minor Changes
10+
11+
- Enabled `no-required-schema-properties-undefined`, `no-schema-type-mismatch`, and `no-enum-type-mismatch` rules for **AsyncAPI** and **Arazzo** specifications.
12+
Adjusted the rules' severities in the `recommended` and `minimal` rulesets. Refer to the following table:
13+
14+
| Rule \ Ruleset | recommended | minimal |
15+
| --------------------------------------- | ----------------- | --------------- |
16+
| no-required-schema-properties-undefined | `off` -> `warn` | `off` -> `warn` |
17+
| no-enum-type-mismatch | `error` | `warn` |
18+
| no-schema-type-mismatch | `warn` -> `error` | `off` -> `warn` |
19+
20+
### Patch Changes
21+
22+
- Fixed plugins validation in config files referenced in the `extends` section.
23+
- Fixed an issue where the config resolver grouped assertions instead of returning unchanged rules.
24+
325
## 2.0.0-next.7
426

527
### Patch Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redocly/openapi-core",
3-
"version": "2.0.0-next.7",
3+
"version": "2.0.0-next.8",
44
"description": "",
55
"type": "module",
66
"types": "lib/index.d.ts",

packages/respect-core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @redocly/respect-core
22

3+
## 2.0.0-next.8
4+
5+
### Patch Changes
6+
7+
- Updated @redocly/openapi-core to v2.0.0-next.8.
8+
39
## 2.0.0-next.7
410

511
### Patch Changes

packages/respect-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redocly/respect-core",
3-
"version": "2.0.0-next.7",
3+
"version": "2.0.0-next.8",
44
"description": "API testing framework core",
55
"type": "module",
66
"types": "lib/index.d.ts",
@@ -43,7 +43,7 @@
4343
"dependencies": {
4444
"@faker-js/faker": "^7.6.0",
4545
"@redocly/ajv": "8.11.2",
46-
"@redocly/openapi-core": "2.0.0-next.7",
46+
"@redocly/openapi-core": "2.0.0-next.8",
4747
"better-ajv-errors": "^1.2.0",
4848
"colorette": "^2.0.20",
4949
"concat-stream": "^2.0.0",

0 commit comments

Comments
 (0)