Skip to content

Commit b691713

Browse files
committed
release: 5.14.0
1 parent 97e32a7 commit b691713

20 files changed

Lines changed: 69 additions & 17 deletions

File tree

CHANGELOG.md

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

3+
## v5.14.0 (2026-07-10)
4+
5+
### ✨ New
6+
7+
- `react-x/refs`: added render-reachability support for function declarations, IIFEs, synchronous array callbacks, and render-time callbacks passed to `useMemo` and `useReducer`. (#1895)
8+
- `react-x/refs`: added lazy-initialization support for explicit `undefined` guards and for null guards enclosing additional nested conditions. (#1895)
9+
10+
### 🐞 Fixes
11+
12+
- `react-x/refs`: reworked render-time call analysis as an unbounded fixed-point propagation, removing the previous 50-iteration cap. (#1895)
13+
- `react-x/refs`: tightened inverted lazy-initialization handling so the non-null branch must unconditionally return or throw. (#1895)
14+
- `react-x/refs`: stopped treating `!ref.current` as a null guard because initialized refs may contain falsy values. (#1895)
15+
16+
### 🏗️ Internal
17+
18+
- `react-x/refs`: refactored ref aliases, function bindings, JSX refs, and duplicate initialization tracking to use scoped ESLint variable identities and position-aware binding events instead of file-wide identifier names. (#1895)
19+
- Added behavior-boundary tests for `react-x/immutability` and documented them in the spec diff report.
20+
- Updated build scripts.
21+
- Bumped `@effect/language-service` to `^0.86.5`.
22+
- Bumped `preact` to `^10.29.7`.
23+
- Bumped `vite` to `^8.1.4` in example apps.
24+
- Bumped `dprint` JSON plugin to `^0.23.0`.
25+
26+
**Full Changelog**: https://github.com/Rel1cx/eslint-react/compare/v5.13.2...v5.14.0
27+
328
## v5.13.2 (2026-07-09)
429

530
### 🐞 Fixes

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.13.2
1+
5.14.0

apps/website/content/docs/changelog.md

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

5+
## v5.14.0 (2026-07-10)
6+
7+
### ✨ New
8+
9+
- `react-x/refs`: added render-reachability support for function declarations, IIFEs, synchronous array callbacks, and render-time callbacks passed to `useMemo` and `useReducer`. (#1895)
10+
- `react-x/refs`: added lazy-initialization support for explicit `undefined` guards and for null guards enclosing additional nested conditions. (#1895)
11+
12+
### 🐞 Fixes
13+
14+
- `react-x/refs`: reworked render-time call analysis as an unbounded fixed-point propagation, removing the previous 50-iteration cap. (#1895)
15+
- `react-x/refs`: tightened inverted lazy-initialization handling so the non-null branch must unconditionally return or throw. (#1895)
16+
- `react-x/refs`: stopped treating `!ref.current` as a null guard because initialized refs may contain falsy values. (#1895)
17+
18+
### 🏗️ Internal
19+
20+
- `react-x/refs`: refactored ref aliases, function bindings, JSX refs, and duplicate initialization tracking to use scoped ESLint variable identities and position-aware binding events instead of file-wide identifier names. (#1895)
21+
- Added behavior-boundary tests for `react-x/immutability` and documented them in the spec diff report.
22+
- Updated build scripts.
23+
- Bumped `@effect/language-service` to `^0.86.5`.
24+
- Bumped `preact` to `^10.29.7`.
25+
- Bumped `vite` to `^8.1.4` in example apps.
26+
- Bumped `dprint` JSON plugin to `^0.23.0`.
27+
28+
**Full Changelog**: https://github.com/Rel1cx/eslint-react/compare/v5.13.2...v5.14.0
29+
530
## v5.13.2 (2026-07-09)
631

732
### 🐞 Fixes

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/monorepo",
3-
"version": "5.13.2",
3+
"version": "5.14.0",
44
"private": true,
55
"description": "Monorepo for eslint-plugin-react-[x, jsx, rsc, dom, web-api, naming-convention].",
66
"keywords": [

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

0 commit comments

Comments
 (0)