Skip to content

Commit 2444351

Browse files
chore(release): publish 8.15.0
1 parent 6c27d08 commit 2444351

File tree

26 files changed

+258
-82
lines changed

26 files changed

+258
-82
lines changed

‎CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
## 8.15.0 (2024-11-18)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** added related-getter-setter-pairs rule ([#10192](https://github.com/typescript-eslint/typescript-eslint/pull/10192))
6+
- **eslint-plugin:** new rule `no-unsafe-type-assertion` ([#10051](https://github.com/typescript-eslint/typescript-eslint/pull/10051))
7+
- **eslint-plugin:** [prefer-nullish-coalescing] fix detection of `ignoreConditionalTests` involving boolean `!` operator ([#10299](https://github.com/typescript-eslint/typescript-eslint/pull/10299))
8+
- **rule-tester:** run method - avoid to infer type parameter from `tests` param ([#10324](https://github.com/typescript-eslint/typescript-eslint/pull/10324))
9+
- **typescript-eslint:** allow infinitely deep array nesting in config function and extends ([#10333](https://github.com/typescript-eslint/typescript-eslint/pull/10333))
10+
- **utils:** add new optional `language` field to `FlatConfig.Config` type ([#10326](https://github.com/typescript-eslint/typescript-eslint/pull/10326))
11+
12+
### 🩹 Fixes
13+
14+
- add missing peer dependencies ([#9744](https://github.com/typescript-eslint/typescript-eslint/pull/9744))
15+
- **eslint-plugin:** [consistent-indexed-object-style] handle circular mapped types ([#10301](https://github.com/typescript-eslint/typescript-eslint/pull/10301))
16+
- **eslint-plugin:** [await-thenable, return-await] don't flag awaiting unconstrained type parameter as unnecessary ([#10314](https://github.com/typescript-eslint/typescript-eslint/pull/10314))
17+
- **eslint-plugin:** [explicit-module-boundary-types] and [explicit-function-return-type] don't report on `as const satisfies` ([#10315](https://github.com/typescript-eslint/typescript-eslint/pull/10315))
18+
- **eslint-plugin:** report deprecations used in default export ([#10330](https://github.com/typescript-eslint/typescript-eslint/pull/10330))
19+
- **utils:** add defaultOptions to meta in rule ([#10339](https://github.com/typescript-eslint/typescript-eslint/pull/10339))
20+
21+
### ❤️ Thank You
22+
23+
- Bartosz @burtek
24+
- Brad Zacher @bradzacher
25+
- Ethan Wu
26+
- Josh Goldberg ✨
27+
- Kim Sang Du @developer-bandi
28+
- Luis Sebastian Urrutia Fuentes @LuisUrrutia
29+
- Marco Pasqualetti @marcalexiei
30+
- Phillip Huang
31+
- Ronen Amiel
32+
- Szydlak @wszydlak
33+
34+
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.
35+
136
## 8.14.0 (2024-11-11)
237

338
### 🚀 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.15.0 (2024-11-18)
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.14.0 (2024-11-11)
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.14.0",
3+
"version": "8.15.0",
44
"description": "Complete specification for the TypeScript-ESTree AST",
55
"private": true,
66
"keywords": [

‎packages/eslint-plugin/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## 8.15.0 (2024-11-18)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** [prefer-nullish-coalescing] fix detection of `ignoreConditionalTests` involving boolean `!` operator ([#10299](https://github.com/typescript-eslint/typescript-eslint/pull/10299))
6+
- **eslint-plugin:** new rule `no-unsafe-type-assertion` ([#10051](https://github.com/typescript-eslint/typescript-eslint/pull/10051))
7+
- **eslint-plugin:** added related-getter-setter-pairs rule ([#10192](https://github.com/typescript-eslint/typescript-eslint/pull/10192))
8+
9+
### 🩹 Fixes
10+
11+
- **utils:** add defaultOptions to meta in rule ([#10339](https://github.com/typescript-eslint/typescript-eslint/pull/10339))
12+
- **eslint-plugin:** report deprecations used in default export ([#10330](https://github.com/typescript-eslint/typescript-eslint/pull/10330))
13+
- **eslint-plugin:** [explicit-module-boundary-types] and [explicit-function-return-type] don't report on `as const satisfies` ([#10315](https://github.com/typescript-eslint/typescript-eslint/pull/10315))
14+
- **eslint-plugin:** [await-thenable, return-await] don't flag awaiting unconstrained type parameter as unnecessary ([#10314](https://github.com/typescript-eslint/typescript-eslint/pull/10314))
15+
- **eslint-plugin:** [consistent-indexed-object-style] handle circular mapped types ([#10301](https://github.com/typescript-eslint/typescript-eslint/pull/10301))
16+
17+
### ❤️ Thank You
18+
19+
- Josh Goldberg ✨
20+
- Kim Sang Du @developer-bandi
21+
- Luis Sebastian Urrutia Fuentes @LuisUrrutia
22+
- Phillip Huang
23+
- Ronen Amiel
24+
- Szydlak @wszydlak
25+
26+
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.
27+
128
## 8.14.0 (2024-11-11)
229

330
### 🚀 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.14.0",
3+
"version": "8.15.0",
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.14.0",
65-
"@typescript-eslint/type-utils": "8.14.0",
66-
"@typescript-eslint/utils": "8.14.0",
67-
"@typescript-eslint/visitor-keys": "8.14.0",
64+
"@typescript-eslint/scope-manager": "8.15.0",
65+
"@typescript-eslint/type-utils": "8.15.0",
66+
"@typescript-eslint/utils": "8.15.0",
67+
"@typescript-eslint/visitor-keys": "8.15.0",
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.14.0",
79-
"@typescript-eslint/rule-tester": "8.14.0",
78+
"@typescript-eslint/rule-schema-to-typescript-types": "8.15.0",
79+
"@typescript-eslint/rule-tester": "8.15.0",
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.15.0 (2024-11-18)
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.14.0 (2024-11-11)
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.14.0",
3+
"version": "8.15.0",
44
"description": "An ESLint custom parser which leverages TypeScript ESTree",
55
"files": [
66
"dist",
@@ -52,10 +52,10 @@
5252
"eslint": "^8.57.0 || ^9.0.0"
5353
},
5454
"dependencies": {
55-
"@typescript-eslint/scope-manager": "8.14.0",
56-
"@typescript-eslint/types": "8.14.0",
57-
"@typescript-eslint/typescript-estree": "8.14.0",
58-
"@typescript-eslint/visitor-keys": "8.14.0",
55+
"@typescript-eslint/scope-manager": "8.15.0",
56+
"@typescript-eslint/types": "8.15.0",
57+
"@typescript-eslint/typescript-estree": "8.15.0",
58+
"@typescript-eslint/visitor-keys": "8.15.0",
5959
"debug": "^4.3.4"
6060
},
6161
"devDependencies": {

‎packages/rule-schema-to-typescript-types/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 8.15.0 (2024-11-18)
2+
3+
### 🚀 Features
4+
5+
- **typescript-eslint:** allow infinitely deep array nesting in config function and extends ([#10333](https://github.com/typescript-eslint/typescript-eslint/pull/10333))
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.14.0 (2024-11-11)
214

315
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.14.0",
3+
"version": "8.15.0",
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.14.0",
38-
"@typescript-eslint/utils": "8.14.0",
37+
"@typescript-eslint/type-utils": "8.15.0",
38+
"@typescript-eslint/utils": "8.15.0",
3939
"natural-compare": "^1.4.0",
4040
"prettier": "^3.2.5"
4141
},

‎packages/rule-tester/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 8.15.0 (2024-11-18)
2+
3+
### 🚀 Features
4+
5+
- **rule-tester:** run method - avoid to infer type parameter from `tests` param ([#10324](https://github.com/typescript-eslint/typescript-eslint/pull/10324))
6+
7+
### ❤️ Thank You
8+
9+
- Marco Pasqualetti @marcalexiei
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.14.0 (2024-11-11)
214

315
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)