Skip to content

Commit 255e9e2

Browse files
chore(release): publish 8.45.0
1 parent 967764e commit 255e9e2

File tree

30 files changed

+238
-100
lines changed

30 files changed

+238
-100
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 8.45.0 (2025-09-29)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** expose rule name via RuleModule interface ([#11616](https://github.com/typescript-eslint/typescript-eslint/pull/11616))
6+
7+
### 🩹 Fixes
8+
9+
- disable generating declaration maps ([#11627](https://github.com/typescript-eslint/typescript-eslint/pull/11627))
10+
- **ast-spec:** narrow ArrowFunctionExpression.generator to false ([#11636](https://github.com/typescript-eslint/typescript-eslint/pull/11636))
11+
- **eslint-plugin:** [no-base-to-string] check if superclass is ignored ([#11617](https://github.com/typescript-eslint/typescript-eslint/pull/11617))
12+
- **eslint-plugin:** [prefer-nullish-coalescing] ignoreBooleanCoercion should not apply to top-level ternary expressions ([#11614](https://github.com/typescript-eslint/typescript-eslint/pull/11614))
13+
14+
### ❤️ Thank You
15+
16+
- Bjorn Lu
17+
- Josh Goldberg ✨
18+
- mdm317
19+
- Moses Odutusin @thebolarin
20+
- Yukihiro Hasegawa @y-hsgw
21+
22+
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
23+
124
## 8.44.1 (2025-09-22)
225

326
### 🩹 Fixes

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.45.0 (2025-09-29)
2+
3+
### 🩹 Fixes
4+
5+
- **ast-spec:** narrow ArrowFunctionExpression.generator to false ([#11636](https://github.com/typescript-eslint/typescript-eslint/pull/11636))
6+
7+
### ❤️ Thank You
8+
9+
- Josh Goldberg ✨
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.44.1 (2025-09-22)
214

315
### 🩹 Fixes

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

packages/eslint-plugin/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 8.45.0 (2025-09-29)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** expose rule name via RuleModule interface ([#11616](https://github.com/typescript-eslint/typescript-eslint/pull/11616))
6+
7+
### 🩹 Fixes
8+
9+
- **eslint-plugin:** [prefer-nullish-coalescing] ignoreBooleanCoercion should not apply to top-level ternary expressions ([#11614](https://github.com/typescript-eslint/typescript-eslint/pull/11614))
10+
- **eslint-plugin:** [no-base-to-string] check if superclass is ignored ([#11617](https://github.com/typescript-eslint/typescript-eslint/pull/11617))
11+
12+
### ❤️ Thank You
13+
14+
- mdm317
15+
- Moses Odutusin @thebolarin
16+
- Yukihiro Hasegawa @y-hsgw
17+
18+
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
19+
120
## 8.44.1 (2025-09-22)
221

322
### 🩹 Fixes

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.44.1",
3+
"version": "8.45.0",
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.44.1",
63-
"@typescript-eslint/type-utils": "8.44.1",
64-
"@typescript-eslint/utils": "8.44.1",
65-
"@typescript-eslint/visitor-keys": "8.44.1",
62+
"@typescript-eslint/scope-manager": "8.45.0",
63+
"@typescript-eslint/type-utils": "8.45.0",
64+
"@typescript-eslint/utils": "8.45.0",
65+
"@typescript-eslint/visitor-keys": "8.45.0",
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.44.1",
75-
"@typescript-eslint/rule-tester": "8.44.1",
74+
"@typescript-eslint/rule-schema-to-typescript-types": "8.45.0",
75+
"@typescript-eslint/rule-tester": "8.45.0",
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.44.1",
95+
"@typescript-eslint/parser": "^8.45.0",
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.45.0 (2025-09-29)
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.44.1 (2025-09-22)
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.44.1",
3+
"version": "8.45.0",
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.44.1",
55-
"@typescript-eslint/types": "8.44.1",
56-
"@typescript-eslint/typescript-estree": "8.44.1",
57-
"@typescript-eslint/visitor-keys": "8.44.1",
54+
"@typescript-eslint/scope-manager": "8.45.0",
55+
"@typescript-eslint/types": "8.45.0",
56+
"@typescript-eslint/typescript-estree": "8.45.0",
57+
"@typescript-eslint/visitor-keys": "8.45.0",
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.45.0 (2025-09-29)
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.44.1 (2025-09-22)
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.44.1",
3+
"version": "8.45.0",
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.44.1",
53-
"@typescript-eslint/types": "^8.44.1",
52+
"@typescript-eslint/tsconfig-utils": "^8.45.0",
53+
"@typescript-eslint/types": "^8.45.0",
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.45.0 (2025-09-29)
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.44.1 (2025-09-22)
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.

0 commit comments

Comments
 (0)