Skip to content

Commit c495e98

Browse files
committed
release: 2.0.0-beta.30
2 parents 6ba2a73 + 020c5bf commit c495e98

File tree

27 files changed

+660
-587
lines changed

27 files changed

+660
-587
lines changed

.pkgs/configs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@stylistic/eslint-plugin": "^5.2.3",
2424
"eslint-plugin-de-morgan": "^1.3.1",
2525
"eslint-plugin-function": "^0.0.22",
26-
"eslint-plugin-jsdoc": "^54.0.0",
26+
"eslint-plugin-jsdoc": "^54.1.0",
2727
"eslint-plugin-perfectionist": "^4.15.0",
2828
"eslint-plugin-regexp": "^2.10.0",
2929
"eslint-plugin-unicorn": "^60.0.0",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"@typescript-eslint/types": "^8.39.1",
3434
"@typescript-eslint/utils": "^8.39.1",
3535
"eslint-plugin-de-morgan": "^1.3.1",
36-
"eslint-plugin-jsdoc": "^54.0.0",
36+
"eslint-plugin-jsdoc": "^54.1.0",
3737
"eslint-plugin-perfectionist": "^4.15.0",
3838
"eslint-plugin-regexp": "^2.10.0",
3939
"eslint-plugin-unicorn": "^60.0.0",

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## v1.52.5 (2025-08-15)
2+
3+
### 🐞 Fixes
4+
5+
- fix: refactor `is-from-react` utility in `react-debug/is-from-react` rule and improve `react-x/no-forward-ref` rule autofix handling, closes #1172 by @Rel1cx in https://github.com/Rel1cx/eslint-react/pull/1173
6+
7+
**Full Changelog**: https://github.com/Rel1cx/eslint-react/compare/v1.52.4...v1.52.5
8+
19
## v1.52.4 (2025-08-13)
210

311
### 🐞 Fixes

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0-beta.29
1+
2.0.0-beta.30

apps/website/content/docs/changelog.md

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

5+
## v1.52.5 (2025-08-15)
6+
7+
### 🐞 Fixes
8+
9+
- fix: refactor `is-from-react` utility in `react-debug/is-from-react` rule and improve `react-x/no-forward-ref` rule autofix handling, closes #1172 by @Rel1cx in https://github.com/Rel1cx/eslint-react/pull/1173
10+
11+
**Full Changelog**: https://github.com/Rel1cx/eslint-react/compare/v1.52.4...v1.52.5
12+
513
## v1.52.4 (2025-08-13)
614

715
### 🐞 Fixes

apps/website/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"@eslint/markdown": "^7.1.0",
3838
"@local/configs": "workspace:*",
3939
"@mdx-js/mdx": "^3.1.0",
40-
"@tailwindcss/postcss": "^4.1.11",
40+
"@tailwindcss/postcss": "^4.1.12",
4141
"@theguild/remark-mermaid": "^0.3.0",
4242
"@tsconfig/next": "^2.0.3",
4343
"@tsconfig/node22": "^22.0.2",
@@ -58,7 +58,7 @@
5858
"eslint-plugin-unicorn": "^60.0.0",
5959
"importx": "^0.5.2",
6060
"postcss": "^8.5.6",
61-
"tailwindcss": "^4.1.11",
61+
"tailwindcss": "^4.1.12",
6262
"tailwindcss-animated": "^2.0.0",
6363
"typescript": "^5.9.2",
6464
"typescript-eslint": "^8.39.1"

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"react-dom": "^19.1.1"
1616
},
1717
"devDependencies": {
18-
"@babel/core": "^7.28.0",
18+
"@babel/core": "^7.28.3",
1919
"@babel/eslint-parser": "^7.28.0",
20-
"@babel/preset-env": "^7.28.0",
20+
"@babel/preset-env": "^7.28.3",
2121
"@babel/preset-react": "^7.27.1",
2222
"@eslint/config-inspector": "^1.2.0",
2323
"@eslint/js": "^9.33.0",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/monorepo",
3-
"version": "2.0.0-beta.29",
3+
"version": "2.0.0-beta.30",
44
"private": true,
55
"description": "Monorepo for eslint-plugin-react-[x, dom, web-api, naming-convention].",
66
"keywords": [
@@ -76,7 +76,7 @@
7676
"jiti": "^2.5.1",
7777
"lefthook": "^1.12.3",
7878
"markdownlint": "^0.38.0",
79-
"nx": "21.3.0",
79+
"nx": "^21.3.11",
8080
"publint": "^0.3.12",
8181
"react": "^19.1.1",
8282
"react-dom": "^19.1.1",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/core",
3-
"version": "2.0.0-beta.29",
3+
"version": "2.0.0-beta.30",
44
"description": "ESLint React's ESLint utility module for static analysis of React core APIs and patterns.",
55
"homepage": "https://github.com/Rel1cx/eslint-react",
66
"bugs": {

packages/core/src/utils/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export * from "./get-instance-id";
2-
export * from "./is-initialized-from-react";
2+
export * from "./is-from-react";
33
export * from "./is-instance-id-equal";
44
export * from "./is-react-api";

0 commit comments

Comments
 (0)