Skip to content

Commit df12d9a

Browse files
chore: release main (#296)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent f8df139 commit df12d9a

File tree

10 files changed

+41
-10
lines changed

10 files changed

+41
-10
lines changed

.release-please-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"packages/compat": "1.4.0",
3-
"packages/config-array": "0.21.0",
4-
"packages/config-helpers": "0.4.0",
3+
"packages/config-array": "0.21.1",
4+
"packages/config-helpers": "0.4.1",
55
"packages/core": "0.16.0",
66
"packages/mcp": "0.1.1",
77
"packages/migrate-config": "1.6.0",
8-
"packages/object-schema": "2.1.6",
8+
"packages/object-schema": "2.1.7",
99
"packages/plugin-kit": "0.4.0"
1010
}

packages/config-array/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.21.1](https://github.com/eslint/rewrite/compare/config-array-v0.21.0...config-array-v0.21.1) (2025-10-17)
4+
5+
6+
### Bug Fixes
7+
8+
* fix `config-array` and `object-schema` types ([#294](https://github.com/eslint/rewrite/issues/294)) ([a902bc4](https://github.com/eslint/rewrite/commit/a902bc4e27639ba5975b5d793314235737dc2c1a))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @eslint/object-schema bumped from ^2.1.6 to ^2.1.7
16+
317
## [0.21.0](https://github.com/eslint/rewrite/compare/config-array-v0.20.1...config-array-v0.21.0) (2025-06-25)
418

519

packages/config-array/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/config-array",
3-
"version": "0.21.0",
3+
"version": "0.21.1",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

packages/config-array/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/config-array",
3-
"version": "0.21.0",
3+
"version": "0.21.1",
44
"description": "General purpose glob-based configuration matching.",
55
"author": "Nicholas C. Zakas",
66
"type": "module",
@@ -49,7 +49,7 @@
4949
],
5050
"license": "Apache-2.0",
5151
"dependencies": {
52-
"@eslint/object-schema": "^2.1.6",
52+
"@eslint/object-schema": "^2.1.7",
5353
"debug": "^4.3.1",
5454
"minimatch": "^3.1.2"
5555
},

packages/config-helpers/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.4.1](https://github.com/eslint/rewrite/compare/config-helpers-v0.4.0...config-helpers-v0.4.1) (2025-10-17)
4+
5+
6+
### Bug Fixes
7+
8+
* add validation for `plugins` in isLegacyConfig ([#292](https://github.com/eslint/rewrite/issues/292)) ([74f9427](https://github.com/eslint/rewrite/commit/74f9427b47de313582793ab6fc4c723f1526fdc0))
9+
* improve type support for isolated dependencies in pnpm ([#289](https://github.com/eslint/rewrite/issues/289)) ([f8df139](https://github.com/eslint/rewrite/commit/f8df139631694431ecfc651e656932e283d4d14f))
10+
* use flat config when eslintrc config does not exist ([#288](https://github.com/eslint/rewrite/issues/288)) ([ddc8577](https://github.com/eslint/rewrite/commit/ddc857781bacab1cdd7c540e599d3ed968607a09))
11+
312
## [0.4.0](https://github.com/eslint/rewrite/compare/config-helpers-v0.3.1...config-helpers-v0.4.0) (2025-09-16)
413

514

packages/config-helpers/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/config-helpers",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

packages/config-helpers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/config-helpers",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "Helper utilities for creating ESLint configuration",
55
"type": "module",
66
"main": "dist/esm/index.js",

packages/object-schema/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [2.1.7](https://github.com/eslint/rewrite/compare/object-schema-v2.1.6...object-schema-v2.1.7) (2025-10-17)
4+
5+
6+
### Bug Fixes
7+
8+
* fix `config-array` and `object-schema` types ([#294](https://github.com/eslint/rewrite/issues/294)) ([a902bc4](https://github.com/eslint/rewrite/commit/a902bc4e27639ba5975b5d793314235737dc2c1a))
9+
* improve type support for isolated dependencies in pnpm ([#289](https://github.com/eslint/rewrite/issues/289)) ([f8df139](https://github.com/eslint/rewrite/commit/f8df139631694431ecfc651e656932e283d4d14f))
10+
311
## [2.1.6](https://github.com/eslint/rewrite/compare/object-schema-v2.1.5...object-schema-v2.1.6) (2025-01-31)
412

513

packages/object-schema/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/object-schema",
3-
"version": "2.1.6",
3+
"version": "2.1.7",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

packages/object-schema/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/object-schema",
3-
"version": "2.1.6",
3+
"version": "2.1.7",
44
"description": "An object schema merger/validator",
55
"type": "module",
66
"main": "dist/esm/index.js",

0 commit comments

Comments
 (0)