Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 19, 2024

This PR contains the following updates:

Package Change Age Confidence
@eslint/compat (source) ^1.2.4 -> ^2.0.0 age confidence
@testing-library/react-native (source) ^12.3.1 -> ^13.0.0 age confidence
@types/jest (source) ^29.5.2 -> ^30.0.0 age confidence
eslint-import-resolver-typescript ^3.6.1 -> ^4.0.0 age confidence
eslint-import-resolver-typescript ^3.7.0 -> ^4.0.0 age confidence
eslint-plugin-eslint-plugin ^6.4.0 -> ^7.0.0 age confidence
eslint-plugin-react-hooks (source) ^5.1.0 -> ^7.0.0 age confidence
globals ^15.14.0 -> ^16.0.0 age confidence
jest (source) ^29.7.0 -> ^30.0.0 age confidence
jest (source) ^29.5.0 -> ^30.0.0 age confidence
lerna (source) ^8.0.0 -> ^9.0.0 age confidence
npm-run-all2 ^5.0.0 -> ^8.0.0 age confidence

Release Notes

eslint/rewrite (@​eslint/compat)

v2.0.0

Compare Source

⚠ BREAKING CHANGES
  • Require Node.js ^20.19.0 || ^22.13.0 || >=24 (#​297)
Features
Dependencies
  • The following workspace dependencies were updated
callstack/react-native-testing-library (@​testing-library/react-native)

v13.3.3

Compare Source

🐛 Bug Fixes

v13.3.2

Compare Source

🐛 Bug Fixes
  • Do not infer generic Props type from RenderHookOptions (#​1816) (919f7c6)

New Contributors

v13.3.1

Compare Source

🐛 Bug Fixes

v13.3.0

Compare Source

✨ Features
📚 Documentation

v13.2.2

Compare Source

🐛 Bug Fixes
  • React Native 0.81 support (#​1794)
  • toBeDisabled now also evaluates disabled prop when element is Text (#​1802)

v13.2.1

Compare Source

✨ Features
🐛 Bug Fixes
  • check for pointerEvents in both props and styles (#​1799) (cc1e249)
  • update ESLint plugin documentation link in warning message (#​1782) (069de18)
📚 Documentation

v13.2.0

Compare Source

✨ Features

v13.1.1

Compare Source

🐛 Bug Fixes

v13.1.0

Compare Source

✨ Features
📚 Documentation

v13.0.1

Compare Source

🐛 Bug Fixes
📚 Documentation

v13.0.0

Compare Source

Migration guide

Important Changes
  • Enabled concurrent rendering by default
  • Automatically extend Jest matchers, you no longer need to import @testing-library/react-native/extend-expect. Importing @testing-library/react-native will be enough.
  • Removed host component name auto-detection. Your tests should run faster.
Removed
  • *ByA11yState queries have been removed use *ByRole queries or toHaveAccessibilityState matcher instead
  • *ByA11yValue queries have been removed use *ByRole queries or toHaveAccessibleValue matcher instead
  • Removed support for React 16 & 17. Supports React 18 and 19.
  • Removed debug.shallow method
  • Removed @testing-library/react-native Jest preset (useful for React 17). Just use regular react-native Jest preset.
Other changes (should have no visible effects):
  • new implementation of flushMicrotaskQueue
  • slightly different way to calculate a11y labels
  • uses React's implementation of act instead of React Test Renderer's
import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v4.4.4

Compare Source

Patch Changes

v4.4.3

Compare Source

Patch Changes

v4.4.2

Compare Source

Patch Changes

v4.4.1

Compare Source

Patch Changes

v4.4.0

Compare Source

Minor Changes

v4.3.5

Compare Source

Patch Changes

v4.3.4

Compare Source

Patch Changes

v4.3.3

Compare Source

Patch Changes

v4.3.2

Compare Source

Patch Changes

v4.3.1

Compare Source

Patch Changes

v4.3.0

Compare Source

Minor Changes

v4.2.7

Compare Source

Patch Changes

v4.2.6

Compare Source

Patch Changes

v4.2.5

Compare Source

Patch Changes

v4.2.4

Compare Source

Patch Changes
  • #​407 6b183ff Thanks @​JounQin! - chore: migrate to rebranding unrs-resolver with new targets supported:

    • i686-pc-windows-msvc
    • armv7-unknown-linux-musleabihf
    • powerpc64le-unknown-linux-gnu
    • s390x-unknown-linux-gnu

v4.2.3

Compare Source

Patch Changes
  • #​402 f21bf15 Thanks @​SunsetTechuila! - fix: don't resolve not implemented node modules in bun

    is-bun-module is marked as dependency, again, for correctness, see isBunImplementedNodeModule for more details

    For Bun users: you don't need to install is-bun-module any more but bun: true option is still required if you're running without bun --bun nor run#bun enabled

v4.2.2

Compare Source

Patch Changes
  • #​397 14a7688 Thanks @​JounQin! - chore: bump rspack-resolver for better P'n'P support

    Now rspack-resolver resolves pnpapi natively.

v4.2.1

Compare Source

Patch Changes

v4.2.0

Compare Source

Minor Changes
  • #​391 c8121e5 Thanks @​JounQin! - feat: make is-bun-module as optional peer dependency

    Technically this is a BREAKING CHANGE, but considering we just raise out v4 recently and this only affects bun users, bun --bun eslint even works without this dependency, so I'd consider this as a minor change.

    So for bun users, there are three options:

    1. install is-bun-module dependency manually and use bun: true option
    2. run eslint with bun --bun eslint w/o bun: true option
    3. enable run#bun in bunfig.toml w/o bun: true option

v4.1.1

Compare Source

Patch Changes

v4.1.0

Compare Source

Minor Changes
  • #​387 ef5cd10 Thanks @​JounQin! - feat: add a new bun?: boolean option for bun users - close #​386

    process.versions.bun is unavailable even with bun eslint due to its own design,
    but checking bun modules for non-bun users is incorrect behavior and just wasting time,
    so a new option is added for such case, you can still run with bun --bun eslint without this option enabled

v4.0.0

Compare Source

Major Changes
  • #​368 2fd7c2e Thanks @​JounQin! - feat!: rewrite, speed up by using rspack-resolver which supports references natively under the hood

    BREAKING CHANGES:

    • drop Node 14 support, Node ^16.17.0 || >=18.6 is now required
    • alwaysTryTypes is enabled by default, you can set it as false to opt-out
    • array type of project is discouraged but still supported, single project with references are encouraged for better performance, you can enable noWarnOnMultipleProjects option to supress the warning message
    • root tsconfig.json or jsconfig.json will be used automatically if no project provided
eslint-community/eslint-plugin-eslint-plugin (eslint-plugin-eslint-plugin)

v7.2.0

Compare Source

Features

v7.1.0

Compare Source

Features

v7.0.0

Compare Source

⚠ BREAKING CHANGES
  • enable no-meta-replaced-by, no-meta-schema-default, require-meta-default-options, require-meta-schema-description as recommended rules (#​530)
  • remove eslint v8 / eslintrc support and remove flat/ prefix from configs (#​528)
  • move to ESM only (#​516)
  • require Node 20, 22, 24+ (#​529)
Features
facebook/react (eslint-plugin-react-hooks)

v7.0.1

Compare Source

v7.0.0

Compare Source

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). (@​poteto in #​34757)

v6.1.1

Compare Source

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.

v6.1.0

Compare Source

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. (@​michaelfaith in #​32458)
  • Breaking: Flat config is now the default recommended preset. Legacy config moved to recommended-legacy. (@​michaelfaith in #​32457)
  • New Violations: Disallow calling use within try/catch blocks. (@​poteto in #​34040)
  • New Violations: Disallow calling useEffectEvent functions in arbitrary closures. (@​jbrown215 in #​33544)
  • Handle React.useEffect in addition to useEffect in rules-of-hooks. (@​Ayc0 in #​34076)
  • Added react-hooks settings config option that to accept additionalEffectHooks that are used across exhaustive-deps and rules-of-hooks rules. (@​jbrown215) in #​34497

v6.0.0

Compare Source

Accidentally released. See 6.1.0 for the actual changes.

sindresorhus/globals (globals)

v16.5.0

Compare Source


v16.4.0

Compare Source


v16.3.0

Compare Source


v16.2.0

Compare Source


v16.1.0

Compare Source


v16.0.0

Compare Source

Breaking
  • The serviceworker globals are now generated from browsers (#​281) 039ed51
    • It's a breaking change as a few globals have been removed.

jestjs/jest (jest)

v30.2.0

Compare Source

Chore & Maintenance
  • [*] Update example repo for testing React Native projects (#​15832)
  • [*] Update jest-watch-typeahead to v3 (#​15830)

v30.1.3

Compare Source

Fixes
  • Fix unstable_mockModule with node: prefixed core modules.

v30.1.2

Compare Source

Fixes
  • [jest-snapshot-utils] Correct snapshot header regexp to work with newline across OSes (#​15803)

v30.1.1

Compare Source

Fixes
  • [jest-snapshot-utils] Fix deprecated goo.gl snapshot warning not handling Windows end-of-line sequences (#​15800)
  • [jest-snapshot-utils] Improve messaging about goo.gl snapshot link change (#​15821)

v30.1.0

Compare Source

v30.0.5

Compare Source

Features
  • [jest-config] Allow testMatch to take a string value
  • [jest-worker] Let workerIdleMemoryLimit accept 0 to always restart worker child processes
Fixes

v30.0.4

Compare Source

Features
  • [expect] The Inverse type is now exported (#​15714)
  • [expect] feat: support async functions in toBe (#​15704)
Fixes
  • [jest] jest --onlyFailures --listTests now correctly lists only failed tests (#​15700)
  • [jest-snapshot] Handle line endings in snapshots (#​15708)

v30.0.3

Compare Source

Fixes
  • [jest-config] Fix ESM TS config loading in a CJS project (#​15694)
  • [jest-core] jest --onlyFailures --listTests now correctly lists only failed tests(#​15700)
Features
  • [jest-diff] Show non-printable control characters to diffs (#​15696)

v30.0.2

Compare Source

Fixes
  • [jest-matcher-utils] Make 'deepCyclicCopyObject' safer by setting descriptors to a null-prototype object (#​15689)
  • [jest-util] Make garbage collection protection property writable (#​15689)

v30.0.1

Compare Source

Features
  • [jest-resolver] Implement the defaultAsyncResolver (#​15679)
Fixes
  • [jest-resolver] Resolve builtin modules correctly (#​15683)
  • [jest-environment-node, jest-util] Avoid setting globals cleanup protection symbol when feature is off (#​15684)
Chore & Maintenance
  • [*] Remove and deprecate jest-repl package (#​15673)
  • [jest-resolver] Replace custom isBuiltinModule with node's isBuiltin (#​15685)

v30.0.0

Compare Source

Features
  • [*] Renamed globalsCleanupMode to globalsCleanup and --waitNextEventLoopTurnForUnhandledRejectionEvents to --waitForUnhandledRejections
  • [expect] Add ArrayOf asymmetric matcher for validating array elements. (#​15567)
  • [babel-jest] Add option excludeJestPreset to allow opting out of babel-preset-jest (#​15164)
  • [expect] Revert #​15038 to fix expect(fn).toHaveBeenCalledWith(expect.objectContaining(...)) when there are multiple calls (#​15508)
  • [jest-circus, jest-cli, jest-config] Add waitNextEventLoopTurnForUnhandledRejectionEvents flag to minimise performance impact of correct detection of unhandled promise rejections introduced in #​14315 (#​14681)
  • [jest-circus] Add a waitBeforeRetry option to jest.retryTimes (#​14738)
  • [jest-circus] Add a retryImmediately option to jest.retryTimes (#​14696)
  • [jest-circus, jest-jasmine2] Allow setupFilesAfterEnv to export an async function (#​10962)
  • [jest-circus, jest-test-result] Add startedAt timestamp in TestCaseResultObject within onTestCaseResult (#​15145)
  • [jest-cli] Export buildArgv (#​15310)
  • [jest-config] [BREAKING] Add mts and cts to default moduleFileExtensions config (#​14369)
  • [jest-config] [BREAKING] Update testMatch and testRegex default option for supporting mjs, cjs, mts, and cts (#​14584)
  • [jest-config] Loads config file from provided path in package.json (#​14044)
  • [jest-config] Allow loading jest.config.cts files (#​14070)
  • [jest-config] Show rootDir in error message when a preset fails to load (#​15194)
  • [jest-config] Support loading TS config files using esbuild-register via docblock loader (#​15190)
  • [jest-config] Allow passing TS config loader options via docblock comment (#​15234)
  • [jest-config] If Node is running with type stripping enabled, do not require a TS loader (#​15480)
  • [@jest/core] Group together open handles with the same stack trace (#​13417, & #​14789)
  • [@jest/core] Add perfStats to surface test setup overhead (#​14622)
  • [@jest/core] [BREAKING] Changed --filter to accept an object with shape { filtered: Array<string> } to match documentation (#​13319)
  • [@jest/core] Support --outputFile option for --listTests (#​14980)
  • [@jest/core] Stringify Errors properly with --json flag (#​15329)
  • [@jest/core, @&#8203;jest/test-sequencer] [BREAKING] Exposes globalConfig & contexts to TestSequencer (#​14535, & #​14543)
  • [jest-each] Introduce %$ option to add number of the test to its title (#​14710)
  • [@jest/environment] [BREAKING] Remove deprecated jest.genMockFromModule() (#​15042)
  • [@jest/environment] [BREAKING] Remove unnecessary defensive code (#​15045)
  • [jest-environment-jsdom] [BREAKING] Upgrade JSDOM to v22 (#​13825)
  • [@jest/environment-jsdom-abstract] Introduce new package which abstracts over the jsdom environment, allowing usage of custom versions of JSDOM (#​14717)
  • [jest-environment-node] Update jest environment with dispose symbols Symbol (#​14888 & #​14909)
  • [expect, @&#8203;jest/expect] [BREAKING] Add type inference for function parameters in CalledWith assertions (#​15129)
  • [@jest/expect-utils] Properly compare all types of TypedArrays (#​15178)
  • [@jest/fake-timers] [BREAKING] Upgrade @sinonjs/fake-timers to v13 (#​14544 & #​15470)
  • [@jest/fake-timers] Exposing new modern timers function advanceTimersToFrame() which advances all timers by the needed milliseconds to execute callbacks currently scheduled with requestAnimationFrame (#​14598)
  • [jest-matcher-utils] Add SERIALIZABLE_PROPERTIES to allow custom serialization of objects (#​14893)
  • [jest-mock] Add support for the Explicit Resource Management propos

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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 force-pushed the renovate/major-devdependencies branch 4 times, most recently from 44eecab to 5c3c717 Compare April 13, 2024 03:28
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 5c3c717 to b37fa2f Compare May 27, 2024 16:13
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from b37fa2f to 48b2d1e Compare July 25, 2024 19:51
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 48b2d1e to e2e52d8 Compare August 3, 2024 18:47
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from e2e52d8 to 8060194 Compare August 29, 2024 08:15
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 8060194 to 661d5ae Compare October 14, 2024 20:57
@renovate renovate bot force-pushed the renovate/major-devdependencies branch 3 times, most recently from c331694 to 856a81f Compare November 8, 2024 16:24
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 856a81f to 1990b2a Compare November 12, 2024 11:32
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 1990b2a to 300b963 Compare November 26, 2024 14:32
@renovate renovate bot changed the title chore(deps): update devdependencies (major) chore(deps): update devdependencies (major) - autoclosed Dec 8, 2024
@renovate renovate bot closed this Dec 8, 2024
@renovate renovate bot deleted the renovate/major-devdependencies branch December 8, 2024 18:48
@renovate renovate bot changed the title chore(deps): update devdependencies (major) - autoclosed chore(deps): update devdependencies (major) Dec 9, 2024
@renovate renovate bot reopened this Dec 9, 2024
@renovate renovate bot force-pushed the renovate/major-devdependencies branch 3 times, most recently from 9feedda to 3a5e43b Compare December 12, 2024 19:01
@renovate renovate bot force-pushed the renovate/major-devdependencies branch 2 times, most recently from 7458c46 to 2ed737c Compare January 6, 2025 11:37
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 2ed737c to a2c7d1c Compare January 16, 2025 17:34
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from a2c7d1c to 004f038 Compare March 20, 2025 02:54
@renovate renovate bot force-pushed the renovate/major-devdependencies branch 2 times, most recently from fec9655 to a11335a Compare June 19, 2025 08:00
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from a11335a to a8eb2bf Compare June 21, 2025 02:48
@renovate renovate bot force-pushed the renovate/major-devdependencies branch 15 times, most recently from 3759dd1 to d960135 Compare November 4, 2025 06:58
@renovate renovate bot force-pushed the renovate/major-devdependencies branch 2 times, most recently from 9e4bce3 to 2b8d00c Compare November 17, 2025 12:53
@renovate renovate bot force-pushed the renovate/major-devdependencies branch 2 times, most recently from f3d35e3 to cb4241a Compare November 24, 2025 15:30
@renovate renovate bot force-pushed the renovate/major-devdependencies branch 2 times, most recently from 95a862f to 821e783 Compare November 25, 2025 08:50
@AntoineThibi AntoineThibi force-pushed the renovate/major-devdependencies branch from 821e783 to 55640fe Compare November 25, 2025 11:01
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 55640fe to c370e42 Compare November 25, 2025 11:05
@AntoineThibi AntoineThibi force-pushed the renovate/major-devdependencies branch from c370e42 to 55640fe Compare November 25, 2025 11:09
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 55640fe to 16eb6c6 Compare November 25, 2025 11:13
@renovate
Copy link
Contributor Author

renovate bot commented Nov 25, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@AntoineThibi AntoineThibi merged commit af5a802 into main Nov 25, 2025
6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants