10000 chore(release): publish 8.19.0 · 43081j/typescript-eslint@e19f30f · GitHub
[go: up one dir, main page]

Skip to content

Commit e19f30f

Browse files
chore(release): publish 8.19.0
1 parent 9746832 commit e19f30f

File tree

26 files changed

+204
-82
lines changed

26 files changed

+204
-82
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 8.19.0 (2024-12-30)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** [strict-boolean-expressions] check array predicate functions' return statements ([#10106](https://github.com/typescript-eslint/typescript-eslint/pull/10106))
6+
7+
### 🩹 Fixes
8+
9+
- **eslint-plugin:** add getConstraintInfo to handle generic constraints better ([#10496](https://github.com/typescript-eslint/typescript-eslint/pull/10496))
10+
- **eslint-plugin:** [array-type] autofix with conditional types needs parentheses ([#10522](https://github.com/typescript-eslint/typescript-eslint/pull/10522))
11+
- **eslint-plugin:** [consistent-indexed-object-style] don't report on indirect circular references ([#10537](https://github.com/typescript-eslint/typescript-eslint/pull/10537))
12+
- **eslint-plugin:** [member-ordering] ignore method overloading ([#10536](https://github.com/typescript-eslint/typescript-eslint/pull/10536))
13+
14+
### ❤️ Thank You
15+
16+
- Karl Werner
17+
- Kirk Waiblinger @kirkwaiblinger
18+
- Ronen Amiel
19+
- YeonJuan @yeonjuan
20+
21+
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.
22+
123
## 8.18.2 (2024-12-23)
224

325
### 🩹 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.19.0 (2024-12-30)
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.2 (2024-12-23)
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.2",
3+
"version": "8.19.0",
44
"description": "Complete specification for the TypeScript-ESTree AST",
55
"private": true,
66
"keywords": [

packages/eslint-plugin/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 8.19.0 (2024-12-30)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** [strict-boolean-expressions] check array predicate functions' return statements ([#10106](https://github.com/typescript-eslint/typescript-eslint/pull/10106))
6+
7+
### 🩹 Fixes
8+
9+
- **eslint-plugin:** [member-ordering] ignore method overloading ([#10536](https://github.com/typescript-eslint/typescript-eslint/pull/10536))
10+
- **eslint-plugin:** [consistent-indexed-object-style] don't report on indirect circular references ([#10537](https://github.com/typescript-eslint/typescript-eslint/pull/10537))
11+
- **eslint-plugin:** [array-type] autofix with conditional types needs parentheses ([#10522](https://github.com/typescript-eslint/typescript-eslint/pull/10522))
12+
- **eslint-plugin:** add getConstraintInfo to handle generic constraints better ([#10496](https://github.com/typescript-eslint/typescript-eslint/pull/10496))
13+
14+
### ❤️ Thank You
15+
16+
- Karl Werner
17+
- Kirk Waiblinger @kirkwaiblinger
18+
- Ronen Amiel
19+
- YeonJuan @yeonjuan
20+
21+
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.
22+
123
## 8.18.2 (2024-12-23)
224

325
### 🩹 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.2",
3+
"version": "8.19.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.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",
64+
"@typescript-eslint/scope-manager": "8.19.0",
65+
"@typescript-eslint/type-utils": "8.19.0",
66+
"@typescript-eslint/utils": "8.19.0",
67+
"@typescript-eslint/visitor-keys": "8.19.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.18.2",
79-
"@typescript-eslint/rule-tester": "8.18.2",
78+
"@typescript-eslint/rule-schema-to-typescript-types": "8.19.0",
79+
"@typescript-eslint/rule-tester": "8.19.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.19.0 (2024-12-30)
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.2 (2024-12-23)
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.2",
3+
"version": "8.19.0",
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.2",
57-
"@typescript-eslint/types": "8.18.2",
58-
"@typescript-eslint/typescript-estree": "8.18.2",
59-
"@typescript-eslint/visitor-keys": "8.18.2",
56+
"@typescript-eslint/scope-manager": "8.19.0",
57+
"@typescript-eslint/types": "8.19.0",
58+
"@typescript-eslint/typescript-estree": "8.19.0",
59+
"@typescript-eslint/visitor-keys": "8.19.0",
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.19.0 (2024-12-30)
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.2 (2024-12-23)
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.2",
3+
"version": "8.19.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.18.2",
38-
"@typescript-eslint/utils": "8.18.2",
37+
"@typescript-eslint/type-utils": "8.19.0",
38+
"@typescript-eslint/utils": "8.19.0",
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.19.0 (2024-12-30)
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.2 (2024-12-23)
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)
0