Skip to content

fix(deps): update patch#673

Merged
renovate[bot] merged 1 commit into
mainfrom
renovate/patch
Jun 4, 2026
Merged

fix(deps): update patch#673
renovate[bot] merged 1 commit into
mainfrom
renovate/patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jun 3, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@eslint-react/eslint-plugin (source) 2.3.132.13.0 age confidence
@eslint/compat (source) 2.0.32.1.0 age confidence
@jahia/cypress 7.0.07.4.0 age confidence
@rollup/pluginutils (source) 5.3.05.4.0 age confidence
@types/node (source) 22.19.1522.19.19 age confidence
@types/node (source) 22.17.122.19.19 age confidence
cypress-real-events 1.14.01.15.0 age confidence
cypress-slow-down 1.3.11.4.0 age confidence
cypress-terminal-report 7.2.27.3.3 age confidence
dotenv 17.2.317.4.2 age confidence
eslint-plugin-cypress 5.2.15.3.0 age confidence
glob 11.0.311.1.0 age confidence
graphql 16.12.016.14.0 age confidence
i18next (source) 25.7.325.10.10 age confidence
mochawesome-merge 5.0.05.1.1 age confidence
mochawesome-report-generator 6.2.06.3.2 age confidence
prettier (source) 3.7.43.8.3 age confidence
prettier-plugin-jsdoc 1.8.01.8.1 age confidence
publint (source) 0.3.180.3.21 age confidence
react-i18next 16.5.416.6.6 age confidence
rolldown (source) 1.0.21.0.3 age confidence
rollup-plugin-sbom 3.0.43.2.2 age confidence
tinyglobby (source) 0.2.160.2.17 age confidence
tsdown (source) 0.22.00.22.1 age confidence
vite (source) 8.0.148.0.15 age confidence

Release Notes

Rel1cx/eslint-react (@​eslint-react/eslint-plugin)

v2.13.0

Compare Source

✨ New
🐞 Fixes
📝 Changes you should be aware of
  1. The naming-convention/filename rule has been deprecated and will be removed in the next major version.
  2. The naming-convention/filename-extension rule has been deprecated and will be removed in the next major version.

Modern React frameworks each come with their own naming conventions that can differ or even conflict. A single predefined, framework-agnostic filename or filename extension rule no longer matches real-world usage. Please follow the official naming conventions of the specific React framework you are using.

For example, here are some references for popular frameworks:

Full Changelog: Rel1cx/eslint-react@v2.12.4...v2.13.0

v2.12.4

Compare Source

🐞 Fixes
🪄 Improvements

Full Changelog: Rel1cx/eslint-react@v2.12.2...v2.12.4

v2.12.2

Compare Source

🐞 Fixes
  • Reduce the sensitivity of component detection to prevent false positives in certain rules, closes #​1488 by @​Rel1cx in #​1489

Full Changelog: Rel1cx/eslint-react@v2.12.1...v2.12.2

v2.12.1

Compare Source

🐞 Fixes
  • Check all union constituents and allow all types under React namespace in no-implicit-key by @​Rel1cx in #​1487

Full Changelog: Rel1cx/eslint-react@v2.12.0...v2.12.1

v2.12.0

Compare Source

🪄 Improvements
📝 Changes you should be aware of

ESLint v10 is now supported and used throughout the repository. The minimum required ESLint version remains v8.57.0, but the project now supports and is tested against ESLint v10.

Full Changelog: Rel1cx/eslint-react@v2.11.2...v2.12.0

v2.11.2

Compare Source

🐞 Fixes
  • Implement a more robust check to handle cases that getFullyQualifiedName cannot handle in no-implicit-key, closes #​1476 by @​Rel1cx in #​1480
🪄 Improvements
  • Bump esbuild, node types, jsdoc plugin

Full Changelog: Rel1cx/eslint-react@v2.11.1...v2.11.2

v2.11.1

Compare Source

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.11.0...v2.11.1

v2.11.0

Compare Source

✨ New

Full Changelog: Rel1cx/eslint-react@v2.10.1...v2.11.0

v2.10.1

Compare Source

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.10.0...v2.10.1

v2.10.0

Compare Source

📝 Changes you should be aware of
  1. The no-implicit-key rule has been updated to use type checking and moved from recommended to type-checked presets.
  2. The no-unnecessary-use-ref rule has been moved to removed rules, because the rule is hard to get right.

Full Changelog: Rel1cx/eslint-react@v2.9.4...v2.10.0

v2.9.4

Compare Source

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.9.3...v2.9.4

v2.9.3

Compare Source

📝 Changes you should be aware of

The following rules have been deprecated and will be removed in the next major version:

  • no-default-props
  • no-prop-types
  • no-string-refs

For legacy codebases, use no-restricted-syntax as an alternative:

{
    files: ['**/*.jsx', '**/*.tsx'],
    rules: {
        "no-restricted-syntax": [
            "error",
            {
                "selector": "AssignmentExpression[operator='='][left.property.name='defaultProps']",
                "message": "[Deprecated] Use ES6 default parameters instead."
            },
            {
                "selector": "AssignmentExpression[operator='='][left.property.name='propTypes']",
                "message": "[Deprecated] Use TypeScript or another type-checking solution instead."
            },
            {
                "selector": "JSXAttribute[name.name='ref'][value.type='Literal']",
                "message": "[Deprecated] Use callback refs instead."
            }
        ]
    }
}

Full Changelog: Rel1cx/eslint-react@v2.9.2...v2.9.3

v2.9.2

🐞 Fixes
🪄 Improvements

Full Changelog: Rel1cx/eslint-react@v2.9.0...v2.9.2

v2.9.0

Compare Source

✨ New
🪄 Improvements
  • Move grouped docs from the global overview to per-plugin READMEs by @​Rel1cx in #​1449
📝 Changes you should be aware of

The no-non-async-server-functions rule has been migrated to rsc/function-definition. Please update your configuration accordingly if you are using it.

Full Changelog: Rel1cx/eslint-react@v2.8.4...v2.9.0

v2.8.4

Compare Source

🐞 Fixes

v2.8.3

Compare Source

✨ New

Full Changelog: Rel1cx/eslint-react@v2.8.1...v2.8.3

v2.8.1

Compare Source

✨ New
  • Function component detection now supports identifying components that don't return a ReactNode but have a 'use memo' or 'use no memo' directive by @​Rel1cx in #​1440
    The function in below example will be detected as a function component in relevant rules:
    function App() {
      "use memo";
    }
    
    function App() {
      "use no memo";
    }
🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.8.0...v2.8.1

v2.8.0

Compare Source

✨ New
  • Function component detection now supports identifying components that don't return a ReactNode but call React Hooks by @​Rel1cx in #​1438
    The function in below example will be detected as a function component in relevant rules:
    function App() {
      useEffect(() => {}, []);
    }
🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.7.4...v2.8.0

v2.7.4

Compare Source

✨ New
🐞 Fixes
🪄 Improvements

Full Changelog: Rel1cx/eslint-react@v2.7.2...v2.7.3

v2.7.2

Compare Source

🪄 Improvements
  • Reimplement the prefer-destructuring-assignment rule for better performance by @​Rel1cx in #​1423

Full Changelog: Rel1cx/eslint-react@v2.7.1...v2.7.2

v2.7.1

Compare Source

🐞 Fixes
  • Fix misdetected functions inside array expressions as function components; closes #​1416 by @​Rel1cx in #​1418
  • Remove unnecessary no-unnecessary-use-ref rule from strict configurations and update documentation by @​Rel1cx in #​1419
📝 Changes you should be aware of

The no-unnecessary-use-ref rule has been removed from the strict presets, as it was causing false positives in certain scenarios. You can still enable it manually if needed, but please be aware of its current limitations.

Full Changelog: Rel1cx/eslint-react@v2.7.0...v2.7.1

v2.7.0

Compare Source

✨ New
🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.6.4...v2.7.0

v2.6.4

Compare Source

✨ New
  • feat: add a disable-experimental preset to quickly opt out of experimental rules by @​Rel1cx in #​1403

Full Changelog: Rel1cx/eslint-react@v2.6.2...v2.6.4

v2.6.2

🐞 Fixes

v2.6.0

✨ New
📝 Changes you should be aware of

The new no-unnecessary-use-ref rule is included in the strict presets.

This rule reports unnecessary uses of useRef when the ref is only used within a single effect which the value can be co-located inside the effect itself. Thanks to @​SukkaW for purposing it!

Full Changelog: Rel1cx/eslint-react@v2.5.7...v2.6.0

v2.5.7

Compare Source

🪄 Improvements
🐞 Fixes
📝 Changes you should be aware of

The no-implicit-key rule has been re-added to the recommended presets.

Full Changelog: Rel1cx/eslint-react@v2.5.5...v2.5.7

v2.5.5

🐞 Fixes
📝 Changes you should be aware of

The following rules have been removed from the strict and recommended presets:

  • no-unnecessary-key
  • no-duplicate-key
  • no-implicit-key

Full Changelog: Rel1cx/eslint-react@v2.5.3...v2.5.5

v2.5.3

Compare Source

🐞 Fixes
  • Enhance context and ref naming rules with additional cases covered by @​Rel1cx in #​1378
  • Update naming-convention/context-name rule to include React version checks; closes #​1382 by @​Rel1cx in #​1384
  • Update naming-convention/ref-name to allow "ref" as a ref name by @​ocavue in #​1380
  • Fix jsx-key-before-spread: should only be enabled in JSX automatic runtime; update related docs and tests; closes #​1381 by @​Rel1cx in #​1383

v2.5.1

Compare Source

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.5.0...v2.5.1

v2.5.0

Compare Source

✨ New
🪄 Improvements

v2.4.0

Compare Source

✨ New
  • Add enforceAssignment and enforceSetterName options to naming-convention/use-state by @​Rel1cx in #​1346
🐞 Fixes
🪄 Improvements
  • Update typescript-eslint to 8.50.1 across all packages

Full Changelog: Rel1cx/eslint-react@v2.3.13...v2.4.0

eslint/rewrite (@​eslint/compat)

v2.1.0

Compare Source

Features

v2.0.5

Compare Source

Dependencies
  • The following workspace dependencies were updated

v2.0.4

Compare Source

Dependencies
  • The following workspace dependencies were updated
Jahia/jahia-cypress (@​jahia/cypress)

v7.4.0

Compare Source

What's Changed

New features

Full Changelog: Jahia/jahia-cypress@v7.3.0...v7.4.0

v7.3.0

Compare Source

What's Changed

Other Changes

Full Changelog: Jahia/jahia-cypress@v7.2.0...v7.3.0

v7.2.0

Compare Source

What's Changed

Other Changes

Full Changelog: Jahia/jahia-cypress@v7.1.0...v7.2.0

v7.1.0

Compare Source

What's Changed

Other Changes
  • feat: add removeMixins and allow apolloOptions on some helpers by @​jkevan in #​190

Full Changelog: Jahia/jahia-cypress@v7.0.0...v7.1.0

rollup/plugins (@​rollup/pluginutils)

v5.4.0

2026-05-29

Features
  • feat: named exports for reserved-word keys + fix duplicate default export in dataToEsm (#​2002)
dmtrKovalenko/cypress-real-events (cypress-real-events)

v1.15.0

Compare Source

Changes

  • Cypress v15 support
  • Better support for cypress docker browsers
bahmutov/cypress-slow-down (cypress-slow-down)

v1.4.0

Compare Source

Bug Fixes
Features
archfz/cypress-terminal-report (cypress-terminal-report)

v7.3.3

Compare Source

  • Fix on fail overriding when extended collector enabled. issue

v7.3.2

Compare Source

  • Fix still occurring incorrect memory cleanup. Smarter memory protection. issue

v7.3.1

Compare Source

  • Experimental fix for too early cleanup in log collector state. issue

v7.3.0

Compare Source

  • Add new support install option maxLogLength (default 15000).
motdotla/dotenv (dotenv)

v17.4.2

Compare Source

v17.4.1

Compare Source

v17.4.0

Compare Source

v17.3.1

Compare Source

Changed
  • Fix as2 example command in README and update spanish README

v17.3.0

Compare Source

Added
  • Add a new README section on dotenv’s approach to the agentic future.
Changed
  • Rewrite README to get humans started more quickly with less noise while simultaneously making more accessible for llms and agents to go deeper into details.

v17.2.4

Compare Source

Changed
  • Make DotenvPopulateInput accept NodeJS.ProcessEnv type (#​915)
  • Give back to dotenv by checking out my newest project vestauth. It is auth for agents. Thank you for using my software.
cypress-io/eslint-plugin-cypress (eslint-plugin-cypress)

v5.3.0

Compare Source

Features
isaacs/node-glob (glob)

v11.1.0

Compare Source

graphql/graphql-js (graphql)

v16.14.0

Compare Source

v16.14.0 (2026-05-03)

New Feature 🚀
Bug Fix 🐞
Docs 📝
Committers: 4

v16.13.2

Compare Source

v16.13.1

Compare Source

v16.13.0

Compare Source

i18next/i18next (i18next)

v25.10.10

Compare Source

v25.10.9

Compare Source

v25.10.8

Compare Source

v25.10.7

Compare Source

v25.10.6

Compare Source

v25.10.5

Compare Source

  • feat(types): selector functions as keyPrefix in getFixedT now provide full type-safe key narrowing — the returned t function is scoped to the prefix subtree 2367

v25.10.4

Compare Source

  • feat(types): exists() is now a type guard that narrows the key to SelectorKey, so a validated key can be passed directly to t() 2364

v25.10.3

Compare Source

  • check also for I18NEXT_NO_SUPPORT_NOTICE env variable

v25.10.2

Compare Source

  • feat(types): keyFromSelector is now type-safe — the selector callback is constrained against your resource definitions, catching invalid keys at compile time. Supports optional ns and keyPrefix options for non-default namespace/prefix contexts 2364

v25.10.1

Compare Source

  • fix(types): FilterKeys now correctly excludes base keys that have context variants when the provided context doesn't match any of them (e.g. key some with variant some_me is no longer accessible with context="one")

v25.10.0

Compare Source

  • feat(types): keyFromSelector now returns a branded SelectorKey type that t() accepts directly, enabling pre-computed and reusable translation keys 2364
  • feat: support selector syntax for keyPrefix in getFixedT and per-call options 2367
  • feat(types): interpolation values are now automatically typed based on built-in format specifiers — {{val, number}} requires number, {{val, datetime}} requires Date, {{name}} requires string, etc. Custom formatters can be typed via interpolationFormatTypeMap in CustomTypeOptions 2378
  • fix(types): FilterKeys in selector mode now preserves non-context, non-plural leaf keys when context is provided, fixing incorrect type narrowing when combining returnObjects: true with context 2398

v25.9.0

Compare Source

  • feat(types): selector API now enforces { count: number } when a key resolves to plural forms 2373
  • fix(types): string unions with invalid members are now correctly detected as type errors when used as context option 2172

v25.8.20

Compare Source

    • fix: getFixedT() selector now resolves namespaces against the effective ns rather than the global init options #​2406

v25.8.19

Compare Source

  • fix: selector API namespace resolution regression for single-string ns and primary namespace in array #​2405. Reverts the broad namespace-prefix rewrite from v25.8.15 and replaces it with a targeted fix that only rewrites paths starting with a secondary namespace in a multi-namespace array, matching the type-level contract of GetSource

v25.8.18

Compare Source

  • improve selector api to accept array of selector functions, analogous to array of keys 2404

v25.8.17

Compare Source

  • update deps

v25.8.16

Compare Source

  • fix(types): on() method now correctly returns this instead of void, matching the runtime behavior and enabling proper method chaining in TypeScript

v25.8.15

Compare Source

  • fix: Selector API unable to resolve namespaces #​2402

v25.8.14

Compare Source

  • fix: getCleanedCode now replaces all underscores

v25.8.13

Compare Source

  • improve support notice shown logic

v25.8.12

Compare Source

  • improve support notice shown logic

v25.8.11

Compare Source

  • revert fix: compatibility with

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot requested a review from a team as a code owner June 3, 2026 07:36
@renovate renovate Bot added the dependencies label Jun 3, 2026
@renovate renovate Bot enabled auto-merge (squash) June 3, 2026 07:36
@github-actions
Copy link
Copy Markdown

github-actions Bot commented Jun 3, 2026

🦜 Chachalog

No changelog entries detected. Learn more about Chachalog.

Create a new entry online or run npx chachalog@0.5.1 prompt to create a new entry locally.

@renovate renovate Bot force-pushed the renovate/patch branch from 6596d3e to 83c317a Compare June 3, 2026 11:11
@renovate renovate Bot force-pushed the renovate/patch branch from 83c317a to f233c33 Compare June 4, 2026 04:33
@GauBen GauBen added the 🗒️ no-changelog No release notes or changelog entry should be added for this PR or Issue label Jun 4, 2026
@renovate renovate Bot merged commit 1535a00 into main Jun 4, 2026
21 of 24 checks passed
@renovate renovate Bot deleted the renovate/patch branch June 4, 2026 09:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies 🗒️ no-changelog No release notes or changelog entry should be added for this PR or Issue

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant