Skip to content

Commit 3f5fbf6

Browse files
chore(release): publish 8.46.1
1 parent de1fedb commit 3f5fbf6

File tree

30 files changed

+214
-100
lines changed

30 files changed

+214
-100
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 8.46.1 (2025-10-13)
2+
3+
### 🩹 Fixes
4+
5+
- **ast-spec:** cleanup `TSLiteralType` ([#11624](https://github.com/typescript-eslint/typescript-eslint/pull/11624))
6+
- **eslint-plugin:** [prefer-optional-chain] include mixed "nullish comparison style" chains in checks ([#11533](https://github.com/typescript-eslint/typescript-eslint/pull/11533))
7+
- **eslint-plugin:** [no-misused-promises] special-case `.finally` not to report when a promise returning function is provided as an argument ([#11667](https://github.com/typescript-eslint/typescript-eslint/pull/11667))
8+
9+
### ❤️ Thank You
10+
11+
- Abraham Guo
12+
- mdm317
13+
- Ronen Amiel
14+
15+
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
16+
117
## 8.46.0 (2025-10-06)
218

319
### 🚀 Features

packages/ast-spec/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 8.46.1 (2025-10-13)
2+
3+
### 🩹 Fixes
4+
5+
- **ast-spec:** cleanup `TSLiteralType` ([#11624](https://github.com/typescript-eslint/typescript-eslint/pull/11624))
6+
7+
### ❤️ Thank You
8+
9+
- Abraham Guo
10+
11+
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
12+
113
## 8.46.0 (2025-10-06)
214

315
### 🚀 Features

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.46.0",
3+
"version": "8.46.1",
44
"description": "Complete specification for the TypeScript-ESTree AST",
55
"private": true,
66
"keywords": [

packages/eslint-plugin/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 8.46.1 (2025-10-13)
2+
3+
### 🩹 Fixes
4+
5+
- **eslint-plugin:** [no-misused-promises] special-case `.finally` not to report when a promise returning function is provided as an argument ([#11667](https://github.com/typescript-eslint/typescript-eslint/pull/11667))
6+
- **eslint-plugin:** [prefer-optional-chain] include mixed "nullish comparison style" chains in checks ([#11533](https://github.com/typescript-eslint/typescript-eslint/pull/11533))
7+
8+
### ❤️ Thank You
9+
10+
- mdm317
11+
- Ronen Amiel
12+
13+
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
14+
115
## 8.46.0 (2025-10-06)
216

317
### 🚀 Features

packages/eslint-plugin/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin",
3-
"version": "8.46.0",
3+
"version": "8.46.1",
44
"description": "TypeScript plugin for ESLint",
55
"files": [
66
"dist",
@@ -59,10 +59,10 @@
5959
},
6060
"dependencies": {
6161
"@eslint-community/regexpp": "^4.10.0",
62-
"@typescript-eslint/scope-manager": "8.46.0",
63-
"@typescript-eslint/type-utils": "8.46.0",
64-
"@typescript-eslint/utils": "8.46.0",
65-
"@typescript-eslint/visitor-keys": "8.46.0",
62+
"@typescript-eslint/scope-manager": "8.46.1",
63+
"@typescript-eslint/type-utils": "8.46.1",
64+
"@typescript-eslint/utils": "8.46.1",
65+
"@typescript-eslint/visitor-keys": "8.46.1",
6666
"graphemer": "^1.4.0",
6767
"ignore": "^7.0.0",
6868
"natural-compare": "^1.4.0",
@@ -71,8 +71,8 @@
7171
"devDependencies": {
7272
"@types/mdast": "^4.0.3",
7373
"@types/natural-compare": "*",
74-
"@typescript-eslint/rule-schema-to-typescript-types": "8.46.0",
75-
"@typescript-eslint/rule-tester": "8.46.0",
74+
"@typescript-eslint/rule-schema-to-typescript-types": "8.46.1",
75+
"@typescript-eslint/rule-tester": "8.46.1",
7676
"@vitest/coverage-v8": "^3.1.3",
7777
"ajv": "^6.12.6",
7878
"cross-fetch": "*",
@@ -92,7 +92,7 @@
9292
"vitest": "^3.1.3"
9393
},
9494
"peerDependencies": {
95-
"@typescript-eslint/parser": "^8.46.0",
95+
"@typescript-eslint/parser": "^8.46.1",
9696
"eslint": "^8.57.0 || ^9.0.0",
9797
"typescript": ">=4.8.4 <6.0.0"
9898
},

packages/parser/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.46.1 (2025-10-13)
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://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
6+
17
## 8.46.0 (2025-10-06)
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.46.0",
3+
"version": "8.46.1",
44
"description": "An ESLint custom parser which leverages TypeScript ESTree",
55
"files": [
66
"dist",
@@ -51,10 +51,10 @@
5151
"typescript": ">=4.8.4 <6.0.0"
5252
},
5353
"dependencies": {
54-
"@typescript-eslint/scope-manager": "8.46.0",
55-
"@typescript-eslint/types": "8.46.0",
56-
"@typescript-eslint/typescript-estree": "8.46.0",
57-
"@typescript-eslint/visitor-keys": "8.46.0",
54+
"@typescript-eslint/scope-manager": "8.46.1",
55+
"@typescript-eslint/types": "8.46.1",
56+
"@typescript-eslint/typescript-estree": "8.46.1",
57+
"@typescript-eslint/visitor-keys": "8.46.1",
5858
"debug": "^4.3.4"
5959
},
6060
"devDependencies": {

packages/project-service/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.46.1 (2025-10-13)
2+
3+
This was a version bump only for project-service to align it with other projects, there were no code changes.
4+
5+
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
6+
17
## 8.46.0 (2025-10-06)
28

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

packages/project-service/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/project-service",
3-
"version": "8.46.0",
3+
"version": "8.46.1",
44
"description": "Standalone TypeScript project service wrapper for linting.",
55
"files": [
66
"dist",
@@ -49,8 +49,8 @@
4949
"typescript": ">=4.8.4 <6.0.0"
5050
},
5151
"dependencies": {
52-
"@typescript-eslint/tsconfig-utils": "^8.46.0",
53-
"@typescript-eslint/types": "^8.46.0",
52+
"@typescript-eslint/tsconfig-utils": "^8.46.1",
53+
"@typescript-eslint/types": "^8.46.1",
5454
"debug": "^4.3.4"
5555
},
5656
"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.46.1 (2025-10-13)
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://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
6+
17
## 8.46.0 (2025-10-06)
28

39
### 🚀 Features

0 commit comments

Comments
 (0)