Re: [PR] chore(deps-dev): bump eslint-plugin-react-hooks from 5.2.0 to 7.0.1 [apisix-dashboard]

2026-06-03 Thread via GitHub


Baoyuantop closed pull request #3352: chore(deps-dev): bump 
eslint-plugin-react-hooks from 5.2.0 to 7.0.1
URL: https://github.com/apache/apisix-dashboard/pull/3352


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] chore(deps-dev): bump eslint-plugin-react-hooks from 5.2.0 to 7.0.1 [apisix-dashboard]

2026-06-03 Thread via GitHub


dependabot[bot] commented on PR #3352:
URL: 
https://github.com/apache/apisix-dashboard/pull/3352#issuecomment-4613166722

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



[PR] chore(deps-dev): bump eslint-plugin-react-hooks from 5.2.0 to 7.0.1 [apisix-dashboard]

2026-03-22 Thread via GitHub


dependabot[bot] opened a new pull request, #3352:
URL: https://github.com/apache/apisix-dashboard/pull/3352

   Bumps 
[eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks)
 from 5.2.0 to 7.0.1.
   
   Changelog
   Sourced from https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md";>eslint-plugin-react-hooks's
 changelog.
   
   7.0.1
   
   Disallowed passing inline useEffectEvent values as JSX 
props to guard against accidental propagation. (https://redirect.github.com/facebook/react/pull/34820";>#34820 by https://github.com/jf-eirinha";>@​jf-eirinha)
   Switch to export = so eslint-plugin-react-hooks emits 
correct types for consumers in Node16 ESM projects. (https://redirect.github.com/facebook/react/pull/34949";>#34949 by https://github.com/karlhorky";>@​karlhorky)
   Tightened the typing of configs.flat so the 
configs export is always defined. (https://redirect.github.com/facebook/react/pull/34950";>#34950 by https://github.com/poteto";>@​poteto)
   Fix named import runtime errors. (https://redirect.github.com/facebook/react/pull/34951";>#34951, https://redirect.github.com/facebook/react/pull/34953";>#34953 by https://github.com/karlhorky";>@​karlhorky)
   
   7.0.0
   This release slims down presets to just 2 configurations 
(recommended and recommended-latest), and all 
compiler rules are enabled by default.
   
   Breaking: Removed 
recommended-latest-legacy and flat/recommended 
configs. The plugin now provides recommended (legacy and flat 
configs with all recommended rules),  and recommended-latest 
(legacy and flat configs with all recommended rules plus new bleeding edge 
experimental compiler rules). (https://github.com/poteto";>@​poteto in https://redirect.github.com/facebook/react/pull/34757";>#34757)
   
   6.1.1
   Note: 6.1.0 accidentally allowed use of 
recommended without flat config, causing errors when used with 
ESLint v9's defineConfig() helper. This has been fixed in 
6.1.1.
   
   Fix recommended config for flat config compatibility. The 
recommended config has been converted to flat config format. 
Non-flat config users should use recommended-legacy instead. (https://github.com/poteto";>@​poteto in https://redirect.github.com/facebook/react/pull/34700";>#34700)
   Add recommended-latest and 
recommended-latest-legacy configs that include React Compiler 
rules. (https://github.com/poteto";>@​poteto in https://redirect.github.com/facebook/react/pull/34675";>#34675)
   Remove unused NoUnusedOptOutDirectives rule. (https://github.com/poteto";>@​poteto in https://redirect.github.com/facebook/react/pull/34703";>#34703)
   Remove hermes-parser and dependency. (https://github.com/poteto";>@​poteto in https://redirect.github.com/facebook/react/pull/34719";>#34719)
   Remove @babel/plugin-proposal-private-methods dependency. 
(https://github.com/ArnaudBarre";>@​ArnaudBarre and https://github.com/josephsavona";>@​josephsavona in https://redirect.github.com/facebook/react/pull/34715";>#34715)
   Update for Zod v3/v4 compatibility. (https://github.com/kolvian";>@​kolian and https://github.com/josephsavona";>@​josephsavona in https://redirect.github.com/facebook/react/pull/34717";>#34717)
   
   6.1.0
   Note: Version 6.0.0 was mistakenly released and 
immediately deprecated and untagged on npm. This is the first official 6.x 
major release and includes breaking changes.
   
   Breaking: Require Node.js 18 or newer. (https://github.com/michaelfaith";>@​michaelfaith in https://redirect.github.com/facebook/react/pull/32458";>#32458)
   Breaking: Flat config is now the default 
recommended preset. Legacy config moved to 
recommended-legacy. (https://github.com/michaelfaith";>@​michaelfaith in https://redirect.github.com/facebook/react/pull/32457";>#32457)
   New Violations: Disallow calling use 
within try/catch blocks. (https://github.com/poteto";>@​poteto in https://redirect.github.com/facebook/react/pull/34040";>#34040)
   New Violations: Disallow calling 
useEffectEvent functions in arbitrary closures. (https://github.com/jbrown215";>@​jbrown215 in https://redirect.github.com/facebook/react/pull/33544";>#33544)
   Handle React.useEffect in addition to 
useEffect in rules-of-hooks. (https://github.com/Ayc0";>@​Ayc0 in https://redirect.github.com/facebook/react/pull/34076";>#34076)
   Added react-hooks settings config option that to accept 
additionalEffectHooks that are used across exhaustive-deps and 
rules-of-hooks rules. (https://github.com/jbrown215";>@​jbrown215) in https://redirect.github.com/facebook/react/pull/34497";>#34497
   
   6.0.0
   Accidentally released. See 6.1.0 for the actual changes.
   
   
   
   Commits
   
   See full diff in https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugi