Skip to content

Commit af077a0

Browse files
chore(release): publish 8.32.1
1 parent f8db925 commit af077a0

File tree

26 files changed

+182
-82
lines changed

26 files changed

+182
-82
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 8.32.1 (2025-05-12)
2+
3+
### 🩹 Fixes
4+
5+
- **eslint-plugin:** [no-unnecessary-type-conversion] shouldn't have fixable property ([#11194](https://github.com/typescript-eslint/typescript-eslint/pull/11194))
6+
- **eslint-plugin:** [no-deprecated] support computed member access ([#10867](https://github.com/typescript-eslint/typescript-eslint/pull/10867))
7+
- **eslint-plugin:** [consistent-indexed-object-style] adjust auto-fixer to generate valid syntax for `TSMappedType` with no type annotation ([#11180](https://github.com/typescript-eslint/typescript-eslint/pull/11180))
8+
- **eslint-plugin:** [consistent-indexed-object-style] check for indirect circular types in aliased mapped types ([#11177](https://github.com/typescript-eslint/typescript-eslint/pull/11177))
9+
10+
### ❤️ Thank You
11+
12+
- Azat S. @azat-io
13+
- Dima Barabash @dbarabashh
14+
- Ronen Amiel
15+
16+
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.
17+
118
## 8.32.0 (2025-05-05)
219

320
### 🚀 Features

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.32.1 (2025-05-12)
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.32.0 (2025-05-05)
28

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

packages/eslint-plugin/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 8.32.1 (2025-05-12)
2+
3+
### 🩹 Fixes
4+
5+
- **eslint-plugin:** [consistent-indexed-object-style] check for indirect circular types in aliased mapped types ([#11177](https://github.com/typescript-eslint/typescript-eslint/pull/11177))
6+
- **eslint-plugin:** [consistent-indexed-object-style] adjust auto-fixer to generate valid syntax for `TSMappedType` with no type annotation ([#11180](https://github.com/typescript-eslint/typescript-eslint/pull/11180))
7+
- **eslint-plugin:** [no-deprecated] support computed member access ([#10867](https://github.com/typescript-eslint/typescript-eslint/pull/10867))
8+
- **eslint-plugin:** [no-unnecessary-type-conversion] shouldn't have fixable property ([#11194](https://github.com/typescript-eslint/typescript-eslint/pull/11194))
9+
10+
### ❤️ Thank You
11+
12+
- Azat S. @azat-io
13+
- Dima Barabash @dbarabashh
14+
- Ronen Amiel
15+
16+
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.
17+
118
## 8.32.0 (2025-05-05)
219

320
### 🚀 Features

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.32.0",
3+
"version": "8.32.1",
44
"description": "TypeScript plugin for ESLint",
55
"files": [
66
"dist",
@@ -61,10 +61,10 @@
6161
},
6262
"dependencies": {
6363
"@eslint-community/regexpp": "^4.10.0",
64-
"@typescript-eslint/scope-manager": "8.32.0",
65-
"@typescript-eslint/type-utils": "8.32.0",
66-
"@typescript-eslint/utils": "8.32.0",
67-
"@typescript-eslint/visitor-keys": "8.32.0",
64+
"@typescript-eslint/scope-manager": "8.32.1",
65+
"@typescript-eslint/type-utils": "8.32.1",
66+
"@typescript-eslint/utils": "8.32.1",
67+
"@typescript-eslint/visitor-keys": "8.32.1",
6868
"graphemer": "^1.4.0",
6969
"ignore": "^7.0.0",
7070
"natural-compare": "^1.4.0",
@@ -73,8 +73,8 @@
7373
"devDependencies": {
7474
"@types/mdast": "^4.0.3",
7575
"@types/natural-compare": "*",
76-
"@typescript-eslint/rule-schema-to-typescript-types": "8.32.0",
77-
"@typescript-eslint/rule-tester": "8.32.0",
76+
"@typescript-eslint/rule-schema-to-typescript-types": "8.32.1",
77+
"@typescript-eslint/rule-tester": "8.32.1",
7878
"@vitest/coverage-v8": "^3.1.3",
7979
"ajv": "^6.12.6",
8080
"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.32.1 (2025-05-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://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 8.32.0 (2025-05-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.32.0",
3+
"version": "8.32.1",
44
"description": "An ESLint custom parser which leverages TypeScript ESTree",
55
"files": [
66
"dist",
@@ -52,10 +52,10 @@
5252
"typescript": ">=4.8.4 <5.9.0"
5353
},
5454
"dependencies": {
55-
"@typescript-eslint/scope-manager": "8.32.0",
56-
"@typescript-eslint/types": "8.32.0",
57-
"@typescript-eslint/typescript-estree": "8.32.0",
58-
"@typescript-eslint/visitor-keys": "8.32.0",
55+
"@typescript-eslint/scope-manager": "8.32.1",
56+
"@typescript-eslint/types": "8.32.1",
57+
"@typescript-eslint/typescript-estree": "8.32.1",
58+
"@typescript-eslint/visitor-keys": "8.32.1",
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.32.1 (2025-05-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://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
6+
17
## 8.32.0 (2025-05-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.

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.32.0",
3+
"version": "8.32.1",
44
"private": true,
55
"type": "commonjs",
66
"exports": {
@@ -31,8 +31,8 @@
3131
"check-types": "npx nx typecheck"
3232
},
3333
"dependencies": {
34-
"@typescript-eslint/type-utils": "8.32.0",
35-
"@typescript-eslint/utils": "8.32.0",
34+
"@typescript-eslint/type-utils": "8.32.1",
35+
"@typescript-eslint/utils": "8.32.1",
3636
"natural-compare": "^1.4.0",
3737
"prettier": "^3.2.5"
3838
},

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.32.1 (2025-05-12)
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.32.0 (2025-05-05)
28

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

0 commit comments

Comments
 (0)