Skip to content

Commit ba6fa67

Browse files
committed
release: 1.38.0-next.12
1 parent e973d9f commit ba6fa67

File tree

26 files changed

+272
-246
lines changed

26 files changed

+272
-246
lines changed

.pkgs/configs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"eslint-plugin-perfectionist": "^4.10.1",
2727
"eslint-plugin-regexp": "^2.7.0",
2828
"eslint-plugin-unicorn": "^58.0.0",
29-
"typescript-eslint": "^8.27.0"
29+
"typescript-eslint": "^8.28.0"
3030
}
3131
}

.pkgs/eslint-plugin-local/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
"@eslint-react/var": "workspace:*",
2929
"@eslint/js": "^9.23.0",
3030
"@stylistic/eslint-plugin": "^4.2.0",
31-
"@typescript-eslint/scope-manager": "^8.27.0",
32-
"@typescript-eslint/type-utils": "^8.27.0",
33-
"@typescript-eslint/types": "^8.27.0",
34-
"@typescript-eslint/utils": "^8.27.0",
31+
"@typescript-eslint/scope-manager": "^8.28.0",
32+
"@typescript-eslint/type-utils": "^8.28.0",
33+
"@typescript-eslint/types": "^8.28.0",
34+
"@typescript-eslint/utils": "^8.28.0",
3535
"eslint-plugin-de-morgan": "^1.2.1",
3636
"eslint-plugin-jsdoc": "^50.6.9",
3737
"eslint-plugin-perfectionist": "^4.10.1",

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## v1.38.0 (2025-03-25)
2+
3+
### ✨ New
4+
5+
- feat: add `react-x/jsx-no-undef` rule, closes #1016 by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/1018>
6+
- feat: add `hooks-extra/prefer-use-state-lazy-initialization` rule to recommended presets by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/1019>
7+
- docs: add experimental status to rules overview by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/1012>
8+
9+
### 🪄 Improvements
10+
11+
- refactor: Undeprecate `react-x/jsx-uses-vars` and `react-x/jsx-no-duplicate-props` rules by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/1017>
12+
13+
**Full Changelog**: <https://github.com/Rel1cx/eslint-react/compare/v1.37.3...1.38.0>
14+
115
## v1.37.3 (2025-03-22)
216

317
### 🐞 Fixes

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.38.0-beta.11
1+
1.38.0-next.12

apps/website/content/docs/changelog.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22
title: Changelog
33
---
44

5+
## v1.38.0 (2025-03-25)
6+
7+
### ✨ New
8+
9+
- feat: add `react-x/jsx-no-undef` rule, closes #1016 by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/1018>
10+
- feat: add `hooks-extra/prefer-use-state-lazy-initialization` rule to recommended presets by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/1019>
11+
- docs: add experimental status to rules overview by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/1012>
12+
13+
### 🪄 Improvements
14+
15+
- refactor: Undeprecate `react-x/jsx-uses-vars` and `react-x/jsx-no-duplicate-props` rules by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/1017>
16+
17+
**Full Changelog**: <https://github.com/Rel1cx/eslint-react/compare/v1.37.3...1.38.0>
18+
519
## v1.37.3 (2025-03-22)
620

721
### 🐞 Fixes

apps/website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@
5959
"tailwindcss": "^4.0.15",
6060
"tailwindcss-animated": "^2.0.0",
6161
"typescript": "^5.8.2",
62-
"typescript-eslint": "^8.27.0"
62+
"typescript-eslint": "^8.28.0"
6363
}
6464
}

examples/next-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"eslint-plugin-react-hooks": "^5.2.0",
3030
"eslint-plugin-react-refresh": "^0.4.19",
3131
"typescript": "^5.8.2",
32-
"typescript-eslint": "^8.27.0"
32+
"typescript-eslint": "^8.28.0"
3333
},
3434
"engines": {
3535
"node": ">=18.18.0"

examples/vite-react-dom-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"eslint-plugin-react-hooks": "^5.2.0",
2929
"eslint-plugin-react-refresh": "^0.4.19",
3030
"typescript": "^5.8.2",
31-
"typescript-eslint": "^8.27.0",
31+
"typescript-eslint": "^8.28.0",
3232
"vite": "^6.2.3"
3333
},
3434
"engines": {

examples/vite-react-dom-js-with-babel-eslint-parser-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"devDependencies": {
1818
"@babel/core": "^7.26.10",
19-
"@babel/eslint-parser": "^7.26.10",
19+
"@babel/eslint-parser": "^7.27.0",
2020
"@babel/preset-env": "^7.26.9",
2121
"@babel/preset-react": "^7.26.3",
2222
"@eslint-react/eslint-plugin": "workspace:*",

examples/vite-react-dom-with-ts-blank-eslint-parser-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"globals": "^16.0.0",
3333
"ts-blank-eslint-parser": "^0.4.2",
3434
"typescript": "^5.8.2",
35-
"typescript-eslint": "^8.27.0",
35+
"typescript-eslint": "^8.28.0",
3636
"vite": "^6.2.3"
3737
},
3838
"engines": {

0 commit comments

Comments
 (0)