Skip to content

Commit 3920c93

Browse files
chore(release): publish 8.4.0
1 parent 51e947c commit 3920c93

File tree

26 files changed

+175
-82
lines changed

26 files changed

+175
-82
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 8.4.0 (2024-09-02)
2+
3+
4+
### 🚀 Features
5+
6+
- **typescript-estree:** make withoutProjectParserOptions generic ([#9877](https://github.com/typescript-eslint/typescript-eslint/pull/9877))
7+
8+
### ❤️ Thank You
9+
10+
- Josh Goldberg ✨
11+
12+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
13+
114
## 8.3.0 (2024-08-26)
215

316

packages/ast-spec/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.4.0 (2024-09-02)
2+
3+
This was a version bump only for ast-spec to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 8.3.0 (2024-08-26)
28

39

packages/ast-spec/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/ast-spec",
3-
"version": "8.3.0",
3+
"version": "8.4.0",
44
"description": "Complete specification for the TypeScript-ESTree AST",
55
"private": true,
66
"keywords": [

packages/eslint-plugin/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.4.0 (2024-09-02)
2+
3+
This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 8.3.0 (2024-08-26)
28

39

packages/eslint-plugin/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin",
3-
"version": "8.3.0",
3+
"version": "8.4.0",
44
"description": "TypeScript plugin for ESLint",
55
"files": [
66
"dist",
@@ -60,10 +60,10 @@
6060
},
6161
"dependencies": {
6262
"@eslint-community/regexpp": "^4.10.0",
63-
"@typescript-eslint/scope-manager": "8.3.0",
64-
"@typescript-eslint/type-utils": "8.3.0",
65-
"@typescript-eslint/utils": "8.3.0",
66-
"@typescript-eslint/visitor-keys": "8.3.0",
63+
"@typescript-eslint/scope-manager": "8.4.0",
64+
"@typescript-eslint/type-utils": "8.4.0",
65+
"@typescript-eslint/utils": "8.4.0",
66+
"@typescript-eslint/visitor-keys": "8.4.0",
6767
"graphemer": "^1.4.0",
6868
"ignore": "^5.3.1",
6969
"natural-compare": "^1.4.0",
@@ -74,8 +74,8 @@
7474
"@types/marked": "^5.0.2",
7575
"@types/mdast": "^4.0.3",
7676
"@types/natural-compare": "*",
77-
"@typescript-eslint/rule-schema-to-typescript-types": "8.3.0",
78-
"@typescript-eslint/rule-tester": "8.3.0",
77+
"@typescript-eslint/rule-schema-to-typescript-types": "8.4.0",
78+
"@typescript-eslint/rule-tester": "8.4.0",
7979
"ajv": "^6.12.6",
8080
"cross-env": "^7.0.3",
8181
"cross-fetch": "*",

packages/parser/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.4.0 (2024-09-02)
2+
3+
This was a version bump only for parser to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 8.3.0 (2024-08-26)
28

39
This was a version bump only for parser to align it with other projects, there were no code changes.

packages/parser/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/parser",
3-
"version": "8.3.0",
3+
"version": "8.4.0",
44
"description": "An ESLint custom parser which leverages TypeScript ESTree",
55
"files": [
66
"dist",
@@ -52,10 +52,10 @@
5252
"eslint": "^8.57.0 || ^9.0.0"
5353
},
5454
"dependencies": {
55-
"@typescript-eslint/scope-manager": "8.3.0",
56-
"@typescript-eslint/types": "8.3.0",
57-
"@typescript-eslint/typescript-estree": "8.3.0",
58-
"@typescript-eslint/visitor-keys": "8.3.0",
55+
"@typescript-eslint/scope-manager": "8.4.0",
56+
"@typescript-eslint/types": "8.4.0",
57+
"@typescript-eslint/typescript-estree": "8.4.0",
58+
"@typescript-eslint/visitor-keys": "8.4.0",
5959
"debug": "^4.3.4"
6060
},
6161
"devDependencies": {

packages/rule-schema-to-typescript-types/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.4.0 (2024-09-02)
2+
3+
This was a version bump only for rule-schema-to-typescript-types to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 8.3.0 (2024-08-26)
28

39
This was a version bump only for rule-schema-to-typescript-types to align it with other projects, there were no code changes.

packages/rule-schema-to-typescript-types/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/rule-schema-to-typescript-types",
3-
"version": "8.3.0",
3+
"version": "8.4.0",
44
"private": true,
55
"type": "commonjs",
66
"exports": {
@@ -34,8 +34,8 @@
3434
"typecheck": "tsc --noEmit"
3535
},
3636
"dependencies": {
37-
"@typescript-eslint/type-utils": "8.3.0",
38-
"@typescript-eslint/utils": "8.3.0",
37+
"@typescript-eslint/type-utils": "8.4.0",
38+
"@typescript-eslint/utils": "8.4.0",
3939
"natural-compare": "^1.4.0",
4040
"prettier": "^3.2.5"
4141
},

packages/rule-tester/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.4.0 (2024-09-02)
2+
3+
This was a version bump only for rule-tester to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 8.3.0 (2024-08-26)
28

39
This was a version bump only for rule-tester to align it with other projects, there were no code changes.

packages/rule-tester/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/rule-tester",
3-
"version": "8.3.0",
3+
"version": "8.4.0",
44
"description": "Tooling to test ESLint rules",
55
"files": [
66
"dist",
@@ -48,8 +48,8 @@
4848
},
4949
"//": "NOTE - AJV is out-of-date, but it's intentionally synced with ESLint - https://github.com/eslint/eslint/blob/ad9dd6a933fd098a0d99c6a9aa059850535c23ee/package.json#L70",
5050
"dependencies": {
51-
"@typescript-eslint/typescript-estree": "8.3.0",
52-
"@typescript-eslint/utils": "8.3.0",
51+
"@typescript-eslint/typescript-estree": "8.4.0",
52+
"@typescript-eslint/utils": "8.4.0",
5353
"ajv": "^6.12.6",
5454
"json-stable-stringify-without-jsonify": "^1.0.1",
5555
"lodash.merge": "4.6.2",
@@ -62,7 +62,7 @@
6262
"@jest/types": "29.6.3",
6363
"@types/json-stable-stringify-without-jsonify": "^1.0.2",
6464
"@types/lodash.merge": "4.6.9",
65-
"@typescript-eslint/parser": "8.3.0",
65+
"@typescript-eslint/parser": "8.4.0",
6666
"chai": "^4.4.1",
6767
"eslint-visitor-keys": "^4.0.0",
6868
"espree": "^10.0.1",

packages/scope-manager/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.4.0 (2024-09-02)
2+
3+
This was a version bump only for scope-manager to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 8.3.0 (2024-08-26)
28

39

packages/scope-manager/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/scope-manager",
3-
"version": "8.3.0",
3+
"version": "8.4.0",
44
"description": "TypeScript scope analyser for ESLint",
55
"files": [
66
"dist",
@@ -46,13 +46,13 @@
4646
"typecheck": "npx nx typecheck"
4747
},
4848
"dependencies": {
49-
"@typescript-eslint/types": "8.3.0",
50-
"@typescript-eslint/visitor-keys": "8.3.0"
49+
"@typescript-eslint/types": "8.4.0",
50+
"@typescript-eslint/visitor-keys": "8.4.0"
5151
},
5252
"devDependencies": {
5353
"@jest/types": "29.6.3",
5454
"@types/glob": "*",
55-
"@typescript-eslint/typescript-estree": "8.3.0",
55+
"@typescript-eslint/typescript-estree": "8.4.0",
5656
"glob": "*",
5757
"jest-specific-snapshot": "*",
5858
"make-dir": "*",

packages/type-utils/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.4.0 (2024-09-02)
2+
3+
This was a version bump only for type-utils to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 8.3.0 (2024-08-26)
28

39

packages/type-utils/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/type-utils",
3-
"version": "8.3.0",
3+
"version": "8.4.0",
44
"description": "Type utilities for working with TypeScript + ESLint together",
55
"files": [
66
"dist",
@@ -46,14 +46,14 @@
4646
"typecheck": "tsc --noEmit"
4747
},
4848
"dependencies": {
49-
"@typescript-eslint/typescript-estree": "8.3.0",
50-
"@typescript-eslint/utils": "8.3.0",
49+
"@typescript-eslint/typescript-estree": "8.4.0",
50+
"@typescript-eslint/utils": "8.4.0",
5151
"debug": "^4.3.4",
5252
"ts-api-utils": "^1.3.0"
5353
},
5454
"devDependencies": {
5555
"@jest/types": "29.6.3",
56-
"@typescript-eslint/parser": "8.3.0",
56+
"@typescript-eslint/parser": "8.4.0",
5757
"ajv": "^6.12.6",
5858
"downlevel-dts": "*",
5959
"jest": "29.7.0",

packages/types/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.4.0 (2024-09-02)
2+
3+
This was a version bump only for types to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 8.3.0 (2024-08-26)
28

39
This was a version bump only for types to align it with other projects, there were no code changes.

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/types",
3-
"version": "8.3.0",
3+
"version": "8.4.0",
44
"description": "Types for the TypeScript-ESTree AST spec",
55
"files": [
66
"dist",

packages/typescript-eslint/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.4.0 (2024-09-02)
2+
3+
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 8.3.0 (2024-08-26)
28

39

packages/typescript-eslint/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-eslint",
3-
"version": "8.3.0",
3+
"version": "8.4.0",
44
"description": "Tooling which enables you to use TypeScript with ESLint",
55
"files": [
66
"dist",
@@ -52,9 +52,9 @@
5252
"typecheck": "tsc --noEmit"
5353
},
5454
"dependencies": {
55-
"@typescript-eslint/eslint-plugin": "8.3.0",
56-
"@typescript-eslint/parser": "8.3.0",
57-
"@typescript-eslint/utils": "8.3.0"
55+
"@typescript-eslint/eslint-plugin": "8.4.0",
56+
"@typescript-eslint/parser": "8.4.0",
57+
"@typescript-eslint/utils": "8.4.0"
5858
},
5959
"devDependencies": {
6060
"@jest/types": "29.6.3",

packages/typescript-estree/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 8.4.0 (2024-09-02)
2+
3+
4+
### 🚀 Features
5+
6+
- **typescript-estree:** make withoutProjectParserOptions generic
7+
8+
9+
### ❤️ Thank You
10+
11+
- Josh Goldberg ✨
12+
13+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
14+
115
## 8.3.0 (2024-08-26)
216

317

packages/typescript-estree/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/typescript-estree",
3-
"version": "8.3.0",
3+
"version": "8.4.0",
44
"description": "A parser that converts TypeScript source code into an ESTree compatible form",
55
"files": [
66
"dist",
@@ -54,8 +54,8 @@
5454
"typecheck": "tsc --noEmit"
5555
},
5656
"dependencies": {
57-
"@typescript-eslint/types": "8.3.0",
58-
"@typescript-eslint/visitor-keys": "8.3.0",
57+
"@typescript-eslint/types": "8.4.0",
58+
"@typescript-eslint/visitor-keys": "8.4.0",
5959
"debug": "^4.3.4",
6060
"fast-glob": "^3.3.2",
6161
"is-glob": "^4.0.3",

packages/utils/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.4.0 (2024-09-02)
2+
3+
This was a version bump only for utils to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 8.3.0 (2024-08-26)
28

39

packages/utils/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/utils",
3-
"version": "8.3.0",
3+
"version": "8.4.0",
44
"description": "Utilities for working with TypeScript + ESLint together",
55
"files": [
66
"dist",
@@ -64,9 +64,9 @@
6464
},
6565
"dependencies": {
6666
"@eslint-community/eslint-utils": "^4.4.0",
67-
"@typescript-eslint/scope-manager": "8.3.0",
68-
"@typescript-eslint/types": "8.3.0",
69-
"@typescript-eslint/typescript-estree": "8.3.0"
67+
"@typescript-eslint/scope-manager": "8.4.0",
68+
"@typescript-eslint/types": "8.4.0",
69+
"@typescript-eslint/typescript-estree": "8.4.0"
7070
},
7171
"peerDependencies": {
7272
"eslint": "^8.57.0 || ^9.0.0"

packages/visitor-keys/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.4.0 (2024-09-02)
2+
3+
This was a version bump only for visitor-keys to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 8.3.0 (2024-08-26)
28

39
This was a version bump only for visitor-keys to align it with other projects, there were no code changes.

packages/visitor-keys/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/visitor-keys",
3-
"version": "8.3.0",
3+
"version": "8.4.0",
44
"description": "Visitor keys used to help traverse the TypeScript-ESTree AST",
55
"files": [
66
"dist",
@@ -47,7 +47,7 @@
4747
"typecheck": "tsc --noEmit"
4848
},
4949
"dependencies": {
50-
"@typescript-eslint/types": "8.3.0",
50+
"@typescript-eslint/types": "8.4.0",
5151
"eslint-visitor-keys": "^3.4.3"
5252
},
5353
"devDependencies": {

0 commit comments

Comments
 (0)