Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Tech] Bump the non-major-dependencies group in /frontend with 11 updates #3993

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2025

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

Package From To
@dnd-kit/core 6.2.0 6.3.1
@mtes-mct/monitor-ui 24.10.1 24.11.3
@reduxjs/toolkit 2.4.0 2.5.0
@sentry/react 8.41.0 8.47.0
@sentry/vite-plugin 2.22.6 2.22.7
@tanstack/react-table 8.20.5 8.20.6
ky 1.7.2 1.7.4
ol-mapbox-style 12.3.5 12.4.0
react-redux 9.1.2 9.2.0
react-select 5.8.3 5.9.0
yup 1.4.0 1.6.1

Updates @dnd-kit/core from 6.2.0 to 6.3.1

Release notes

Sourced from @​dnd-kit/core's releases.

@​dnd-kit/core@​6.3.1

Patch Changes

  • #1555 62f632a Thanks @​clauderic! - Added Tab to the list of default key codes that end a drag and drop operation. Can be customized by passing in a custom list of keyCodes to the KeyboardSensor options.

@​dnd-kit/core@​6.3.0

Minor Changes

  • #1539 0c6a28d Thanks @​irobot! - Make it possible to add visual cues when using activation constraints.

    Context

    Activation constraints are used when we want to prevent accidental dragging or when pointer press can mean more than "start dragging".

    A typical use case is a button that needs to respond to both "click" and "drag" gestures. Clicks can be distinguished from drags based on how long the pointer was held pressed.

    The problem

    A control that responds differently to a pointer press based on duration or distance can be confusing to use -- the user has to guess how long to keep holding or how far to keep dragging until their intent is acknowledged.

    Implementing such cues is currently possible by attaching extra event listeners so that we know when a drag is pending. Furthermore, the listener needs to have access to the same constraints that were applied to the sensor initiating the drag. This can be made to work in simple cases, but it becomes error-prone and difficult to maintain in complex scenarios.

    Solution

    This changeset proposes the addition of two new events: onDragPending and onDragAbort.

    onDragPending

    A drag is considered to be pending when the pointer has been pressed and there are activation constraints that need to be satisfied before a drag can start.

    This event is initially fired on pointer press. At this time offset (see below) will be undefined.

    It will subsequently be fired every time the pointer is moved. This is to enable visual cues for distance-based activation.

    The event's payload contains all the information necessary for providing visual feedback:

    export interface DragPendingEvent {

... (truncated)

Changelog

Sourced from @​dnd-kit/core's changelog.

6.3.1

Patch Changes

  • #1555 62f632a Thanks @​clauderic! - Added Tab to the list of default key codes that end a drag and drop operation. Can be customized by passing in a custom list of keyCodes to the KeyboardSensor options.

6.3.0

Minor Changes

  • #1539 0c6a28d Thanks @​irobot! - Make it possible to add visual cues when using activation constraints.

    Context

    Activation constraints are used when we want to prevent accidental dragging or when pointer press can mean more than "start dragging".

    A typical use case is a button that needs to respond to both "click" and "drag" gestures. Clicks can be distinguished from drags based on how long the pointer was held pressed.

    The problem

    A control that responds differently to a pointer press based on duration or distance can be confusing to use -- the user has to guess how long to keep holding or how far to keep dragging until their intent is acknowledged.

    Implementing such cues is currently possible by attaching extra event listeners so that we know when a drag is pending. Furthermore, the listener needs to have access to the same constraints that were applied to the sensor initiating the drag. This can be made to work in simple cases, but it becomes error-prone and difficult to maintain in complex scenarios.

    Solution

    This changeset proposes the addition of two new events: onDragPending and onDragAbort.

    onDragPending

    A drag is considered to be pending when the pointer has been pressed and there are activation constraints that need to be satisfied before a drag can start.

    This event is initially fired on pointer press. At this time offset (see below) will be undefined.

    It will subsequently be fired every time the pointer is moved. This is to enable visual cues for distance-based activation.

    The event's payload contains all the information necessary for providing visual feedback:

... (truncated)

Commits
  • 97c1609 Version Packages
  • 62f632a End keyboard drag operation when pressing tab
  • 060c982 Version Packages
  • 9175566 Merge branch 'master' into feature/constraint-cues
  • 0c6a28d Enable visual cues when using activation constraints.
  • See full diff in compare view

Updates @mtes-mct/monitor-ui from 24.10.1 to 24.11.3

Release notes

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

v24.11.3

24.11.3 (2024-12-20)

Bug Fixes

  • tables: fix scroll in virtualize tables (1488e3d)

v24.11.2

24.11.2 (2024-12-17)

Bug Fixes

  • elements: fix prefixed props (76729c6)

Buid System & Dependencies

  • dev-deps: bump the non-major-dev-dependencies group across 1 directory with 31 updates (1731b69)

v24.11.1

24.11.1 (2024-12-17)

Bug Fixes

  • types: create generic type for CheckPicker and MultiSelect (b09f859)
  • types: fix typing (75c5e6d)

Buid System & Dependencies

  • deps: bump @​tanstack/react-table (da380bc)
  • dev-deps: bump nanoid (32f4d5e)
  • dev-deps: bump styled-components from 5.3.10 to 6.1.13 (c158abf)
  • dev-deps: bump the all-non-major-dependencies group (6040bfb)

v24.11.0

24.11.0 (2024-12-10)

Features

Buid System & Dependencies

  • deps: bump nanoid from 3.3.7 to 3.3.8 in the npm_and_yarn group (e20cf81)

... (truncated)

Changelog

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

24.11.3 (2024-12-20)

Bug Fixes

  • tables: fix scroll in virtualize tables (1488e3d)

24.11.2 (2024-12-17)

Bug Fixes

  • elements: fix prefixed props (76729c6)

Buid System & Dependencies

  • dev-deps: bump the non-major-dev-dependencies group across 1 directory with 31 updates (1731b69)

24.11.1 (2024-12-17)

Bug Fixes

  • types: create generic type for CheckPicker and MultiSelect (b09f859)
  • types: fix typing (75c5e6d)

Buid System & Dependencies

  • deps: bump @​tanstack/react-table (da380bc)
  • dev-deps: bump nanoid (32f4d5e)
  • dev-deps: bump styled-components from 5.3.10 to 6.1.13 (c158abf)
  • dev-deps: bump the all-non-major-dependencies group (6040bfb)

24.11.0 (2024-12-10)

Features

Buid System & Dependencies

  • deps: bump nanoid from 3.3.7 to 3.3.8 in the npm_and_yarn group (e20cf81)
  • dev-deps: bump eslint-config-airbnb-typescript (03031be)
  • dev-deps: bump semantic-release from 23.0.8 to 24.1.2 (af79b95)
  • dev-deps: bump the all-non-major-dependencies group across 1 directory with 8 updates (68eb313)
  • dev-deps: bump vite from 5.4.11 to 6.0.3 in /e2e/release/sample (5f5ccda)

... (truncated)

Commits
  • 1488e3d fix(tables): fix scroll in virtualize tables
  • 73499c3 ci(release): 24.11.2
  • 1731b69 build(dev-deps): bump the non-major-dev-dependencies group across 1 directory...
  • 76729c6 fix(elements): fix prefixed props
  • 1266035 ci(release): 24.11.1
  • da380bc build(deps): bump @​tanstack/react-table
  • b09f859 fix(types): create generic type for CheckPicker and MultiSelect
  • 75c5e6d fix(types): fix typing
  • c158abf build(dev-deps): bump styled-components from 5.3.10 to 6.1.13
  • 32f4d5e build(dev-deps): bump nanoid
  • Additional commits viewable in compare view

Updates @reduxjs/toolkit from 2.4.0 to 2.5.0

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.5.0

This feature release updates the React peer dependency to work with React 19, and fixes an additional skip token issue.

Changelog

React 19 Compat

React 19 was just released! We've updated our peer dep to accept React 19, and updated our runtime and type tests to check against both React 18 and 19.

Also see React-Redux v9.2.0 for the same peer dep update.

Other Fixes

We previously fixed an issue with the RTKQ core where serializeQueryArgs callbacks could be called with skipToken, potentially leading to errors. We've fixed an additional location in the useQuery hooks where that could happen as well.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v2.4.0...v2.5.0

Commits

Updates @sentry/react from 8.41.0 to 8.47.0

Release notes

Sourced from @​sentry/react's releases.

8.47.0

  • feat(v8/core): Add updateSpanName helper function (#14736)
  • feat(v8/node): Do not overwrite prisma db.system in newer Prisma versions (#14772)
  • feat(v8/node/deps): Bump @​prisma/instrumentation from 5.19.1 to 5.22.0 (#14755)
  • feat(v8/replay): Mask srcdoc iframe contents per default (#14779)
  • ref(v8/nextjs): Fix typo in source maps deletion warning (#14776)

Work in this release was contributed by @​aloisklink and @​benjick. Thank you for your contributions!

Bundle size 📦

Path Size
@​sentry/browser 23.29 KB
@​sentry/browser - with treeshaking flags 21.96 KB
@​sentry/browser (incl. Tracing) 35.81 KB
@​sentry/browser (incl. Tracing, Replay) 73.06 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 63.45 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.37 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.85 KB
@​sentry/browser (incl. Feedback) 40.04 KB
@​sentry/browser (incl. sendFeedback) 27.89 KB
@​sentry/browser (incl. FeedbackAsync) 32.68 KB
@​sentry/react 25.96 KB
@​sentry/react (incl. Tracing) 38.64 KB
@​sentry/vue 27.52 KB
@​sentry/vue (incl. Tracing) 37.67 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.47 KB
CDN Bundle (incl. Tracing) 37.51 KB
CDN Bundle (incl. Tracing, Replay) 72.71 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.1 KB
CDN Bundle - uncompressed 71.85 KB
CDN Bundle (incl. Tracing) - uncompressed 111.23 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.3 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.52 KB
@​sentry/nextjs (client) 38.9 KB
@​sentry/sveltekit (client) 36.32 KB
@​sentry/node 162.7 KB
@​sentry/node - without tracing 98.87 KB
@​sentry/aws-serverless 126.53 KB

8.46.0

  • feat: Allow capture of more than 1 ANR event [v8] (#14713)
  • feat(node): Detect Railway release name [v8] (#14714)
  • fix: Normalise ANR debug image file paths if appRoot was supplied [v8] (#14709)
  • fix(nuxt): Remove build config from tsconfig (#14737)

Work in this release was contributed by @​conor-ob. Thank you for your contribution!

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

8.47.0

  • feat(v8/core): Add updateSpanName helper function (#14736)
  • feat(v8/node): Do not overwrite prisma db.system in newer Prisma versions (#14772)
  • feat(v8/node/deps): Bump @​prisma/instrumentation from 5.19.1 to 5.22.0 (#14755)
  • feat(v8/replay): Mask srcdoc iframe contents per default (#14779)
  • ref(v8/nextjs): Fix typo in source maps deletion warning (#14776)

Work in this release was contributed by @​aloisklink and @​benjick. Thank you for your contributions!

8.46.0

  • feat: Allow capture of more than 1 ANR event [v8] (#14713)
  • feat(node): Detect Railway release name [v8] (#14714)
  • fix: Normalise ANR debug image file paths if appRoot was supplied [v8] (#14709)
  • fix(nuxt): Remove build config from tsconfig (#14737)

Work in this release was contributed by @​conor-ob. Thank you for your contribution!

8.45.1

  • fix(feedback): Return when the sendFeedback promise resolves (#14683)

Work in this release was contributed by @​antonis. Thank you for your contribution!

8.45.0

  • feat(core): Add handled option to captureConsoleIntegration (#14664)
  • feat(browser): Attach virtual stack traces to HttpClient events (#14515)
  • feat(replay): Upgrade rrweb packages to 2.31.0 (#14689)
  • fix(aws-serverless): Remove v8 layer as it overwrites the current layer for docs (#14679)
  • fix(browser): Mark stack trace from captureMessage with attachStacktrace: true as synthetic (#14668)
  • fix(core): Mark stack trace from captureMessage with attatchStackTrace: true as synthetic (#14670)
  • fix(core): Set level in server runtime captureException (#10587)
  • fix(profiling-node): Guard invocation of native profiling methods (#14676)
  • fix(nuxt): Inline nitro-utils function (#14680)
  • fix(profiling-node): Ensure profileId is added to transaction event (#14681)
  • fix(react): Add React Router Descendant Routes support (#14304)
  • fix: Disable ANR and Local Variables if debugger is enabled via CLI args (#14643)

Work in this release was contributed by @​anonrig and @​Zih0. Thank you for your contributions!

8.44.0

Deprecations

  • feat: Deprecate autoSessionTracking (#14640)

    Deprecates autoSessionTracking. To enable session tracking, it is recommended to unset autoSessionTracking and ensure that either, in browser environments

... (truncated)

Commits
  • eac1a88 release: 8.47.0
  • 8a7b29e meta: Update changelog for 8.47.0 (#14777)
  • 8107512 feat(v8/replay): Mask srcdoc iframe contents per default (#14779)
  • b1d393e ref(v8/nextjs): Fix typo in source maps deletion warning (#14776)
  • 37fbd75 feat(v8/node): Do not overwrite prisma db.system in newer Prisma versions (...
  • 8e0db86 chore(docs): Add docs for how to publish a release for previous majors (#14740)
  • 9c53d48 feat(v8/node/deps): Bump @​prisma/instrumentation from 5.19.1 to 5.22.0 (#14755)
  • 3a7743c feat(core): Add updateSpanName helper function [v8] (#14736)
  • e80eefe Merge branch 'release/8.46.0' into v8
  • 5387fde release: 8.46.0
  • Additional commits viewable in compare view

Updates @sentry/vite-plugin from 2.22.6 to 2.22.7

Release notes

Sourced from @​sentry/vite-plugin's releases.

2.22.7

  • deps: Bump @sentry/cli to 2.39.1 and require specific version (#632)
  • feat(telemetry): Record if plugin is run in CI (#627)
Changelog

Sourced from @​sentry/vite-plugin's changelog.

2.22.7

  • deps: Bump @sentry/cli to 2.39.1 and require specific version (#632)
  • feat(telemetry): Record if plugin is run in CI (#627)
Commits

Updates @tanstack/react-table from 8.20.5 to 8.20.6

Release notes

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

v8.20.6

Version 8.20.6 - 12/13/24, 2:34 PM

Changes

Fix

  • JSX namespace from React (#5830) (cbcea6a) by Bill Collins

Chore

  • update @​tanstack/config to v0.13.0 (#5731) (2db4061) by Lachlan Collins

Docs

  • Updated some incomplete docs (#5741) (6b4d616) by M Hamid
  • Fix label typo in config.json (#5712) (7fe650d) by Petter Juterud Barhaugen

Packages

  • @​tanstack/react-table@​8.20.6
  • @​tanstack/react-table-devtools@​8.20.6
Commits

Updates ky from 1.7.2 to 1.7.4

Release notes

Sourced from ky's releases.

v1.7.4

  • Fix handling of a signal that is already aborted before the request begins (#663) 6d06338

sindresorhus/ky@v1.7.3...v1.7.4

v1.7.3

  • Fix memory leak from cloned responses (#661) 30e7afd

sindresorhus/ky@v1.7.2...v1.7.3

Commits

Updates ol-mapbox-style from 12.3.5 to 12.4.0

Release notes

Sourced from ol-mapbox-style's releases.

v12.4.0

Summary

  • More precise angle computation for line labels
  • Add support for "text-keep-upright": false
  • Fix text-field value issues
  • Update examples and add references to MapLibre
  • Fix issue with missing expandUrl from OpenLayers

What's Changed

New Contributors

Full Changelog: openlayers/ol-mapbox-style@v12.3.5...v12.4.0

Changelog

Sourced from ol-mapbox-style's changelog.

12.4.0

  • More precise angle computation for line labels
  • Add support for "text-keep-upright": false
  • Fix text-field value issues
  • Update examples and add references to MapLibre
  • Fix issue with missing expandUrl from OpenLayers
Commits
  • 48f76c6 Add dist for v12.4.0
  • b364feb Changes for v12.4.0
  • 87cff4a Merge pull request #1223 from openlayers/dependabot/npm_and_yarn/babel-loader...
  • 4df0201 Bump babel-loader from 9.1.3 to 9.2.1
  • 3d0c0bd Merge pull request #1228 from openlayers/expand-url
  • a82aba8 Run Puppeteer without sandbox in CI
  • e9608f2 Get rid of expandUrl dependency
  • d26e41d Merge pull request #1219 from openlayers/dependabot/npm_and_yarn/typescript-5...
  • 9c599b9 Update lockfile
  • 0b16c1a Bump typescript from 5.4.5 to 5.7.2
  • Additional commits viewable in compare view

Updates react-redux from 9.1.2 to 9.2.0

Release notes

Sourced from react-redux's releases.

v9.2.0

This feature release updates the React peer dependency to work with React 19, and improves treeshakeability of our build artifacts.

Changelog

React 19 Compat

React 19 was just released! We've updated our peer dep to accept React 19, and updated our runtime and type tests to check against both React 18 and 19.

Also see Redux Toolkit v2.5.0 for the same peer dep update.

Treeshaking

We've done some nitty-gritty optimization work to ensure bundlers correctly treeshake unused parts of the bundle.

What's Changed

Full Changelog: reduxjs/react-redux@v9.1.2...v9.2.0

Commits
  • 7e2fdd4 Release 9.2.0
  • 8c57382 Merge pull request #2217 from reduxjs/feature/react-19-devdep-cleanup
  • d23509b Exclude stray dist folders and website from tsconfig
  • b275a32 Eliminate other stray React import
  • 3ba9838 Drop unused Babel devdeps
  • 1a81c41 Merge pull request #2216 from reduxjs/migrate-to-react-19
  • c58e397 Migrate to React 19
  • e08518a Fix act related issues in test/hooks/useSelector.spec.tsx
  • 1cd1385 Update hoist-non-react-statics implementation
  • a1fc886 Fix type of innerMapStateToProps in Provider.spec.tsx
  • Additional commits viewable in compare view

Updates react-select from 5.8.3 to 5.9.0

Release notes

Sourced from react-select's releases.

[email protected]

Minor Changes

Commits

Updates yup from 1.4.0 to 1.6.1

Changelog

Sourced from yup's changelog.

1.6.1 (2024-12-17)

Bug Fixes

  • lazy validation errors thrown in builders should resolve async like other validations (c7d7f97)

1.6.0 (2024-12-16)

Features

1.5.0 (2024-12-03)

Bug Fixes

  • readme: some typos and update CustomizingErrors doc (#2163) (5c77e0d)

Features

  • Add exact and stripUnknown method to object() (adcdd8d)
Commits
  • d00abc3 Publish v1.6.1
  • c7d7f97 fix: lazy validation errors thrown in builders should resolve async like othe...
  • f27fa44 Publish v1.6.0
  • 0d7c327 build: modernize stuff
  • 2b0f126 feat: expose LazySchema
  • c26f9af Update README.md
  • 8ac18b6 Publish v1.5.0
  • adcdd8d feat: Add exact and stripUnknown method to object()
  • 87be159 Fix ValidationError.formatError() clobbering path param (#2250)
  • 5a22c16 let/const consistency in README: let preference (#2227)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file tech. enhancement technical ehancement labels Jan 1, 2025
Bumps the non-major-dependencies group in /frontend with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@dnd-kit/core](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/core) | `6.2.0` | `6.3.1` |
| [@mtes-mct/monitor-ui](https://github.com/MTES-MCT/monitor-ui) | `24.10.1` | `24.11.3` |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.4.0` | `2.5.0` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `8.41.0` | `8.47.0` |
| [@sentry/vite-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins) | `2.22.6` | `2.22.7` |
| [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) | `8.20.5` | `8.20.6` |
| [ky](https://github.com/sindresorhus/ky) | `1.7.2` | `1.7.4` |
| [ol-mapbox-style](https://github.com/openlayers/ol-mapbox-style) | `12.3.5` | `12.4.0` |
| [react-redux](https://github.com/reduxjs/react-redux) | `9.1.2` | `9.2.0` |
| [react-select](https://github.com/JedWatson/react-select) | `5.8.3` | `5.9.0` |
| [yup](https://github.com/jquense/yup) | `1.4.0` | `1.6.1` |


Updates `@dnd-kit/core` from 6.2.0 to 6.3.1
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Changelog](https://github.com/clauderic/dnd-kit/blob/master/packages/core/CHANGELOG.md)
- [Commits](https://github.com/clauderic/dnd-kit/commits/@dnd-kit/[email protected]/packages/core)

Updates `@mtes-mct/monitor-ui` from 24.10.1 to 24.11.3
- [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.10.1...v24.11.3)

Updates `@reduxjs/toolkit` from 2.4.0 to 2.5.0
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v2.4.0...v2.5.0)

Updates `@sentry/react` from 8.41.0 to 8.47.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/8.47.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.41.0...8.47.0)

Updates `@sentry/vite-plugin` from 2.22.6 to 2.22.7
- [Release notes](https://github.com/getsentry/sentry-javascript-bundler-plugins/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript-bundler-plugins@2.22.6...2.22.7)

Updates `@tanstack/react-table` from 8.20.5 to 8.20.6
- [Release notes](https://github.com/TanStack/table/releases)
- [Commits](https://github.com/TanStack/table/commits/v8.20.6/packages/react-table)

Updates `ky` from 1.7.2 to 1.7.4
- [Release notes](https://github.com/sindresorhus/ky/releases)
- [Commits](sindresorhus/ky@v1.7.2...v1.7.4)

Updates `ol-mapbox-style` from 12.3.5 to 12.4.0
- [Release notes](https://github.com/openlayers/ol-mapbox-style/releases)
- [Changelog](https://github.com/openlayers/ol-mapbox-style/blob/main/CHANGELOG.md)
- [Commits](openlayers/ol-mapbox-style@v12.3.5...v12.4.0)

Updates `react-redux` from 9.1.2 to 9.2.0
- [Release notes](https://github.com/reduxjs/react-redux/releases)
- [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/react-redux@v9.1.2...v9.2.0)

Updates `react-select` from 5.8.3 to 5.9.0
- [Release notes](https://github.com/JedWatson/react-select/releases)
- [Changelog](https://github.com/JedWatson/react-select/blob/master/docs/CHANGELOG.md)
- [Commits](https://github.com/JedWatson/react-select/compare/[email protected]@5.9.0)

Updates `yup` from 1.4.0 to 1.6.1
- [Release notes](https://github.com/jquense/yup/releases)
- [Changelog](https://github.com/jquense/yup/blob/master/CHANGELOG.md)
- [Commits](jquense/yup@v1.4.0...v1.6.1)

---
updated-dependencies:
- dependency-name: "@dnd-kit/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: "@mtes-mct/monitor-ui"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: "@reduxjs/toolkit"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: "@sentry/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: "@sentry/vite-plugin"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: "@tanstack/react-table"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: ky
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: ol-mapbox-style
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: react-redux
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: react-select
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: yup
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@louptheron louptheron force-pushed the dependabot/npm_and_yarn/frontend/non-major-dependencies-0bf848038b branch from 93a043c to 30cb062 Compare January 7, 2025 15:33
Copy link

sonarqubecloud bot commented Jan 7, 2025

@louptheron louptheron merged commit 9d7a5df into master Jan 7, 2025
36 checks passed
@louptheron louptheron deleted the dependabot/npm_and_yarn/frontend/non-major-dependencies-0bf848038b branch January 7, 2025 16:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file tech. enhancement technical ehancement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant