Skip to content

Commit 3021ede

Browse files
chore(release): publish 8.53.0
1 parent 722ab62 commit 3021ede

File tree

32 files changed

+273
-101
lines changed

32 files changed

+273
-101
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
## 8.53.0 (2026-01-12)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** [no-unused-vars] add a fixer to remove unused imports ([#11922](https://github.com/typescript-eslint/typescript-eslint/pull/11922))
6+
- **eslint-plugin:** add rule [strict-void-return] ([#9707](https://github.com/typescript-eslint/typescript-eslint/pull/9707))
7+
- **project-service:** allow passing `Partial<ts.server.ServerHost>` to project service ([#11932](https://github.com/typescript-eslint/typescript-eslint/pull/11932))
8+
9+
### 🩹 Fixes
10+
11+
- **eslint-plugin:** replace unclear "`error` typed" with more helpful description ([#11704](https://github.com/typescript-eslint/typescript-eslint/pull/11704))
12+
- **eslint-plugin:** [no-useless-default-assignment] fix false positive for parameters corresponding to a rest parameter ([#11916](https://github.com/typescript-eslint/typescript-eslint/pull/11916))
13+
- **typescript-estree:** forbid type-only import with both default and named specifiers ([#11930](https://github.com/typescript-eslint/typescript-eslint/pull/11930))
14+
- **typescript-estree:** fix syntax check for `using` declaration ([#11910](https://github.com/typescript-eslint/typescript-eslint/pull/11910))
15+
- **typescript-estree:** forbid invalid class implements ([#11934](https://github.com/typescript-eslint/typescript-eslint/pull/11934))
16+
- **typescript-estree:** forbid invalid "import equals" declaration ([#11936](https://github.com/typescript-eslint/typescript-eslint/pull/11936))
17+
- **typescript-estree:** forbid invalid `extends` and `implements` in interface declaration ([#11935](https://github.com/typescript-eslint/typescript-eslint/pull/11935))
18+
19+
### ❤️ Thank You
20+
21+
- auvred @auvred
22+
- Brad Zacher @bradzacher
23+
- fisker Cheung @fisker
24+
- Josh Goldberg
25+
- Josh Goldberg ✨
26+
- Kirk Waiblinger
27+
- Niki @phaux
28+
- Nikita
29+
- SungHyun627 @SungHyun627
30+
- Will Harney @wjhsf
31+
32+
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
33+
134
## 8.52.0 (2026-01-05)
235

336
### 🚀 Features

packages/ast-spec/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 8.53.0 (2026-01-12)
2+
3+
### 🩹 Fixes
4+
5+
- **typescript-estree:** forbid invalid `extends` and `implements` in interface declaration ([#11935](https://github.com/typescript-eslint/typescript-eslint/pull/11935))
6+
- **typescript-estree:** forbid invalid "import equals" declaration ([#11936](https://github.com/typescript-eslint/typescript-eslint/pull/11936))
7+
- **typescript-estree:** forbid invalid class implements ([#11934](https://github.com/typescript-eslint/typescript-eslint/pull/11934))
8+
- **typescript-estree:** fix syntax check for `using` declaration ([#11910](https://github.com/typescript-eslint/typescript-eslint/pull/11910))
9+
- **typescript-estree:** forbid type-only import with both default and named specifiers ([#11930](https://github.com/typescript-eslint/typescript-eslint/pull/11930))
10+
11+
### ❤️ Thank You
12+
13+
- fisker Cheung @fisker
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.52.0 (2026-01-05)
218

319
This was a version bump only for ast-spec to align it with other projects, there were no code changes.

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

packages/eslint-plugin/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## 8.53.0 (2026-01-12)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** add rule [strict-void-return] ([#9707](https://github.com/typescript-eslint/typescript-eslint/pull/9707))
6+
- **eslint-plugin:** [no-unused-vars] add a fixer to remove unused imports ([#11922](https://github.com/typescript-eslint/typescript-eslint/pull/11922))
7+
8+
### 🩹 Fixes
9+
10+
- **eslint-plugin:** [no-useless-default-assignment] fix false positive for parameters corresponding to a rest parameter ([#11916](https://github.com/typescript-eslint/typescript-eslint/pull/11916))
11+
- **eslint-plugin:** replace unclear "`error` typed" with more helpful description ([#11704](https://github.com/typescript-eslint/typescript-eslint/pull/11704))
12+
- **typescript-estree:** forbid invalid `extends` and `implements` in interface declaration ([#11935](https://github.com/typescript-eslint/typescript-eslint/pull/11935))
13+
- **typescript-estree:** forbid invalid class implements ([#11934](https://github.com/typescript-eslint/typescript-eslint/pull/11934))
14+
- **typescript-estree:** forbid type-only import with both default and named specifiers ([#11930](https://github.com/typescript-eslint/typescript-eslint/pull/11930))
15+
16+
### ❤️ Thank You
17+
18+
- Brad Zacher @bradzacher
19+
- fisker Cheung @fisker
20+
- Josh Goldberg
21+
- Josh Goldberg ✨
22+
- Kirk Waiblinger
23+
- Niki @phaux
24+
- Nikita
25+
- SungHyun627 @SungHyun627
26+
- Will Harney @wjhsf
27+
28+
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
29+
130
## 8.52.0 (2026-01-05)
231

332
### 🚀 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.52.0",
3+
"version": "8.53.0",
44
"description": "TypeScript plugin for ESLint",
55
"files": [
66
"dist",
@@ -59,19 +59,19 @@
5959
},
6060
"dependencies": {
6161
"@eslint-community/regexpp": "^4.12.2",
62-
"@typescript-eslint/scope-manager": "8.52.0",
63-
"@typescript-eslint/type-utils": "8.52.0",
64-
"@typescript-eslint/utils": "8.52.0",
65-
"@typescript-eslint/visitor-keys": "8.52.0",
62+
"@typescript-eslint/scope-manager": "8.53.0",
63+
"@typescript-eslint/type-utils": "8.53.0",
64+
"@typescript-eslint/utils": "8.53.0",
65+
"@typescript-eslint/visitor-keys": "8.53.0",
6666
"ignore": "^7.0.5",
6767
"natural-compare": "^1.4.0",
6868
"ts-api-utils": "^2.4.0"
6969
},
7070
"devDependencies": {
7171
"@types/mdast": "^4.0.4",
7272
"@types/natural-compare": "*",
73-
"@typescript-eslint/rule-schema-to-typescript-types": "8.52.0",
74-
"@typescript-eslint/rule-tester": "8.52.0",
73+
"@typescript-eslint/rule-schema-to-typescript-types": "8.53.0",
74+
"@typescript-eslint/rule-tester": "8.53.0",
7575
"@vitest/coverage-v8": "^3.2.4",
7676
"ajv": "^6.12.6",
7777
"eslint": "*",
@@ -90,7 +90,7 @@
9090
"vitest": "^3.2.4"
9191
},
9292
"peerDependencies": {
93-
"@typescript-eslint/parser": "^8.52.0",
93+
"@typescript-eslint/parser": "^8.53.0",
9494
"eslint": "^8.57.0 || ^9.0.0",
9595
"typescript": ">=4.8.4 <6.0.0"
9696
},

packages/parser/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.53.0 (2026-01-12)
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.52.0 (2026-01-05)
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.52.0",
3+
"version": "8.53.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.52.0",
55-
"@typescript-eslint/types": "8.52.0",
56-
"@typescript-eslint/typescript-estree": "8.52.0",
57-
"@typescript-eslint/visitor-keys": "8.52.0",
54+
"@typescript-eslint/scope-manager": "8.53.0",
55+
"@typescript-eslint/types": "8.53.0",
56+
"@typescript-eslint/typescript-estree": "8.53.0",
57+
"@typescript-eslint/visitor-keys": "8.53.0",
5858
"debug": "^4.4.3"
5959
},
6060
"devDependencies": {

packages/project-service/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 8.53.0 (2026-01-12)
2+
3+
### 🚀 Features
4+
5+
- **project-service:** allow passing `Partial<ts.server.ServerHost>` to project service ([#11932](https://github.com/typescript-eslint/typescript-eslint/pull/11932))
6+
7+
### ❤️ Thank You
8+
9+
- auvred @auvred
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.52.0 (2026-01-05)
214

315
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.52.0",
3+
"version": "8.53.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.52.0",
53-
"@typescript-eslint/types": "^8.52.0",
52+
"@typescript-eslint/tsconfig-utils": "^8.53.0",
53+
"@typescript-eslint/types": "^8.53.0",
5454
"debug": "^4.4.3"
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.53.0 (2026-01-12)
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.52.0 (2026-01-05)
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)