Skip to content

Commit 3efd403

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

File tree

7 files changed

+61
-9
lines changed

7 files changed

+61
-9
lines changed

.release-please-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"packages/espree": "10.4.0",
3-
"packages/eslint-scope": "8.4.0",
4-
"packages/eslint-visitor-keys": "4.2.1"
2+
"packages/espree": "11.0.0",
3+
"packages/eslint-scope": "9.0.0",
4+
"packages/eslint-visitor-keys": "5.0.0"
55
}

packages/eslint-scope/CHANGELOG.md

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

3+
## [9.0.0](https://github.com/eslint/js/compare/eslint-scope-v8.4.0...eslint-scope-v9.0.0) (2025-11-07)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Resolve references to global `var`/`function`, add `addGlobals()` ([#682](https://github.com/eslint/js/issues/682))
9+
* Require Node.js `^20.19.0 || ^22.13.0 || >=24` ([#696](https://github.com/eslint/js/issues/696))
10+
11+
### Features
12+
13+
* Require Node.js `^20.19.0 || ^22.13.0 || >=24` ([#696](https://github.com/eslint/js/issues/696)) ([9c84ecb](https://github.com/eslint/js/commit/9c84ecb6beb539ee08506de537a78a4585bb3afa))
14+
* Resolve references to global `var`/`function`, add `addGlobals()` ([#682](https://github.com/eslint/js/issues/682)) ([f007b46](https://github.com/eslint/js/commit/f007b465e5e55bd88c81fd7b7a54df06180d5d7c))
15+
16+
17+
### Dependencies
18+
19+
* The following workspace dependencies were updated
20+
* devDependencies
21+
* eslint-visitor-keys bumped from ^4.2.1 to ^5.0.0
22+
* espree bumped from ^10.4.0 to ^11.0.0
23+
324
## [8.4.0](https://github.com/eslint/js/compare/eslint-scope-v8.3.0...eslint-scope-v8.4.0) (2025-06-09)
425

526

packages/eslint-scope/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"./package.json": "./package.json"
1313
},
14-
"version": "8.4.0",
14+
"version": "9.0.0",
1515
"engines": {
1616
"node": "^20.19.0 || ^22.13.0 || >=24"
1717
},
@@ -48,8 +48,8 @@
4848
"devDependencies": {
4949
"@typescript-eslint/parser": "^8.7.0",
5050
"chai": "^6.0.0",
51-
"eslint-visitor-keys": "^4.2.1",
52-
"espree": "^10.4.0",
51+
"eslint-visitor-keys": "^5.0.0",
52+
"espree": "^11.0.0",
5353
"npm-license": "^0.3.3",
5454
"rollup": "^2.52.7",
5555
"shelljs": "^0.8.5",

packages/eslint-visitor-keys/CHANGELOG.md

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

3+
## [5.0.0](https://github.com/eslint/js/compare/eslint-visitor-keys-v4.2.1...eslint-visitor-keys-v5.0.0) (2025-11-07)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Require Node.js `^20.19.0 || ^22.13.0 || >=24` ([#696](https://github.com/eslint/js/issues/696))
9+
10+
### Features
11+
12+
* Require Node.js `^20.19.0 || ^22.13.0 || >=24` ([#696](https://github.com/eslint/js/issues/696)) ([9c84ecb](https://github.com/eslint/js/commit/9c84ecb6beb539ee08506de537a78a4585bb3afa))
13+
314
## [4.2.1](https://github.com/eslint/js/compare/eslint-visitor-keys-v4.2.0...eslint-visitor-keys-v4.2.1) (2025-06-09)
415

516

packages/eslint-visitor-keys/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-visitor-keys",
3-
"version": "4.2.1",
3+
"version": "5.0.0",
44
"description": "Constants and utilities about visitor keys to traverse AST.",
55
"type": "module",
66
"main": "dist/eslint-visitor-keys.cjs",

packages/espree/CHANGELOG.md

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

3+
## [11.0.0](https://github.com/eslint/js/compare/espree-v10.4.0...espree-v11.0.0) (2025-11-07)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Program range span entire source text ([#677](https://github.com/eslint/js/issues/677))
9+
* Require Node.js `^20.19.0 || ^22.13.0 || >=24` ([#696](https://github.com/eslint/js/issues/696))
10+
11+
### Features
12+
13+
* Program range span entire source text ([#677](https://github.com/eslint/js/issues/677)) ([68bbb74](https://github.com/eslint/js/commit/68bbb7426d7beec3b9c3e658ac5a17cede83cbe9))
14+
* Require Node.js `^20.19.0 || ^22.13.0 || >=24` ([#696](https://github.com/eslint/js/issues/696)) ([9c84ecb](https://github.com/eslint/js/commit/9c84ecb6beb539ee08506de537a78a4585bb3afa))
15+
16+
17+
### Dependencies
18+
19+
* The following workspace dependencies were updated
20+
* dependencies
21+
* eslint-visitor-keys bumped from ^4.2.1 to ^5.0.0
22+
323
## [10.4.0](https://github.com/eslint/js/compare/espree-v10.3.0...espree-v10.4.0) (2025-06-09)
424

525

packages/espree/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"./package.json": "./package.json"
1818
},
19-
"version": "10.4.0",
19+
"version": "11.0.0",
2020
"files": [
2121
"lib",
2222
"dist/espree.cjs",
@@ -38,7 +38,7 @@
3838
"dependencies": {
3939
"acorn": "^8.15.0",
4040
"acorn-jsx": "^5.3.2",
41-
"eslint-visitor-keys": "^4.2.1"
41+
"eslint-visitor-keys": "^5.0.0"
4242
},
4343
"devDependencies": {
4444
"@rollup/plugin-commonjs": "^28.0.0",

0 commit comments

Comments
 (0)