Skip to content

Commit 0fbfa9f

Browse files
committed
release: 2.0.0-next.41
2 parents 85174c3 + 5ca4abf commit 0fbfa9f

File tree

30 files changed

+14306
-104
lines changed

30 files changed

+14306
-104
lines changed

.pkgs/configs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@
2727
"eslint-plugin-perfectionist": "^4.14.0",
2828
"eslint-plugin-regexp": "^2.9.0",
2929
"eslint-plugin-unicorn": "^59.0.1",
30-
"typescript-eslint": "^8.33.1"
30+
"typescript-eslint": "^8.34.0"
3131
}
3232
}

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
"@eslint-react/var": "workspace:*",
2929
"@eslint/js": "^9.28.0",
3030
"@stylistic/eslint-plugin": "^4.4.1",
31-
"@typescript-eslint/scope-manager": "^8.33.1",
32-
"@typescript-eslint/type-utils": "^8.33.1",
33-
"@typescript-eslint/types": "^8.33.1",
34-
"@typescript-eslint/utils": "^8.33.1",
31+
"@typescript-eslint/scope-manager": "^8.34.0",
32+
"@typescript-eslint/type-utils": "^8.34.0",
33+
"@typescript-eslint/types": "^8.34.0",
34+
"@typescript-eslint/utils": "^8.34.0",
3535
"eslint-plugin-de-morgan": "^1.3.0",
3636
"eslint-plugin-jsdoc": "^50.7.1",
3737
"eslint-plugin-perfectionist": "^4.14.0",
@@ -42,7 +42,7 @@
4242
},
4343
"devDependencies": {
4444
"@local/configs": "workspace:*",
45-
"@types/react": "^19.1.6",
45+
"@types/react": "^19.1.7",
4646
"@types/react-dom": "^19.1.6",
4747
"tsup": "^8.5.0"
4848
},

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0-next.40
1+
2.0.0-next.41

apps/website/content/docs/rules/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ The `jsx-*` rules check for issues exclusive to JSX syntax, which are absent fro
6363
| [`no-implicit-key`](./no-implicit-key) | 1️⃣ | `🧪` | Prevents `key` from not being explicitly specified (e.g. spreading `key` from objects) | |
6464
| [`no-leaked-conditional-rendering`](./no-leaked-conditional-rendering) | 1️⃣ | `💭` | Prevents problematic leaked values from being rendered | |
6565
| [`no-missing-component-display-name`](./no-missing-component-display-name) | 0️⃣ | | Enforces that all components have a `displayName` which can be used in devtools | |
66-
| [`no-missing-context-display-name`](./no-missing-context-display-name) | 0️⃣ | | Enforces that all contexts have a `displayName` which can be used in devtools | |
66+
| [`no-missing-context-display-name`](./no-missing-context-display-name) | 0️⃣ | `🔧` | Enforces that all contexts have a `displayName` which can be used in devtools | |
6767
| [`no-missing-key`](./no-missing-key) | 2️⃣ | | Disallow missing `key` on items in list rendering | |
6868
| [`no-misused-capture-owner-stack`](./no-misused-capture-owner-stack) | 0️⃣ | `🧪` | Prevents incorrect usage of `captureOwnerStack` | |
6969
| [`no-nested-component-definitions`](./no-nested-component-definitions) | 2️⃣ | | Disallow nesting component definitions inside other components | |

apps/website/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
"@tsconfig/strictest": "^2.0.5",
4545
"@types/hast": "^3.0.4",
4646
"@types/mdx": "^2.0.13",
47-
"@types/node": "^22.15.30",
48-
"@types/react": "^19.1.6",
47+
"@types/node": "^24.0.0",
48+
"@types/react": "^19.1.7",
4949
"@types/react-dom": "^19.1.6",
5050
"autoprefixer": "^10.4.21",
5151
"dedent": "^1.6.0",
@@ -61,6 +61,6 @@
6161
"tailwindcss": "^4.1.8",
6262
"tailwindcss-animated": "^2.0.0",
6363
"typescript": "^5.8.3",
64-
"typescript-eslint": "^8.33.1"
64+
"typescript-eslint": "^8.34.0"
6565
}
6666
}

examples/next-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
"@tsconfig/next": "^2.0.3",
2323
"@tsconfig/node22": "^22.0.2",
2424
"@tsconfig/strictest": "^2.0.5",
25-
"@types/node": "^22.15.30",
26-
"@types/react": "^19.1.6",
25+
"@types/node": "^24.0.0",
26+
"@types/react": "^19.1.7",
2727
"@types/react-dom": "^19.1.6",
2828
"eslint": "^9.28.0",
2929
"eslint-config-flat-gitignore": "^2.1.0",
3030
"eslint-plugin-react-hooks": "^5.2.0",
3131
"eslint-plugin-react-refresh": "^0.4.20",
3232
"typescript": "^5.8.3",
33-
"typescript-eslint": "^8.33.1"
33+
"typescript-eslint": "^8.34.0"
3434
},
3535
"engines": {
3636
"node": ">=20.19.0"

examples/rspeedy-react-lynx-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@lynx-js/types": "^3.3.0",
2828
"@rsbuild/plugin-sass": "^1.3.2",
2929
"@rsbuild/plugin-type-check": "^1.2.3",
30-
"@types/react": "^19.1.6",
30+
"@types/react": "^19.1.7",
3131
"eslint-plugin-react-hooks": "^5.2.0",
3232
"eslint-plugin-react-x": "workspace:*",
3333
"rsbuild-plugin-tailwindcss": "^0.2.1"

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
"@tsconfig/node22": "^22.0.2",
2222
"@tsconfig/strictest": "^2.0.5",
2323
"@tsconfig/vite-react": "^6.3.5",
24-
"@types/react": "^19.1.6",
24+
"@types/react": "^19.1.7",
2525
"@types/react-dom": "^19.1.6",
26-
"@vitejs/plugin-react": "^4.5.1",
26+
"@vitejs/plugin-react": "^4.5.2",
2727
"eslint": "^9.28.0",
2828
"eslint-plugin-react-hooks": "^5.2.0",
2929
"eslint-plugin-react-refresh": "^0.4.20",
3030
"typescript": "^5.8.3",
31-
"typescript-eslint": "^8.33.1",
31+
"typescript-eslint": "^8.34.0",
3232
"vite": "^6.3.5"
3333
},
3434
"engines": {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"@eslint-react/eslint-plugin": "workspace:*",
1919
"@eslint/config-inspector": "^1.1.0",
2020
"@eslint/js": "^9.28.0",
21-
"@types/react": "^19.1.6",
21+
"@types/react": "^19.1.7",
2222
"@types/react-dom": "^19.1.6",
23-
"@vitejs/plugin-react": "^4.5.1",
23+
"@vitejs/plugin-react": "^4.5.2",
2424
"eslint": "^9.28.0",
2525
"eslint-plugin-react-hooks": "^5.2.0",
2626
"eslint-plugin-react-refresh": "^0.4.20",

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
@@ -23,9 +23,9 @@
2323
"@eslint/js": "^9.28.0",
2424
"@types/babel__core": "~7.20.5",
2525
"@types/babel__preset-env": "~7.10.0",
26-
"@types/react": "^19.1.6",
26+
"@types/react": "^19.1.7",
2727
"@types/react-dom": "^19.1.6",
28-
"@vitejs/plugin-react": "^4.5.1",
28+
"@vitejs/plugin-react": "^4.5.2",
2929
"eslint": "^9.28.0",
3030
"eslint-plugin-react-debug": "workspace:*",
3131
"eslint-plugin-react-dom": "workspace:*",

0 commit comments

Comments
 (0)