Skip to content

Commit ab3d593

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

File tree

7 files changed

+51
-11
lines changed

7 files changed

+51
-11
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.3.0",
3-
"packages/eslint-scope": "8.3.0",
4-
"packages/eslint-visitor-keys": "4.2.0"
2+
"packages/espree": "10.4.0",
3+
"packages/eslint-scope": "8.4.0",
4+
"packages/eslint-visitor-keys": "4.2.1"
55
}

packages/eslint-scope/CHANGELOG.md

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

3+
## [8.4.0](https://github.com/eslint/js/compare/eslint-scope-v8.3.0...eslint-scope-v8.4.0) (2025-06-09)
4+
5+
6+
### Features
7+
8+
* Add support for ES2026 `using` and `await using` declarations ([#658](https://github.com/eslint/js/issues/658)) ([39e0865](https://github.com/eslint/js/commit/39e086509a0164dcea960719fb9673c73452f36e))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* devDependencies
15+
* eslint-visitor-keys bumped from ^4.2.0 to ^4.2.1
16+
* espree bumped from ^10.3.0 to ^10.4.0
17+
318
## [8.3.0](https://github.com/eslint/js/compare/eslint-scope-v8.2.0...eslint-scope-v8.3.0) (2025-03-07)
419

520

packages/eslint-scope/package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"./package.json": "./package.json"
1313
},
14-
"version": "8.3.0",
14+
"version": "8.4.0",
1515
"engines": {
1616
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1717
},
@@ -21,7 +21,9 @@
2121
"directory": "packages/eslint-scope"
2222
},
2323
"funding": "https://opencollective.com/eslint",
24-
"keywords": ["eslint"],
24+
"keywords": [
25+
"eslint"
26+
],
2527
"bugs": {
2628
"url": "https://github.com/eslint/js/issues"
2729
},
@@ -52,8 +54,8 @@
5254
"@typescript-eslint/parser": "^8.7.0",
5355
"chai": "^4.3.4",
5456
"eslint-release": "^3.2.0",
55-
"eslint-visitor-keys": "^4.2.0",
56-
"espree": "^10.3.0",
57+
"eslint-visitor-keys": "^4.2.1",
58+
"espree": "^10.4.0",
5759
"npm-license": "^0.3.3",
5860
"rollup": "^2.52.7",
5961
"shelljs": "^0.8.5",

packages/eslint-visitor-keys/CHANGELOG.md

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

3+
## [4.2.1](https://github.com/eslint/js/compare/eslint-visitor-keys-v4.2.0...eslint-visitor-keys-v4.2.1) (2025-06-09)
4+
5+
6+
### Bug Fixes
7+
8+
* order visitor keys for `ExportSpecifier` in source code order ([#656](https://github.com/eslint/js/issues/656)) ([dbad7d8](https://github.com/eslint/js/commit/dbad7d8aeab3f24253ab846f1247a33b7ddd0f19))
9+
310
## [4.2.0](https://github.com/eslint/js/compare/eslint-visitor-keys-v4.1.0...eslint-visitor-keys-v4.2.0) (2024-10-29)
411

512

packages/eslint-visitor-keys/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-visitor-keys",
3-
"version": "4.2.0",
3+
"version": "4.2.1",
44
"description": "Constants and utilities about visitor keys to traverse AST.",
55
"type": "module",
66
"main": "dist/eslint-visitor-keys.cjs",
@@ -58,7 +58,9 @@
5858
"directory": "packages/eslint-visitor-keys"
5959
},
6060
"funding": "https://opencollective.com/eslint",
61-
"keywords": ["eslint"],
61+
"keywords": [
62+
"eslint"
63+
],
6264
"author": "Toru Nagashima (https://github.com/mysticatea)",
6365
"license": "Apache-2.0",
6466
"bugs": {

packages/espree/CHANGELOG.md

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

3+
## [10.4.0](https://github.com/eslint/js/compare/espree-v10.3.0...espree-v10.4.0) (2025-06-09)
4+
5+
6+
### Features
7+
8+
* Add support for ES2026 `using` and `await using` declarations ([#658](https://github.com/eslint/js/issues/658)) ([39e0865](https://github.com/eslint/js/commit/39e086509a0164dcea960719fb9673c73452f36e))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* eslint-visitor-keys bumped from ^4.2.0 to ^4.2.1
16+
317
## [10.3.0](https://github.com/eslint/js/compare/espree-v10.2.0...espree-v10.3.0) (2024-10-29)
418

519

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.3.0",
19+
"version": "10.4.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.0"
41+
"eslint-visitor-keys": "^4.2.1"
4242
},
4343
"devDependencies": {
4444
"@rollup/plugin-commonjs": "^28.0.0",

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy