Skip to content

Commit 8f1107b

Browse files
committed
release: 5.14.9
1 parent 8644320 commit 8f1107b

43 files changed

Lines changed: 228 additions & 18 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## v5.14.9 (2026-07-15)
4+
5+
### 🐞 Fixes
6+
7+
- `@eslint-react/ast`: removed `Extract.getPropertyName` and added `Extract.getCalleeName` for simpler callee name resolution. (#1905)
8+
- Rules that match calls by method name no longer treat computed string-literal property access as a static match (e.g. `obj["foo"]()` is no longer resolved to `"foo"`). This avoids relying on the runtime value of computed keys and aligns callee matching across the codebase. Affected rules:
9+
- `react-dom/no-dangerously-set-innerhtml`
10+
- `react-dom/no-find-dom-node`
11+
- `react-dom/no-flush-sync`
12+
- `react-web-api/no-leaked-event-listener`
13+
- `react-web-api/no-leaked-fetch`
14+
- `react-x/globals`
15+
- `react-x/immutability`
16+
- `core.isJsxLike`: no longer treats `React['createElement']` calls as JSX-like, since the callee is accessed through a computed member expression.
17+
18+
### 🏗️ Internal
19+
20+
- Simplified callee name checks across `core`, `react-dom`, `react-web-api`, and `react-x` rules using `Extract.getCalleeName`.
21+
- Bumped `@effect/platform`, `effect`, `fumadocs-core`, `fumadocs-mdx`, `fumadocs-ui`, `postcss`, `pnpm`, and `tsdown`.
22+
23+
**Full Changelog**: https://github.com/Rel1cx/eslint-react/compare/v5.14.8...v5.14.9
24+
325
## v5.14.8 (2026-07-14)
426

527
### 📝 Documentation

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.14.8
1+
5.14.9

apps/website/content/docs/changelog.md

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

5+
## v5.14.9 (2026-07-15)
6+
7+
### 🐞 Fixes
8+
9+
- `@eslint-react/ast`: removed `Extract.getPropertyName` and added `Extract.getCalleeName` for simpler callee name resolution. (#1905)
10+
- Rules that match calls by method name no longer treat computed string-literal property access as a static match (e.g. `obj["foo"]()` is no longer resolved to `"foo"`). This avoids relying on the runtime value of computed keys and aligns callee matching across the codebase. Affected rules:
11+
- `react-dom/no-dangerously-set-innerhtml`
12+
- `react-dom/no-find-dom-node`
13+
- `react-dom/no-flush-sync`
14+
- `react-web-api/no-leaked-event-listener`
15+
- `react-web-api/no-leaked-fetch`
16+
- `react-x/globals`
17+
- `react-x/immutability`
18+
- `core.isJsxLike`: no longer treats `React['createElement']` calls as JSX-like, since the callee is accessed through a computed member expression.
19+
20+
### 🏗️ Internal
21+
22+
- Simplified callee name checks across `core`, `react-dom`, `react-web-api`, and `react-x` rules using `Extract.getCalleeName`.
23+
- Bumped `@effect/platform`, `effect`, `fumadocs-core`, `fumadocs-mdx`, `fumadocs-ui`, `postcss`, `pnpm`, and `tsdown`.
24+
25+
**Full Changelog**: https://github.com/Rel1cx/eslint-react/compare/v5.14.8...v5.14.9
26+
527
## v5.14.8 (2026-07-14)
628

729
### 📝 Documentation

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": "5.14.8",
3+
"version": "5.14.9",
44
"private": true,
55
"description": "Monorepo for eslint-plugin-react-[x, jsx, rsc, dom, web-api, naming-convention].",
66
"keywords": [
@@ -106,7 +106,7 @@
106106
"vite-node": "^6.0.0",
107107
"vitest": "^4.1.10"
108108
},
109-
"packageManager": "pnpm@11.13.0",
109+
"packageManager": "pnpm@11.11.0",
110110
"engines": {
111111
"node": ">=22.0.0"
112112
}

packages/ast/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/ast",
3-
"version": "5.14.8",
3+
"version": "5.14.9",
44
"description": "ESLint React's TSESTree AST utility module.",
55
"homepage": "https://github.com/Rel1cx/eslint-react",
66
"bugs": {

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": "5.14.8",
3+
"version": "5.14.9",
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/eslint/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/eslint",
3-
"version": "5.14.8",
3+
"version": "5.14.9",
44
"description": "ESLint React's ESLint types and utils.",
55
"homepage": "https://github.com/Rel1cx/eslint-react",
66
"bugs": {

packages/jsx/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/jsx",
3-
"version": "5.14.8",
3+
"version": "5.14.9",
44
"description": "ESLint React's TSESTree JSX utility module for static analysis of JSX patterns.",
55
"homepage": "https://github.com/Rel1cx/eslint-react",
66
"bugs": {

packages/kit/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/kit",
3-
"version": "5.14.8",
3+
"version": "5.14.9",
44
"description": "ESLint React's utility module for building custom React rules with JavaScript functions.",
55
"keywords": [
66
"react",

packages/shared/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/shared",
3-
"version": "5.14.8",
3+
"version": "5.14.9",
44
"description": "ESLint React's Shared constants and functions.",
55
"homepage": "https://github.com/Rel1cx/eslint-react",
66
"bugs": {

0 commit comments

Comments
 (0)