Skip to content

Commit 157b781

Browse files
chore(release): publish 8.18.2
1 parent 83c3bbf commit 157b781

File tree

26 files changed

+202
-82
lines changed

26 files changed

+202
-82
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 8.18.2 (2024-12-23)
2+
3+
### 🩹 Fixes
4+
5+
- **eslint-plugin:** [no-deprecated] not reporting usages of deprecated declared constants as object value ([#10498](https://github.com/typescript-eslint/typescript-eslint/pull/10498))
6+
- **eslint-plugin:** [prefer-reduce-type-parameter] don't report cases in which the fix results in a type error ([#10494](https://github.com/typescript-eslint/typescript-eslint/pull/10494))
7+
- **eslint-plugin:** [no-unnecessary-condition] don't flag values of an unconstrained or valid type parameter ([#10473](https://github.com/typescript-eslint/typescript-eslint/pull/10473))
8+
- **eslint-plugin:** [consistent-indexed-object-style] use a suggestion over an auto-fix if can't reliably determine that produced index signature is valid ([#10490](https://github.com/typescript-eslint/typescript-eslint/pull/10490))
9+
- **eslint-plugin:** [no-unsafe-type-assertion] fix for unsafe assertion to a constrained type parameter ([#10461](https://github.com/typescript-eslint/typescript-eslint/pull/10461))
10+
- **eslint-plugin:** [no-unnecessary-type-arguments] handle type/value context ([#10503](https://github.com/typescript-eslint/typescript-eslint/pull/10503))
11+
- **eslint-plugin:** [consistent-type-assertions] allow default assertionStyle option ([#10512](https://github.com/typescript-eslint/typescript-eslint/pull/10512))
12+
- **eslint-plugin:** [no-unnecessary-condition] handle noUncheckedIndexedAccess true ([#10514](https://github.com/typescript-eslint/typescript-eslint/pull/10514))
13+
- **typescript-eslint:** export types so that declarations can be named for dts files ([#10513](https://github.com/typescript-eslint/typescript-eslint/pull/10513))
14+
15+
### ❤️ Thank You
16+
17+
- Brad Zacher @bradzacher
18+
- Luke Deen Taylor @controversial
19+
- Ronen Amiel
20+
- Scott O'Hara
21+
- YeonJuan @yeonjuan
22+
- Yukihiro Hasegawa @y-hsgw
23+
24+
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.
25+
126
## 8.18.1 (2024-12-16)
227

328
### 🩹 Fixes

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.18.2 (2024-12-23)
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.18.1 (2024-12-16)
28

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

packages/eslint-plugin/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 8.18.2 (2024-12-23)
2+
3+
### 🩹 Fixes
4+
5+
- **eslint-plugin:** [no-unnecessary-condition] handle noUncheckedIndexedAccess true ([#10514](https://github.com/typescript-eslint/typescript-eslint/pull/10514))
6+
- **eslint-plugin:** [consistent-type-assertions] allow default assertionStyle option ([#10512](https://github.com/typescript-eslint/typescript-eslint/pull/10512))
7+
- **eslint-plugin:** [no-unnecessary-type-arguments] handle type/value context ([#10503](https://github.com/typescript-eslint/typescript-eslint/pull/10503))
8+
- **eslint-plugin:** [no-unsafe-type-assertion] fix for unsafe assertion to a constrained type parameter ([#10461](https://github.com/typescript-eslint/typescript-eslint/pull/10461))
9+
- **eslint-plugin:** [consistent-indexed-object-style] use a suggestion over an auto-fix if can't reliably determine that produced index signature is valid ([#10490](https://github.com/typescript-eslint/typescript-eslint/pull/10490))
10+
- **eslint-plugin:** [no-unnecessary-condition] don't flag values of an unconstrained or valid type parameter ([#10473](https://github.com/typescript-eslint/typescript-eslint/pull/10473))
11+
- **eslint-plugin:** [prefer-reduce-type-parameter] don't report cases in which the fix results in a type error ([#10494](https://github.com/typescript-eslint/typescript-eslint/pull/10494))
12+
- **eslint-plugin:** [no-deprecated] not reporting usages of deprecated declared constants as object value ([#10498](https://github.com/typescript-eslint/typescript-eslint/pull/10498))
13+
14+
### ❤️ Thank You
15+
16+
- Luke Deen Taylor @controversial
17+
- Ronen Amiel
18+
- Scott O'Hara
19+
- YeonJuan @yeonjuan
20+
- Yukihiro Hasegawa @y-hsgw
21+
22+
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.
23+
124
## 8.18.1 (2024-12-16)
225

326
### 🩹 Fixes

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.18.1",
3+
"version": "8.18.2",
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.18.1",
65-
"@typescript-eslint/type-utils": "8.18.1",
66-
"@typescript-eslint/utils": "8.18.1",
67-
"@typescript-eslint/visitor-keys": "8.18.1",
64+
"@typescript-eslint/scope-manager": "8.18.2",
65+
"@typescript-eslint/type-utils": "8.18.2",
66+
"@typescript-eslint/utils": "8.18.2",
67+
"@typescript-eslint/visitor-keys": "8.18.2",
6868
"graphemer": "^1.4.0",
6969
"ignore": "^5.3.1",
7070
"natural-compare": "^1.4.0",
@@ -75,8 +75,8 @@
7575
"@types/marked": "^5.0.2",
7676
"@types/mdast": "^4.0.3",
7777
"@types/natural-compare": "*",
78-
"@typescript-eslint/rule-schema-to-typescript-types": "8.18.1",
79-
"@typescript-eslint/rule-tester": "8.18.1",
78+
"@typescript-eslint/rule-schema-to-typescript-types": "8.18.2",
79+
"@typescript-eslint/rule-tester": "8.18.2",
8080
"ajv": "^6.12.6",
8181
"cross-env": "^7.0.3",
8282
"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.18.2 (2024-12-23)
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.18.1 (2024-12-16)
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.18.1",
3+
"version": "8.18.2",
44
"description": "An ESLint custom parser which leverages TypeScript ESTree",
55
"files": [
66
"dist",
@@ -53,10 +53,10 @@
5353
"typescript": ">=4.8.4 <5.8.0"
5454
},
5555
"dependencies": {
56-
"@typescript-eslint/scope-manager": "8.18.1",
57-
"@typescript-eslint/types": "8.18.1",
58-
"@typescript-eslint/typescript-estree": "8.18.1",
59-
"@typescript-eslint/visitor-keys": "8.18.1",
56+
"@typescript-eslint/scope-manager": "8.18.2",
57+
"@typescript-eslint/types": "8.18.2",
58+
"@typescript-eslint/typescript-estree": "8.18.2",
59+
"@typescript-eslint/visitor-keys": "8.18.2",
6060
"debug": "^4.3.4"
6161
},
6262
"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.18.2 (2024-12-23)
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.18.1 (2024-12-16)
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.18.1",
3+
"version": "8.18.2",
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.18.1",
38-
"@typescript-eslint/utils": "8.18.1",
37+
"@typescript-eslint/type-utils": "8.18.2",
38+
"@typescript-eslint/utils": "8.18.2",
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.18.2 (2024-12-23)
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.18.1 (2024-12-16)
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.18.1",
3+
"version": "8.18.2",
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.18.1",
52-
"@typescript-eslint/utils": "8.18.1",
51+
"@typescript-eslint/typescript-estree": "8.18.2",
52+
"@typescript-eslint/utils": "8.18.2",
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.18.1",
65+
"@typescript-eslint/parser": "8.18.2",
6666
"chai": "^4.4.1",
6767
"eslint-visitor-keys": "^4.2.0",
6868
"espree": "^10.3.0",

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.18.2 (2024-12-23)
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.18.1 (2024-12-16)
28

39
### 🩹 Fixes

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.18.1",
3+
"version": "8.18.2",
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.18.1",
50-
"@typescript-eslint/visitor-keys": "8.18.1"
49+
"@typescript-eslint/types": "8.18.2",
50+
"@typescript-eslint/visitor-keys": "8.18.2"
5151
},
5252
"devDependencies": {
5353
"@jest/types": "29.6.3",
5454
"@types/glob": "*",
55-
"@typescript-eslint/typescript-estree": "8.18.1",
55+
"@typescript-eslint/typescript-estree": "8.18.2",
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.18.2 (2024-12-23)
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.18.1 (2024-12-16)
28

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

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.18.1",
3+
"version": "8.18.2",
44
"description": "Type utilities for working with TypeScript + ESLint together",
55
"files": [
66
"dist",
@@ -46,8 +46,8 @@
4646
"typecheck": "tsc --noEmit"
4747
},
4848
"dependencies": {
49-
"@typescript-eslint/typescript-estree": "8.18.1",
50-
"@typescript-eslint/utils": "8.18.1",
49+
"@typescript-eslint/typescript-estree": "8.18.2",
50+
"@typescript-eslint/utils": "8.18.2",
5151
"debug": "^4.3.4",
5252
"ts-api-utils": "^1.3.0"
5353
},
@@ -57,7 +57,7 @@
5757
},
5858
"devDependencies": {
5959
"@jest/types": "29.6.3",
60-
"@typescript-eslint/parser": "8.18.1",
60+
"@typescript-eslint/parser": "8.18.2",
6161
"ajv": "^6.12.6",
6262
"downlevel-dts": "*",
6363
"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.18.2 (2024-12-23)
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.18.1 (2024-12-16)
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.18.1",
3+
"version": "8.18.2",
44
"description": "Types for the TypeScript-ESTree AST spec",
55
"files": [
66
"dist",

packages/typescript-eslint/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 8.18.2 (2024-12-23)
2+
3+
### 🩹 Fixes
4+
5+
- **typescript-eslint:** export types so that declarations can be named for dts files ([#10513](https://github.com/typescript-eslint/typescript-eslint/pull/10513))
6+
7+
### ❤️ Thank You
8+
9+
- Brad Zacher @bradzacher
10+
11+
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.
12+
113
## 8.18.1 (2024-12-16)
214

315
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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.18.1",
3+
"version": "8.18.2",
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.18.1",
56-
"@typescript-eslint/parser": "8.18.1",
57-
"@typescript-eslint/utils": "8.18.1"
55+
"@typescript-eslint/eslint-plugin": "8.18.2",
56+
"@typescript-eslint/parser": "8.18.2",
57+
"@typescript-eslint/utils": "8.18.2"
5858
},
5959
"peerDependencies": {
6060
"eslint": "^8.57.0 || ^9.0.0",

packages/typescript-estree/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.18.2 (2024-12-23)
2+
3+
This was a version bump only for typescript-estree 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.18.1 (2024-12-16)
28

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

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.18.1",
3+
"version": "8.18.2",
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.18.1",
58-
"@typescript-eslint/visitor-keys": "8.18.1",
57+
"@typescript-eslint/types": "8.18.2",
58+
"@typescript-eslint/visitor-keys": "8.18.2",
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.18.2 (2024-12-23)
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.18.1 (2024-12-16)
28

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

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.18.1",
3+
"version": "8.18.2",
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.18.1",
68-
"@typescript-eslint/types": "8.18.1",
69-
"@typescript-eslint/typescript-estree": "8.18.1"
67+
"@typescript-eslint/scope-manager": "8.18.2",
68+
"@typescript-eslint/types": "8.18.2",
69+
"@typescript-eslint/typescript-estree": "8.18.2"
7070
},
7171
"peerDependencies": {
7272
"eslint": "^8.57.0 || ^9.0.0",

0 commit comments

Comments
 (0)