Skip to content

Commit 17b7d42

Browse files
committed
release: 5.13.2
1 parent 895c25b commit 17b7d42

32 files changed

Lines changed: 500 additions & 299 deletions

File tree

.pkgs/configs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"devDependencies": {
4646
"eslint": "^10.6.0",
4747
"tinyglobby": "^0.2.17",
48-
"tsdown": "^0.22.3",
48+
"tsdown": "^0.22.4",
4949
"tsl": "^1.0.30",
5050
"tsl-dx": "^0.13.2",
5151
"typedoc": "^0.28.20",

.pkgs/eff/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
"devDependencies": {
4040
"@local/configs": "workspace:*",
41-
"tsdown": "^0.22.3"
41+
"tsdown": "^0.22.4"
4242
},
4343
"engines": {
4444
"node": ">=22.0.0"

.pkgs/samples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@types/react": "^19.2.17",
5151
"@types/react-dom": "^19.2.3",
5252
"eslint": "^10.6.0",
53-
"tsdown": "^0.22.3",
53+
"tsdown": "^0.22.4",
5454
"typescript": "6.0.3",
5555
"typescript-eslint": "^8.63.0"
5656
},

CHANGELOG.md

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

3+
## v5.13.2 (2026-07-09)
4+
5+
### 🐞 Fixes
6+
7+
- `react-x/immutability`: fixed false positive on `ref.current` write inside `useEffect`. (#1894)
8+
9+
### 🏗️ Internal
10+
11+
- Bumped `@types/node` to `^26.1.1`.
12+
- Bumped `preact` to `^10.29.6`.
13+
- Bumped `tsdown` to `^0.22.4`.
14+
15+
**Full Changelog**: https://github.com/Rel1cx/eslint-react/compare/v5.13.1...v5.13.2
16+
317
## v5.13.1 (2026-07-09)
418

519
### 🐞 Fixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Version](https://img.shields.io/npm/v/@eslint-react/core?style=flat&colorA=111111&colorB=000000)](https://npmx.dev/package/@eslint-react/core)
66
[![Downloads](https://img.shields.io/npm/dt/@eslint-react/core.svg?style=flat&colorA=222222&colorB=000000)](https://npmx.dev/package/@eslint-react/core)
77
[![License](https://img.shields.io/npm/l/@eslint-react/core?style=flat&colorA=333333&colorB=000000)](https://github.com/Rel1cx/eslint-react/blob/main/LICENSE)
8-
[![Build with](https://img.shields.io/badge/built_with-tsdown@0.22.3-000000?style=flat)](https://tsdown.dev)
8+
[![Build with](https://img.shields.io/badge/built_with-tsdown@0.22.4-000000?style=flat)](https://tsdown.dev)
99

1010
Composable ESLint rules for React and friends.
1111

VERSION

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

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+
## v5.13.2 (2026-07-09)
6+
7+
### 🐞 Fixes
8+
9+
- `react-x/immutability`: fixed false positive on `ref.current` write inside `useEffect`. (#1894)
10+
11+
### 🏗️ Internal
12+
13+
- Bumped `@types/node` to `^26.1.1`.
14+
- Bumped `preact` to `^10.29.6`.
15+
- Bumped `tsdown` to `^0.22.4`.
16+
17+
**Full Changelog**: https://github.com/Rel1cx/eslint-react/compare/v5.13.1...v5.13.2
18+
519
## v5.13.1 (2026-07-09)
620

721
### 🐞 Fixes

apps/website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@tsconfig/strictest": "^2.0.8",
3030
"@types/hast": "^3.0.4",
3131
"@types/mdx": "^2.0.14",
32-
"@types/node": "^26.1.0",
32+
"@types/node": "^26.1.1",
3333
"@types/react": "^19.2.17",
3434
"@types/react-dom": "^19.2.3",
3535
"@typescript-eslint/types": "^8.63.0",

examples/next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@tsconfig/next": "^2.0.6",
2323
"@tsconfig/node24": "^24.0.4",
2424
"@tsconfig/strictest": "^2.0.8",
25-
"@types/node": "^26.1.0",
25+
"@types/node": "^26.1.1",
2626
"@types/react": "^19.2.17",
2727
"@types/react-dom": "^19.2.3",
2828
"eslint": "^10.6.0",

examples/preact-compat/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"preact": "^10.29.5"
13+
"preact": "^10.29.6"
1414
},
1515
"devDependencies": {
1616
"@eslint-react/eslint-plugin": "workspace:*",
1717
"@eslint/js": "^10.0.1",
1818
"@preact/preset-vite": "^2.10.5",
1919
"@tsconfig/node24": "^24.0.4",
2020
"@tsconfig/strictest": "^2.0.8",
21-
"@types/node": "^26.1.0",
21+
"@types/node": "^26.1.1",
2222
"eslint": "^10.6.0",
2323
"eslint-plugin-react-hooks": "^7.1.1",
2424
"eslint-plugin-react-refresh": "^0.5.3",

0 commit comments

Comments
 (0)