Skip to content

Commit 807f5ca

Browse files
chore(release): publish 8.28.0
1 parent 7151489 commit 807f5ca

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.28.0 (2025-03-24)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** [prefer-nullish-coalescing] support `if` statement assignment (`??=`) and fix several minor bugs ([#10861](https://github.com/typescript-eslint/typescript-eslint/pull/10861))
6+
7+
### 🩹 Fixes
8+
9+
- **eslint-plugin:** [no-unsafe-function-type] remove fixable property ([#10986](https://github.com/typescript-eslint/typescript-eslint/pull/10986))
10+
11+
### ❤️ Thank You
12+
13+
- Olivier Zalmanski @OlivierZal
14+
- Yannick Decat @mho22
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.27.0 (2025-03-17)
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.28.0 (2025-03-24)
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.27.0 (2025-03-17)
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.27.0",
3+
"version": "8.28.0",
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.28.0 (2025-03-24)
2+
3+
### 🚀 Features
4+
5+
- **eslint-plugin:** [prefer-nullish-coalescing] support `if` statement assignment (`??=`) and fix several minor bugs ([#10861](https://github.com/typescript-eslint/typescript-eslint/pull/10861))
6+
7+
### 🩹 Fixes
8+
9+
- **eslint-plugin:** [no-unsafe-function-type] remove fixable property ([#10986](https://github.com/typescript-eslint/typescript-eslint/pull/10986))
10+
11+
### ❤️ Thank You
12+
13+
- Olivier Zalmanski @OlivierZal
14+
- Yannick Decat @mho22
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.27.0 (2025-03-17)
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.27.0",
3+
"version": "8.28.0",
44
"description": "TypeScript plugin for ESLint",
55
"files": [
66
"dist",
@@ -62,10 +62,10 @@
6262
},
6363
"dependencies": {
6464
"@eslint-community/regexpp": "^4.10.0",
65-
"@typescript-eslint/scope-manager": "8.27.0",
66-
"@typescript-eslint/type-utils": "8.27.0",
67-
"@typescript-eslint/utils": "8.27.0",
68-
"@typescript-eslint/visitor-keys": "8.27.0",
65+
"@typescript-eslint/scope-manager": "8.28.0",
66+
"@typescript-eslint/type-utils": "8.28.0",
67+
"@typescript-eslint/utils": "8.28.0",
68+
"@typescript-eslint/visitor-keys": "8.28.0",
6969
"graphemer": "^1.4.0",
7070
"ignore": "^5.3.1",
7171
"natural-compare": "^1.4.0",
@@ -76,8 +76,8 @@
7676
"@types/marked": "^5.0.2",
7777
"@types/mdast": "^4.0.3",
7878
"@types/natural-compare": "*",
79-
"@typescript-eslint/rule-schema-to-typescript-types": "8.27.0",
80-
"@typescript-eslint/rule-tester": "8.27.0",
79+
"@typescript-eslint/rule-schema-to-typescript-types": "8.28.0",
80+
"@typescript-eslint/rule-tester": "8.28.0",
8181
"ajv": "^6.12.6",
8282
"cross-env": "^7.0.3",
8383
"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.28.0 (2025-03-24)
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.27.0 (2025-03-17)
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.27.0",
3+
"version": "8.28.0",
44
"description": "An ESLint custom parser which leverages TypeScript ESTree",
55
"files": [
66
"dist",
@@ -54,10 +54,10 @@
5454
"typescript": ">=4.8.4 <5.9.0"
5555
},
5656
"dependencies": {
57-
"@typescript-eslint/scope-manager": "8.27.0",
58-
"@typescript-eslint/types": "8.27.0",
59-
"@typescript-eslint/typescript-estree": "8.27.0",
60-
"@typescript-eslint/visitor-keys": "8.27.0",
57+
"@typescript-eslint/scope-manager": "8.28.0",
58+
"@typescript-eslint/types": "8.28.0",
59+
"@typescript-eslint/typescript-estree": "8.28.0",
60+
"@typescript-eslint/visitor-keys": "8.28.0",
6161
"debug": "^4.3.4"
6262
},
6363
"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.28.0 (2025-03-24)
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.27.0 (2025-03-17)
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.27.0",
3+
"version": "8.28.0",
44
"private": true,
55
"type": "commonjs",
66
"exports": {
@@ -30,8 +30,8 @@
3030
"check-types": "npx nx typecheck"
3131
},
3232
"dependencies": {
33-
"@typescript-eslint/type-utils": "8.27.0",
34-
"@typescript-eslint/utils": "8.27.0",
33+
"@typescript-eslint/type-utils": "8.28.0",
34+
"@typescript-eslint/utils": "8.28.0",
3535
"natural-compare": "^1.4.0",
3636
"prettier": "^3.2.5"
3737
},

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.28.0 (2025-03-24)
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.27.0 (2025-03-17)
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)