[eprh] Update changelog for 7.1.1 (#36308)
mofeiZ committed
Apr 17, 2026 at 12:43 UTC
d1727fbf987392749b374f3afe62227d2c70fc41
2 files changed
+7
-1
ReactVersions.js
+1
-1
@@ -33,7 +33,7 @@ const canaryChannelLabel = 'canary';
33
const rcNumber = 0;
34
35
const stablePackages = {
36
- 'eslint-plugin-react-hooks': '7.1.0',
36
+ 'eslint-plugin-react-hooks': '7.1.1',
37
'jest-react': '0.18.0',
38
react: ReactVersion,
39
'react-art': ReactVersion,
packages/eslint-plugin-react-hooks/CHANGELOG.md
+6
@@ -1,3 +1,9 @@
1
+## 7.1.1
2
+
3
+**Note:** 7.1.0 accidentally removed the `component-hook-factories` rule, causing errors for users who referenced it in their ESLint config. This is now fixed.
4
+
5
+- Add deprecated no-op `component-hook-factories` rule for backwards compatibility. ([@mofeiZ](https://github.com/mofeiZ) in [#36307](https://github.com/facebook/react/pull/36307))
6
+
7
## 7.1.0
8
9
This release adds ESLint v10 support, improves performance by skipping compilation for non-React files, and includes compiler lint improvements including better `set-state-in-effect` detection, improved ref validation, and more helpful error reporting.