Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2026

Bumps the non-major-dependencies group with 13 updates in the /frontend directory:

Package From To
@mtes-mct/monitor-ui 24.39.0 24.42.0
@react-pdf/renderer 4.3.0 4.3.2
@reduxjs/toolkit 2.8.2 2.11.2
@tanstack/react-virtual 3.13.12 3.13.18
dayjs 1.11.18 1.11.19
formik 2.4.6 2.4.9
lodash 4.17.21 4.17.23
ol 10.6.1 10.7.0
ramda 0.31.3 0.32.0
react-router 7.8.2 7.13.0
ts-jest 29.4.1 29.4.6
use-debounce 10.0.6 10.1.0
yup 1.7.0 1.7.1

Updates @mtes-mct/monitor-ui from 24.39.0 to 24.42.0

Release notes

Sourced from @​mtes-mct/monitor-ui's releases.

v24.42.0

24.42.0 (2026-01-21)

⚠ BREAKING CHANGES

  • fields: rename MultiZoneEditor To MultiLocationEditor, refacto props

Features

  • fields: refactor MultiZoneEditor (c41b601)

v24.41.0

24.41.0 (2026-01-20)

Features

  • icons: add vessel tabs icons (19d2fc9)

v24.40.0

24.40.0 (2026-01-15)

Features

Changelog

Sourced from @​mtes-mct/monitor-ui's changelog.

24.42.0 (2026-01-21)

⚠ BREAKING CHANGES

  • fields: rename MultiZoneEditor To MultiLocationEditor, refacto props

Features

  • fields: refactor MultiZoneEditor (c41b601)

24.41.0 (2026-01-20)

Features

  • icons: add vessel tabs icons (19d2fc9)

24.40.0 (2026-01-15)

Features

Commits

Updates @react-pdf/renderer from 4.3.0 to 4.3.2

Release notes

Sourced from @​react-pdf/renderer's releases.

@​react-pdf/renderer@​4.3.2

Patch Changes

@​react-pdf/renderer@​4.3.1

Patch Changes

Changelog

Sourced from @​react-pdf/renderer's changelog.

4.3.2

Patch Changes

4.3.1

Patch Changes

Commits

Updates @reduxjs/toolkit from 2.8.2 to 2.11.2

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.11.2

This bugfix release updates the AbortSignal handling to fall back if DOMException isn't available (such as RN environments), and updates the TypedUseInfiniteQueryHookResult type to correctly include fetchNextPage/fetchPreviousPage fields.

Changelog

Bugfixes

The AbortSignal changes in 2.11.1 used DOMException in a couple places to match the expected behavior of AbortSignal, but turns out that's not available in environments like React Native. We've updated the logic to fall back to a plain Error if DOMException isn't available.

The TypedUseInfiniteQueryHookResult type wasn't correctly including the fetchNextPage/fetchPreviousPage fields, and now it does.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v2.11.1...v2.11.2

v2.11.1

This bugfix release fixes an issue with our internal AbortSignal handling that was reported as causing an error in a rare reset situation. We've also restructured our publishing process to use NPM Trusted Publishing, and updated our TS support matrix to only support TS 5.4+.

Changelog

Publishing Changes

We've previously done most of our releases semi-manually locally, with various release process CLI tools. With the changes to NPM publishing security and the recent wave of NPM attacks, we've updated our publishing process to solely use NPM Trusted Publishing via workflows. We've also done a hardening pass on our own CI setup.

We had done a couple releases via CI workflows previously, and later semi-manual releases caused PNPM to warn that RTK was no longer trusted. This release should be trusted and will resolve that issue.

Thanks to the e18e folks and their excellent guide at https://e18e.dev/docs/publishing for making this process easier!

TS Support Matrix Updates

We've previously mentioned rolling changes to our TS support matrix in release notes, but didn't officially document our support policy. We've added a description of the support policy (last 2 years of TS releases, matching DefinitelyTyped) and the current oldest TS version we support in the docs:

As of today, we've updated the support matrix to be TS 5.4+ . As always, it's possible RTK will work if you're using an earlier version of TS, but we don't test against earlier versions and don't support any issues with those versions.

We have run an initial test with the upcoming TS 7.0 native tsgo release. We found a couple minor issues with our own TS build and test setup, but no obvious issues with using RTK with TS 7.0.

Bug Fixes

A user reported a rare edge case where the combination of resetApiState and retry() could lead to an error calling an AbortController. We've restructured our AbortController handling logic to avoid that (and simplified a bit of our internals in the process).

What's Changed

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​reduxjs/toolkit since your current version.


Updates @tanstack/react-virtual from 3.13.12 to 3.13.18

Release notes

Sourced from @​tanstack/react-virtual's releases.

@​tanstack/react-virtual@​3.13.18

Patch Changes

  • Updated dependencies [9067574]:
    • @​tanstack/virtual-core@​3.13.18

@​tanstack/react-virtual@​3.13.17

Patch Changes

  • Updated dependencies [21d9a46]:
    • @​tanstack/virtual-core@​3.13.17

@​tanstack/react-virtual@​3.13.16

Patch Changes

  • Updated dependencies [db6df21]:
    • @​tanstack/virtual-core@​3.13.16

@​tanstack/react-virtual@​3.13.15

Patch Changes

  • feat(react-virtual): add useFlushSync option (#1100)

    Adds a React-specific useFlushSync option to control whether flushSync is used for synchronous scroll correction during measurement.

    The default behavior remains unchanged (useFlushSync: true) to preserve the best scrolling experience. Disabling it avoids the React 19 warning about calling flushSync during render, at the cost of potentially increased visible whitespace during fast scrolling with dynamically sized items.

  • Updated dependencies [5a273bf]:

    • @​tanstack/virtual-core@​3.13.15

@​tanstack/react-virtual@​3.13.14

Patch Changes

  • Updated dependencies [6d9274c]:
    • @​tanstack/virtual-core@​3.13.14

@​tanstack/react-virtual@​3.13.13

Patch Changes

  • Fix: Notify framework when count changes to update getTotalSize() (#1085)

    Fixed an issue where getTotalSize() would return stale values when the count option changed (e.g., during filtering or search operations). The virtualizer now automatically notifies the framework when measurement-affecting options change, ensuring the UI updates correctly without requiring manual useMemo workarounds.

    Before: When filtering items, the list container would maintain its previous height, causing excessive blank space (when count decreased) or inaccessible items (when count increased).

    After: Height updates automatically when count changes, providing the correct user experience.

    This fix applies to all framework adapters and has minimal performance impact (< 0.1ms per change).

... (truncated)

Changelog

Sourced from @​tanstack/react-virtual's changelog.

3.13.18

Patch Changes

  • Updated dependencies [9067574]:
    • @​tanstack/virtual-core@​3.13.18

3.13.17

Patch Changes

  • Updated dependencies [21d9a46]:
    • @​tanstack/virtual-core@​3.13.17

3.13.16

Patch Changes

  • Updated dependencies [db6df21]:
    • @​tanstack/virtual-core@​3.13.16

3.13.15

Patch Changes

  • feat(react-virtual): add useFlushSync option (#1100)

    Adds a React-specific useFlushSync option to control whether flushSync is used for synchronous scroll correction during measurement.

    The default behavior remains unchanged (useFlushSync: true) to preserve the best scrolling experience. Disabling it avoids the React 19 warning about calling flushSync during render, at the cost of potentially increased visible whitespace during fast scrolling with dynamically sized items.

  • Updated dependencies [5a273bf]:

    • @​tanstack/virtual-core@​3.13.15

3.13.14

Patch Changes

  • Updated dependencies [6d9274c]:
    • @​tanstack/virtual-core@​3.13.14

3.13.13

Patch Changes

  • Fix: Notify framework when count changes to update getTotalSize() (#1085)

    Fixed an issue where getTotalSize() would return stale values when the count option changed (e.g., during filtering or search operations). The virtualizer now automatically notifies the framework when measurement-affecting options change, ensuring the UI updates correctly without requiring manual useMemo workarounds.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tanstack/react-virtual since your current version.


Updates dayjs from 1.11.18 to 1.11.19

Release notes

Sourced from dayjs's releases.

v1.11.19

1.11.19 (2025-10-31)

Bug Fixes

  • added usage warnings for diff + updated unit tests (#2948) (269a7a9)
  • dont instantiate regexes within ar locale functions to avoid performance overhead (#2898) (af5e9f0)
  • replace italian locale "un' ora fa" with "un'ora fa", add tests for it (#2930) (9e9f76c)
  • Updated Belarusian locale with relative time (#2656) (1d8746c)
Changelog

Sourced from dayjs's changelog.

1.11.19 (2025-10-31)

Bug Fixes

  • added usage warnings for diff + updated unit tests (#2948) (269a7a9)
  • dont instantiate regexes within ar locale functions to avoid performance overhead (#2898) (af5e9f0)
  • replace italian locale "un' ora fa" with "un'ora fa", add tests for it (#2930) (9e9f76c)
  • Updated Belarusian locale with relative time (#2656) (1d8746c)
Commits

Updates formik from 2.4.6 to 2.4.9

Release notes

Sourced from formik's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

  • #4042 1de45de Thanks @​copilot-swe-agent! - Replace JSX.IntrinsicElements with React.JSX.IntrinsicElements for React 19 compatibility. The global JSX namespace was removed in React 19, so we now use React.JSX.IntrinsicElements instead.
Commits
  • 91475ad Merge pull request #4053 from jaredpalmer/changeset-release/main
  • 920f107 Version Packages
  • 8f9d04d fix: jsx ref for react 19 (#4051)
  • ddfae3f Merge pull request #4045 from jaredpalmer/changeset-release/main
  • 741c9d4 Version Packages
  • f7f8f53 Upgrade changesets/action to v1.5.3 and npm packages (#4043)
  • 7fca4b2 Merge pull request #4044 from jaredpalmer/copilot/upgrade-to-latest-turborepo
  • c8e5527 Add .turbo to .gitignore and remove cached files
  • 488dbec Upgrade turborepo from 1.9.9 to 2.6.0 with initial configuration changes
  • dc03941 Initial plan
  • Additional commits viewable in compare view

Updates lodash from 4.17.21 to 4.17.23

Commits

Updates ol from 10.6.1 to 10.7.0

Release notes

Sourced from ol's releases.

v10.7.0

With 40 pull requests over a period of almost 5 months, this long awaited release brings important bug fixes as well as exiting new features. The highlights are

  • Several WebGL renderer bug fixes, along with improved memory management
  • Updates for the Polyline feature format
  • API improvements and bug fixes on the Select, Extent and Snap interactions
  • Reprojection support for VectorTile layers
  • Full web worker support for Map, with an (Offscreen)Canvas as map target
  • Fixed cache and rendering for reprojected raster/image tile layers
  • Several updated and new examples, including a globe-like map with Equal Earth projection

Upgrade notes

Deprecation of ol/array's stableSort

Sorting is guaranteed to be stable since ECMAScript 2019.

// Before
stableSort(arr, compareFnc);
// After
arr.sort(compareFnc);

Deprecation of functions in ol/format/Polyline

The following functions have been deprecated without replacement:

  • decodeDeltas
  • encodeDeltas
  • decodeFloats
  • encodeFloats

What's Changed

... (truncated)

Commits
  • 4a989ef Updates for the 10.7.0 release
  • c9d2b84 Merge pull request #17162 from ahocevar/reprojection-cache
  • b59141e Merge pull request #17176 from mradamcox/update-modify-deletecondition-docs
  • 520a8fd add docs codeblock for multiple deleteCondition checks
  • 9a07b3d Merge pull request #17170 from openlayers/dependabot/npm_and_yarn/rollup/plug...
  • 7a36d94 Work around typescript issue
  • 1aa30a8 chore(deps-dev): bump @​rollup/plugin-alias from 5.1.1 to 6.0.0
  • 54e7b43 Merge pull request #17174 from openlayers/dependabot/github_actions/actions/u...
  • 661dd58 Merge pull request #17173 from openlayers/dependabot/npm_and_yarn/puppeteer-2...
  • 2fbce76 Merge pull request #17172 from openlayers/dependabot/npm_and_yarn/rollup/plug...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for ol since your current version.


Updates ramda from 0.31.3 to 0.32.0

Release notes

Sourced from ramda's releases.

v0.32.0

upgrade guide

Commits

Updates react-router from 7.8.2 to 7.13.0

Release notes

Sourced from react-router's releases.

v7.13.0

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7130

v7.12.0

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7120

v7.11.0

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7110

v7.10.1

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7101

v7.10.0

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7100

v7.9.6

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v796

v7.9.5

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v795

v7.9.4

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v794

v7.9.3

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v793

v7.9.2

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v792

v7.9.1

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v791

v7.9.0

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v790

Changelog

Sourced from react-router's changelog.

7.13.0

Minor Changes

  • Add crossOrigin prop to Links component (#14687)

Patch Changes

  • Fix double slash normalization for useNavigate colon urls (#14718)
  • Update failed origin checks to return a 400 status instead of a 500 (#14737)
  • Bugfix #14666: Inline criticalCss is missing nonce (#14691)
  • Loosen allowedActionOrigins glob check so ** matches all domains (#14722)

7.12.0

Minor Changes

  • Add additional layer of CSRF protection by rejecting submissions to UI routes from external origins. If you need to permit access to specific external origins, you can specify them in the react-router.config.ts config allowedActionOrigins field. (#14708)

Patch Changes

  • Fix generatePath when used with suffixed params (i.e., "/books/:id.json") (#14269)

  • Export UNSAFE_createMemoryHistory and UNSAFE_createHashHistory alongside UNSAFE_createBrowserHistory for consistency. These are not intended to be used for new apps but intended to help apps usiong unstable_HistoryRouter migrate from v6->v7 so they can adopt the newer APIs. (#14663)

  • Escape HTML in scroll restoration keys (#14705)

  • Validate redirect locations (#14706)

  • [UNSTABLE] Pass <Scripts nonce> value through to the underlying importmap script tag when using future.unstable_subResourceIntegrity (#14675)

  • [UNSTABLE] Add a new future.unstable_trailingSlashAwareDataRequests flag to provide consistent behavior of request.pathname inside middleware, loader, and action functions on document and data requests when a trailing slash is present in the browser URL. (#14644)

    Currently, your HTTP and request pathnames would be as follows for /a/b/c and /a/b/c/

    URL /a/b/c HTTP pathname request pathname`
    Document /a/b/c /a/b/c
    Data /a/b/c.data /a/b/c
    URL /a/b/c/ HTTP pathname request pathname`
    Document /a/b/c/ /a/b/c/
    Data /a/b/c.data /a/b/c ⚠️

    With this flag enabled, these pathnames will be made consistent though a new _.data format for client-side .data requests:

    URL /a/b/c HTTP pathname request pathname`
    Document /a/b/c /a/b/c

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for react-router since your current version.


Updates ts-jest from 29.4.1 to 29.4.6

Release notes

Sourced from ts-jest's releases.

v29.4.6

Please refer to CHANGELOG.md for details.

v29.4.5

Please refer to CHANGELOG.md for details.

v29.4.4

Please refer to CHANGELOG.md for details.

v29.4.3

Please refer to CHANGELOG.md for details.

v29.4.2

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.4.6 (2025-12-01)

Bug Fixes

  • log hybrid module as warning instead of failing tests (#5144) (528d37c), closes #5130

29.4.5 (2025-10-10)

Bug Fixes

  • allow filtering modern module warning message with diagnostic code (c290d4d), , closes #5013

29.4.4 (2025-09-19)

Bug Fixes

29.4.3 (2025-09-17)

Bug Fixes

  • introduce transpilation option to replace isolatedModules option (#5044) (5868761)

29.4.2 (2025-09-15)

Bug Fixes

Commits
  • 202bde5 chore(release): 29.4.6 (#5146)
  • 528d37c fix: log hybrid module as warning instead of failing tests (#5144)
  • 141e5af build(deps): update github/codeql-action digest to 497990d
  • d281cce build(deps): update google/osv-scanner-action action to v2.3.0

…13 updates

Bumps the non-major-dependencies group with 13 updates in the /frontend directory:

| Package | From | To |
| --- | --- | --- |
| [@mtes-mct/monitor-ui](https://github.com/MTES-MCT/monitor-ui) | `24.39.0` | `24.42.0` |
| [@react-pdf/renderer](https://github.com/diegomura/react-pdf/tree/HEAD/packages/renderer) | `4.3.0` | `4.3.2` |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.8.2` | `2.11.2` |
| [@tanstack/react-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/react-virtual) | `3.13.12` | `3.13.18` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.18` | `1.11.19` |
| [formik](https://github.com/jaredpalmer/formik) | `2.4.6` | `2.4.9` |
| [lodash](https://github.com/lodash/lodash) | `4.17.21` | `4.17.23` |
| [ol](https://github.com/openlayers/openlayers) | `10.6.1` | `10.7.0` |
| [ramda](https://github.com/ramda/ramda) | `0.31.3` | `0.32.0` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.8.2` | `7.13.0` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.1` | `29.4.6` |
| [use-debounce](https://github.com/xnimorz/use-debounce) | `10.0.6` | `10.1.0` |
| [yup](https://github.com/jquense/yup) | `1.7.0` | `1.7.1` |



Updates `@mtes-mct/monitor-ui` from 24.39.0 to 24.42.0
- [Release notes](https://github.com/MTES-MCT/monitor-ui/releases)
- [Changelog](https://github.com/MTES-MCT/monitor-ui/blob/main/CHANGELOG.md)
- [Commits](MTES-MCT/monitor-ui@v24.39.0...v24.42.0)

Updates `@react-pdf/renderer` from 4.3.0 to 4.3.2
- [Release notes](https://github.com/diegomura/react-pdf/releases)
- [Changelog](https://github.com/diegomura/react-pdf/blob/master/packages/renderer/CHANGELOG.md)
- [Commits](https://github.com/diegomura/react-pdf/commits/@react-pdf/[email protected]/packages/renderer)

Updates `@reduxjs/toolkit` from 2.8.2 to 2.11.2
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v2.8.2...v2.11.2)

Updates `@tanstack/react-virtual` from 3.13.12 to 3.13.18
- [Release notes](https://github.com/TanStack/virtual/releases)
- [Changelog](https://github.com/TanStack/virtual/blob/main/packages/react-virtual/CHANGELOG.md)
- [Commits](https://github.com/TanStack/virtual/commits/@tanstack/[email protected]/packages/react-virtual)

Updates `dayjs` from 1.11.18 to 1.11.19
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/dev/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.18...v1.11.19)

Updates `formik` from 2.4.6 to 2.4.9
- [Release notes](https://github.com/jaredpalmer/formik/releases)
- [Commits](https://github.com/jaredpalmer/formik/compare/[email protected]@2.4.9)

Updates `lodash` from 4.17.21 to 4.17.23
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

Updates `ol` from 10.6.1 to 10.7.0
- [Release notes](https://github.com/openlayers/openlayers/releases)
- [Commits](openlayers/openlayers@v10.6.1...v10.7.0)

Updates `ramda` from 0.31.3 to 0.32.0
- [Release notes](https://github.com/ramda/ramda/releases)
- [Changelog](https://github.com/ramda/ramda/blob/master/CHANGELOG.md)
- [Commits](ramda/ramda@v0.31.3...v0.32.0)

Updates `react-router` from 7.8.2 to 7.13.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router)

Updates `ts-jest` from 29.4.1 to 29.4.6
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.4.1...v29.4.6)

Updates `use-debounce` from 10.0.6 to 10.1.0
- [Release notes](https://github.com/xnimorz/use-debounce/releases)
- [Changelog](https://github.com/xnimorz/use-debounce/blob/master/CHANGELOG.md)
- [Commits](https://github.com/xnimorz/use-debounce/commits)

Updates `yup` from 1.7.0 to 1.7.1
- [Release notes](https://github.com/jquense/yup/releases)
- [Changelog](https://github.com/jquense/yup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jquense/yup/commits)

---
updated-dependencies:
- dependency-name: "@mtes-mct/monitor-ui"
  dependency-version: 24.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: "@react-pdf/renderer"
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: "@reduxjs/toolkit"
  dependency-version: 2.11.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: "@tanstack/react-virtual"
  dependency-version: 3.13.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: dayjs
  dependency-version: 1.11.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: formik
  dependency-version: 2.4.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: ol
  dependency-version: 10.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: ramda
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: react-router
  dependency-version: 7.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: ts-jest
  dependency-version: 29.4.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: use-debounce
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: yup
  dependency-version: 1.7.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@tristanrobert
Copy link
Contributor

Snyk checks have passed. No issues have been found so far.

Status Scanner Critical High Medium Low Total (0)
Open Source Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@sonarqubecloud
Copy link

sonarqubecloud bot commented Feb 1, 2026

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants