Skip to content

Bump the other-updates group across 1 directory with 53 updates#282

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/other-updates-6933621d22
Open

Bump the other-updates group across 1 directory with 53 updates#282
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/other-updates-6933621d22

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jun 6, 2026

Bumps the other-updates group with 53 updates in the / directory:

Package From To
@apidevtools/swagger-parser 10.1.1 12.1.0
@dnd-kit/core 2.1.2 6.3.1
@dnd-kit/sortable 2.0.1 10.0.0
@dnd-kit/utilities 2.0.0 3.2.2
@fortawesome/fontawesome-svg-core 6.7.2 7.2.0
@fortawesome/free-solid-svg-icons 6.7.2 7.2.0
@mui/icons-material 7.3.7 9.0.1
@mui/material 7.3.7 9.0.1
@mui/system 7.3.7 9.0.1
@mui/x-date-pickers 8.27.0 9.4.0
@testing-library/jest-dom 5.17.0 6.9.1
bcryptjs 2.4.3 3.0.3
change-case 4.1.2 5.4.4
cidr-regex 3.1.1 6.0.0
concurrently 7.6.0 10.0.3
connect-mongodb-session 3.1.1 5.0.0
delay 5.0.0 7.0.0
dockerode 4.0.9 5.0.0
dotenv 10.0.0 17.4.2
ejs 3.1.10 6.0.1
express 4.22.1 5.2.1
express-rate-limit 7.5.1 8.5.2
fs-extra 10.1.0 11.3.5
helmet 5.1.1 8.2.0
html-react-parser 1.4.14 6.1.3
inquirer 9.3.8 14.0.2
mongodb 4.17.2 7.2.0
nanoid 3.3.11 5.1.11
openapi-types 10.0.0 12.1.3
react 18.3.1 19.2.7
react-cookie 4.1.1 8.1.2
react-cool-dimensions 2.0.7 3.0.1
react-dom 18.3.1 19.2.7
react-hotkeys-hook 3.4.7 5.3.2
react-leaflet 4.2.1 5.0.0
react-player 2.16.1 3.4.0
react-router-dom 6.22.3 7.17.0
swagger-ui-express 4.6.3 5.0.1
use-debounce 6.0.1 10.1.1
use-long-press 2.0.4 3.3.0
uuid 9.0.1 14.0.0
video.js 7.21.7 8.23.7
web-vitals 1.1.2 5.3.0
winston-daily-rotate-file 4.7.1 5.0.0
winston-mongodb 5.1.1 7.0.1
@vitejs/plugin-react 5.1.3 6.0.2
jest-extended 6.0.0 7.0.0
vite 7.3.1 8.0.16
vite-plugin-svgr 4.5.0 5.2.0
@storybook/addon-links 8.6.15 10.4.2
@storybook/react 8.6.18 10.4.2
@storybook/react-vite 8.6.15 10.4.2
storybook 8.6.15 10.4.2

Updates @apidevtools/swagger-parser from 10.1.1 to 12.1.0

Release notes

Sourced from @​apidevtools/swagger-parser's releases.

v12.1.0

12.1.0 (2025-10-14)

Features

v12.0.0

12.0.0 (2025-06-16)

  • Bump json schema ref parser version to fix security vulnerability allowing internal URL resolution in the http parser. (80ebe6f)

BREAKING CHANGES

  • Remove ability to request internal urls in the default http resolver - this is now behind a flag in the http resolver, safeUrlResolver

v11.0.1

11.0.1 (2025-06-06)

Bug Fixes

  • location: bump json schema parser version (a4559a2)

v11.0.0

11.0.0 (2025-06-03)

  • Modernize dependencies, fix CI, upgrade dependencies, introduce new linter and formatter (ed4ea05)
  • Upgrade dependencies, modernize some code (66d2818)

Bug Fixes

  • move ajv-draft-04 into usage location (#268) (ff79822)
  • types: add types fix for options (0c9a034)
  • types: types fix (9994339)

BREAKING CHANGES

  • Pretty large refactor of dev experience. Removes ono dependency to fix certain CJS builds
  • move to latest version of parser
Commits
  • 8dcd391 feat: Add support for version 3.1.2 (#279)
  • 80ebe6f Bump json schema ref parser version to fix security vulnerability allowing in...
  • a4559a2 fix(location): bump json schema parser version
  • e2251e3 version and contributors
  • 9994339 fix(types): types fix
  • 4b59f47 eslint rule for line endings
  • 9f1b74b chore(lints): double quotes issues
  • 8443f69 eslint ignore
  • 01db1d0 lints
  • 57f5a77 improve types
  • Additional commits viewable in compare view

Updates @dnd-kit/core from 2.1.2 to 6.3.1

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
  • 2eedcc3 Version Packages
  • 835ae76 Lint
  • 3c4f627 Merge pull request #1543 from clauderic/patch-1
  • baad391 Merge pull request #1542 from clauderic/fix-zero-id
  • b7f46bb Merge pull request #1541 from clauderic/handle-cancel-events
  • 2eb636f Merge pull request #1435 from knaveenkumar3576/user/knaveenkumar3576/improved...
  • Additional commits viewable in compare view

Updates @dnd-kit/sortable from 2.0.1 to 10.0.0

Changelog

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

10.0.0

Patch Changes

9.0.0

Patch Changes

8.0.0

Patch Changes

7.0.2

Patch Changes

7.0.1

Patch Changes

  • #792 b6970e7 Thanks @​clauderic! - The hasSortableData type-guard that is exported by @​dnd-kit/sortable has been updated to also accept the Active and Over interfaces so it can be used in events such as onDragStart, onDragOver, and onDragEnd.

  • Updated dependencies [eaa6e12]:

    • @​dnd-kit/core@​6.0.4

7.0.0

Major Changes

  • #755 33e6dd2 Thanks @​clauderic! - The UniqueIdentifier type has been updated to now accept either string or number identifiers. As a result, the id property of useDraggable, useDroppable and useSortable and the items prop of <SortableContext> now all accept either string or number identifiers.

    Migration steps

... (truncated)

Commits

Updates @dnd-kit/utilities from 2.0.0 to 3.2.2

Changelog

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

3.2.2

Patch Changes

3.2.1

Patch Changes

3.2.0

Minor Changes

3.1.0

Minor Changes

  • #518 6310227 Thanks @​clauderic! - Major internal refactor of measuring and collision detection.

    Summary of changes

    Previously, all collision detection algorithms were relative to the top and left points of the document. While this approach worked in most situations, it broke down in a number of different use-cases, such as fixed position droppable containers and trying to drag between containers that had different scroll positions.

    This new approach changes the frame of comparison to be relative to the viewport. This is a major breaking change, and will need to be released under a new major version bump.

    Breaking changes:

    • By default, @dnd-kit now ignores only the transforms applied to the draggable / droppable node itself, but considers all the transforms applied to its ancestors. This should provide the right balance of flexibility for most consumers.
      • Transforms applied to the droppable and draggable nodes are ignored by default, because the recommended approach for moving items on the screen is to use the transform property, which can interfere with the calculation of collisions.
      • Consumers can choose an alternate approach that does consider transforms for specific use-cases if needed by configuring the measuring prop of . Refer to the example.
    • Reduced the number of concepts related to measuring from ViewRect, LayoutRect to just a single concept of ClientRect.
      • The ClientRect interface no longer holds the offsetTop and offsetLeft properties. For most use-cases, you can replace offsetTop with top and offsetLeft with left.
      • Replaced the following exports from the @dnd-kit/core package with getClientRect:
        • getBoundingClientRect
        • getViewRect
        • getLayoutRect
        • getViewportLayoutRect
    • Removed translatedRect from the SensorContext interface. Replace usage with collisionRect.
    • Removed activeNodeClientRect on the DndContext interface. Replace with activeNodeRect.
  • 528c67e Thanks @​clauderic! - Introduced the useLatestValue hook, which returns a ref that holds the latest value of a given argument. Optionally, the second argument can be used to customize the dependencies passed to the effect.

Patch Changes

... (truncated)

Commits

Updates @fortawesome/fontawesome-svg-core from 6.7.2 to 7.2.0

Release notes

Sourced from @​fortawesome/fontawesome-svg-core's releases.

Release 7.2.0

Change log available at https://fontawesome.com/changelog

Release 7.1.0

Change log available at https://fontawesome.com/docs/changelog/

Release 7.0.1

Change log available at https://fontawesome.com/docs/changelog/

Release 7.0.0

Change log available at https://fontawesome.com/docs/changelog/

Commits
  • 337dd20 Release 7.2.0 (#21465)
  • 16ac6af Simplifying icon request titles (#21360)
  • ce49420 Simplifying icon request template name (to avoid redundancy)
  • 3dba69f Modify bug report template for versioning and labels (#21264)
  • f40da32 Update web bug report template
  • 89f17b4 Modify bug report template for version and labels
  • 14b8429 Adding feature requests to discussions
  • eceb155 Updating links to the new icon request templates
  • b544f79 Update contribution guidelines for icon requests
  • f811bcf Revise icon wizard request template
  • Additional commits viewable in compare view

Updates @fortawesome/free-solid-svg-icons from 6.7.2 to 7.2.0

Release notes

Sourced from @​fortawesome/free-solid-svg-icons's releases.

Release 7.2.0

Change log available at https://fontawesome.com/changelog

Release 7.1.0

Change log available at https://fontawesome.com/docs/changelog/

Release 7.0.1

Change log available at https://fontawesome.com/docs/changelog/

Release 7.0.0

Change log available at https://fontawesome.com/docs/changelog/

Commits
  • 337dd20 Release 7.2.0 (#21465)
  • 16ac6af Simplifying icon request titles (#21360)
  • ce49420 Simplifying icon request template name (to avoid redundancy)
  • 3dba69f Modify bug report template for versioning and labels (#21264)
  • f40da32 Update web bug report template
  • 89f17b4 Modify bug report template for version and labels
  • 14b8429 Adding feature requests to discussions
  • eceb155 Updating links to the new icon request templates
  • b544f79 Update contribution guidelines for icon requests
  • f811bcf Revise icon wizard request template
  • Additional commits viewable in compare view

Updates @mui/icons-material from 7.3.7 to 9.0.1

Release notes

Sourced from @​mui/icons-material's releases.

v9.0.1

A big thanks to the 25 contributors who made this release possible.

@mui/material@9.0.1

@mui/system@9.0.1

  • [system] Fix theme mutation when using responsive typography shorthand in sx (#48266) @​tomups

@mui/codemod@9.0.1

@mui/utils@9.0.1

... (truncated)

Changelog

Sourced from @​mui/icons-material's changelog.

9.0.1

May 6, 2026

A big thanks to the 25 contributors who made this release possible.

@mui/material@9.0.1

@mui/system@9.0.1

  • [system] Fix theme mutation when using responsive typography shorthand in sx (#48266) @​tomups

@mui/codemod@9.0.1

... (truncated)

Commits

Updates @mui/material from 7.3.7 to 9.0.1

Release notes

Sourced from @​mui/material's releases.

v9.0.1

A big thanks to the 25 contributors who made this release possible.

@mui/material@9.0.1

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 6, 2026
@dependabot dependabot Bot changed the title Bump the other-updates group with 53 updates Bump the other-updates group across 1 directory with 53 updates Jun 6, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/other-updates-6933621d22 branch from dae2396 to f09b12e Compare June 6, 2026 21:02
Bumps the other-updates group with 53 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@apidevtools/swagger-parser](https://github.com/APIDevTools/swagger-parser) | `10.1.1` | `12.1.0` |
| [@dnd-kit/core](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/core) | `2.1.2` | `6.3.1` |
| [@dnd-kit/sortable](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/sortable) | `2.0.1` | `10.0.0` |
| [@dnd-kit/utilities](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/utilities) | `2.0.0` | `3.2.2` |
| [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) | `6.7.2` | `7.2.0` |
| [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.7.2` | `7.2.0` |
| [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material) | `7.3.7` | `9.0.1` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `7.3.7` | `9.0.1` |
| [@mui/system](https://github.com/mui/material-ui/tree/HEAD/packages/mui-system) | `7.3.7` | `9.0.1` |
| [@mui/x-date-pickers](https://github.com/mui/mui-x/tree/HEAD/packages/x-date-pickers) | `8.27.0` | `9.4.0` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `5.17.0` | `6.9.1` |
| [bcryptjs](https://github.com/dcodeIO/bcrypt.js) | `2.4.3` | `3.0.3` |
| [change-case](https://github.com/blakeembrey/change-case) | `4.1.2` | `5.4.4` |
| [cidr-regex](https://github.com/silverwind/cidr-regex) | `3.1.1` | `6.0.0` |
| [concurrently](https://github.com/open-cli-tools/concurrently) | `7.6.0` | `10.0.3` |
| [connect-mongodb-session](https://github.com/mongodb-js/connect-mongodb-session) | `3.1.1` | `5.0.0` |
| [delay](https://github.com/sindresorhus/delay) | `5.0.0` | `7.0.0` |
| [dockerode](https://github.com/apocas/dockerode) | `4.0.9` | `5.0.0` |
| [dotenv](https://github.com/motdotla/dotenv) | `10.0.0` | `17.4.2` |
| [ejs](https://github.com/mde/ejs) | `3.1.10` | `6.0.1` |
| [express](https://github.com/expressjs/express) | `4.22.1` | `5.2.1` |
| [express-rate-limit](https://github.com/express-rate-limit/express-rate-limit) | `7.5.1` | `8.5.2` |
| [fs-extra](https://github.com/jprichardson/node-fs-extra) | `10.1.0` | `11.3.5` |
| [helmet](https://github.com/helmetjs/helmet) | `5.1.1` | `8.2.0` |
| [html-react-parser](https://github.com/remarkablemark/html-react-parser) | `1.4.14` | `6.1.3` |
| [inquirer](https://github.com/SBoudrias/Inquirer.js) | `9.3.8` | `14.0.2` |
| [mongodb](https://github.com/mongodb/node-mongodb-native) | `4.17.2` | `7.2.0` |
| [nanoid](https://github.com/ai/nanoid) | `3.3.11` | `5.1.11` |
| [openapi-types](https://github.com/kogosoftwarellc/open-api) | `10.0.0` | `12.1.3` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.7` |
| [react-cookie](https://github.com/ItsBenCodes/cookies) | `4.1.1` | `8.1.2` |
| [react-cool-dimensions](https://github.com/wellyshen/react-cool-dimensions) | `2.0.7` | `3.0.1` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.2.7` |
| [react-hotkeys-hook](https://github.com/JohannesKlauss/react-keymap-hook) | `3.4.7` | `5.3.2` |
| [react-leaflet](https://github.com/PaulLeCam/react-leaflet) | `4.2.1` | `5.0.0` |
| [react-player](https://github.com/cookpete/react-player) | `2.16.1` | `3.4.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.22.3` | `7.17.0` |
| [swagger-ui-express](https://github.com/scottie1984/swagger-ui-express) | `4.6.3` | `5.0.1` |
| [use-debounce](https://github.com/xnimorz/use-debounce) | `6.0.1` | `10.1.1` |
| [use-long-press](https://github.com/minwork/react) | `2.0.4` | `3.3.0` |
| [uuid](https://github.com/uuidjs/uuid) | `9.0.1` | `14.0.0` |
| [video.js](https://github.com/videojs/video.js) | `7.21.7` | `8.23.7` |
| [web-vitals](https://github.com/GoogleChrome/web-vitals) | `1.1.2` | `5.3.0` |
| [winston-daily-rotate-file](https://github.com/winstonjs/winston-daily-rotate-file) | `4.7.1` | `5.0.0` |
| [winston-mongodb](https://github.com/winstonjs/winston-mongodb) | `5.1.1` | `7.0.1` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `5.1.3` | `6.0.2` |
| [jest-extended](https://github.com/jest-community/jest-extended) | `6.0.0` | `7.0.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.3.1` | `8.0.16` |
| [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) | `4.5.0` | `5.2.0` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.6.15` | `10.4.2` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.6.18` | `10.4.2` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `8.6.15` | `10.4.2` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `8.6.15` | `10.4.2` |



Updates `@apidevtools/swagger-parser` from 10.1.1 to 12.1.0
- [Release notes](https://github.com/APIDevTools/swagger-parser/releases)
- [Changelog](https://github.com/APIDevTools/swagger-parser/blob/main/CHANGELOG.md)
- [Commits](APIDevTools/swagger-parser@v10.1.1...v12.1.0)

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

Updates `@dnd-kit/sortable` from 2.0.1 to 10.0.0
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Changelog](https://github.com/clauderic/dnd-kit/blob/@dnd-kit/sortable@10.0.0/packages/sortable/CHANGELOG.md)
- [Commits](https://github.com/clauderic/dnd-kit/commits/@dnd-kit/sortable@10.0.0/packages/sortable)

Updates `@dnd-kit/utilities` from 2.0.0 to 3.2.2
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Changelog](https://github.com/clauderic/dnd-kit/blob/@dnd-kit/utilities@3.2.2/packages/utilities/CHANGELOG.md)
- [Commits](https://github.com/clauderic/dnd-kit/commits/@dnd-kit/utilities@3.2.2/packages/utilities)

Updates `@fortawesome/fontawesome-svg-core` from 6.7.2 to 7.2.0
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/7.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.7.2...7.2.0)

Updates `@fortawesome/free-solid-svg-icons` from 6.7.2 to 7.2.0
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/7.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.7.2...7.2.0)

Updates `@mui/icons-material` from 7.3.7 to 9.0.1
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v9.0.1/packages/mui-icons-material)

Updates `@mui/material` from 7.3.7 to 9.0.1
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v9.0.1/packages/mui-material)

Updates `@mui/system` from 7.3.7 to 9.0.1
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v9.0.1/packages/mui-system)

Updates `@mui/x-date-pickers` from 8.27.0 to 9.4.0
- [Release notes](https://github.com/mui/mui-x/releases)
- [Changelog](https://github.com/mui/mui-x/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/mui-x/commits/v9.4.0/packages/x-date-pickers)

Updates `@testing-library/jest-dom` from 5.17.0 to 6.9.1
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v5.17.0...v6.9.1)

Updates `bcryptjs` from 2.4.3 to 3.0.3
- [Release notes](https://github.com/dcodeIO/bcrypt.js/releases)
- [Commits](dcodeIO/bcrypt.js@2.4.3...v3.0.3)

Updates `change-case` from 4.1.2 to 5.4.4
- [Release notes](https://github.com/blakeembrey/change-case/releases)
- [Commits](https://github.com/blakeembrey/change-case/compare/change-case@4.1.2...change-case@5.4.4)

Updates `cidr-regex` from 3.1.1 to 6.0.0
- [Release notes](https://github.com/silverwind/cidr-regex/releases)
- [Commits](silverwind/cidr-regex@3.1.1...6.0.0)

Updates `concurrently` from 7.6.0 to 10.0.3
- [Release notes](https://github.com/open-cli-tools/concurrently/releases)
- [Commits](open-cli-tools/concurrently@v7.6.0...v10.0.3)

Updates `connect-mongodb-session` from 3.1.1 to 5.0.0
- [Changelog](https://github.com/mongodb-js/connect-mongodb-session/blob/master/History.md)
- [Commits](mongodb-js/connect-mongodb-session@3.1.1...5.0.0)

Updates `delay` from 5.0.0 to 7.0.0
- [Release notes](https://github.com/sindresorhus/delay/releases)
- [Commits](sindresorhus/delay@v5.0.0...v7.0.0)

Updates `dockerode` from 4.0.9 to 5.0.0
- [Release notes](https://github.com/apocas/dockerode/releases)
- [Commits](apocas/dockerode@v4.0.9...v5.0.0)

Updates `dotenv` from 10.0.0 to 17.4.2
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v10.0.0...v17.4.2)

Updates `ejs` from 3.1.10 to 6.0.1
- [Release notes](https://github.com/mde/ejs/releases)
- [Changelog](https://github.com/mde/ejs/blob/main/RELEASE_NOTES_v5.md)
- [Commits](mde/ejs@v3.1.10...v6.0.1)

Updates `express` from 4.22.1 to 5.2.1
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@v4.22.1...v5.2.1)

Updates `express-rate-limit` from 7.5.1 to 8.5.2
- [Release notes](https://github.com/express-rate-limit/express-rate-limit/releases)
- [Commits](express-rate-limit/express-rate-limit@v7.5.1...v8.5.2)

Updates `fs-extra` from 10.1.0 to 11.3.5
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md)
- [Commits](jprichardson/node-fs-extra@10.1.0...11.3.5)

Updates `helmet` from 5.1.1 to 8.2.0
- [Changelog](https://github.com/helmetjs/helmet/blob/main/CHANGELOG.md)
- [Commits](helmetjs/helmet@v5.1.1...v8.2.0)

Updates `html-react-parser` from 1.4.14 to 6.1.3
- [Release notes](https://github.com/remarkablemark/html-react-parser/releases)
- [Changelog](https://github.com/remarkablemark/html-react-parser/blob/master/CHANGELOG.md)
- [Commits](remarkablemark/html-react-parser@v1.4.14...v6.1.3)

Updates `inquirer` from 9.3.8 to 14.0.2
- [Release notes](https://github.com/SBoudrias/Inquirer.js/releases)
- [Commits](https://github.com/SBoudrias/Inquirer.js/compare/inquirer@9.3.8...inquirer@14.0.2)

Updates `mongodb` from 4.17.2 to 7.2.0
- [Release notes](https://github.com/mongodb/node-mongodb-native/releases)
- [Changelog](https://github.com/mongodb/node-mongodb-native/blob/main/HISTORY.md)
- [Commits](mongodb/node-mongodb-native@v4.17.2...v7.2.0)

Updates `nanoid` from 3.3.11 to 5.1.11
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@3.3.11...5.1.11)

Updates `openapi-types` from 10.0.0 to 12.1.3
- [Release notes](https://github.com/kogosoftwarellc/open-api/releases)
- [Commits](kogosoftwarellc/open-api@v10.0.0...v12.1.3)

Updates `react` from 18.3.1 to 19.2.7
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react)

Updates `react-cookie` from 4.1.1 to 8.1.2
- [Release notes](https://github.com/ItsBenCodes/cookies/releases)
- [Commits](https://github.com/ItsBenCodes/cookies/commits/v8.1.2)

Updates `react-cool-dimensions` from 2.0.7 to 3.0.1
- [Release notes](https://github.com/wellyshen/react-cool-dimensions/releases)
- [Changelog](https://github.com/wellyshen/react-cool-dimensions/blob/master/CHANGELOG.md)
- [Commits](wellyshen/react-cool-dimensions@v2.0.7...v3.0.1)

Updates `react-dom` from 18.3.1 to 19.2.7
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react-dom)

Updates `react-hotkeys-hook` from 3.4.7 to 5.3.2
- [Release notes](https://github.com/JohannesKlauss/react-keymap-hook/releases)
- [Changelog](https://github.com/JohannesKlauss/react-hotkeys-hook/blob/main/CHANGELOG.md)
- [Commits](JohannesKlauss/react-hotkeys-hook@v3.4.7...v.5.3.2)

Updates `react-leaflet` from 4.2.1 to 5.0.0
- [Release notes](https://github.com/PaulLeCam/react-leaflet/releases)
- [Changelog](https://github.com/PaulLeCam/react-leaflet/blob/master/CHANGELOG.md)
- [Commits](PaulLeCam/react-leaflet@v4.2.1...v5.0.0)

Updates `react-player` from 2.16.1 to 3.4.0
- [Release notes](https://github.com/cookpete/react-player/releases)
- [Changelog](https://github.com/cookpete/react-player/blob/master/CHANGELOG.md)
- [Commits](cookpete/react-player@v2.16.1...v3.4.0)

Updates `react-router-dom` from 6.22.3 to 7.17.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.17.0/packages/react-router-dom)

Updates `swagger-ui-express` from 4.6.3 to 5.0.1
- [Release notes](https://github.com/scottie1984/swagger-ui-express/releases)
- [Commits](scottie1984/swagger-ui-express@4.6.3...5.0.1)

Updates `use-debounce` from 6.0.1 to 10.1.1
- [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 `use-long-press` from 2.0.4 to 3.3.0
- [Release notes](https://github.com/minwork/react/releases)
- [Commits](https://github.com/minwork/react/commits/use-long-press@3.3.0)

Updates `uuid` from 9.0.1 to 14.0.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v9.0.1...v14.0.0)

Updates `video.js` from 7.21.7 to 8.23.7
- [Release notes](https://github.com/videojs/video.js/releases)
- [Changelog](https://github.com/videojs/video.js/blob/main/CHANGELOG.md)
- [Commits](videojs/video.js@v7.21.7...v8.23.7)

Updates `web-vitals` from 1.1.2 to 5.3.0
- [Changelog](https://github.com/GoogleChrome/web-vitals/blob/main/CHANGELOG.md)
- [Commits](GoogleChrome/web-vitals@v1.1.2...v5.3.0)

Updates `winston-daily-rotate-file` from 4.7.1 to 5.0.0
- [Release notes](https://github.com/winstonjs/winston-daily-rotate-file/releases)
- [Changelog](https://github.com/winstonjs/winston-daily-rotate-file/blob/master/CHANGELOG.md)
- [Commits](winstonjs/winston-daily-rotate-file@v4.7.1...v5.0.0)

Updates `winston-mongodb` from 5.1.1 to 7.0.1
- [Release notes](https://github.com/winstonjs/winston-mongodb/releases)
- [Commits](https://github.com/winstonjs/winston-mongodb/commits)

Updates `@vitejs/plugin-react` from 5.1.3 to 6.0.2
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@6.0.2/packages/plugin-react)

Updates `jest-extended` from 6.0.0 to 7.0.0
- [Release notes](https://github.com/jest-community/jest-extended/releases)
- [Changelog](https://github.com/jest-community/jest-extended/blob/main/CHANGELOG.md)
- [Commits](jest-community/jest-extended@v6.0.0...v7.0.0)

Updates `vite` from 7.3.1 to 8.0.16
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.0.16/packages/vite)

Updates `vite-plugin-svgr` from 4.5.0 to 5.2.0
- [Release notes](https://github.com/pd4d10/vite-plugin-svgr/releases)
- [Commits](pd4d10/vite-plugin-svgr@v4.5.0...v5.2.0)

Updates `@storybook/addon-links` from 8.6.15 to 10.4.2
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.4.2/code/addons/links)

Updates `@storybook/react` from 8.6.18 to 10.4.2
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.4.2/code/renderers/react)

Updates `@storybook/react-vite` from 8.6.15 to 10.4.2
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.4.2/code/frameworks/react-vite)

Updates `storybook` from 8.6.15 to 10.4.2
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.4.2/code/core)

---
updated-dependencies:
- dependency-name: "@apidevtools/swagger-parser"
  dependency-version: 12.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@dnd-kit/core"
  dependency-version: 6.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@dnd-kit/sortable"
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@dnd-kit/utilities"
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@fortawesome/fontawesome-svg-core"
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@fortawesome/free-solid-svg-icons"
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@mui/icons-material"
  dependency-version: 9.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@mui/material"
  dependency-version: 9.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@mui/system"
  dependency-version: 9.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@mui/x-date-pickers"
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@storybook/addon-links"
  dependency-version: 10.4.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@storybook/react"
  dependency-version: 10.4.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@storybook/react-vite"
  dependency-version: 10.4.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@testing-library/jest-dom"
  dependency-version: 6.9.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 6.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: bcryptjs
  dependency-version: 3.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: change-case
  dependency-version: 5.4.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: cidr-regex
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: concurrently
  dependency-version: 10.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: connect-mongodb-session
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: delay
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: dockerode
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: dotenv
  dependency-version: 17.4.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: ejs
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: express
  dependency-version: 5.2.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: express-rate-limit
  dependency-version: 8.5.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: fs-extra
  dependency-version: 11.3.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: helmet
  dependency-version: 8.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: html-react-parser
  dependency-version: 6.1.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: inquirer
  dependency-version: 14.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: jest-extended
  dependency-version: 7.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: mongodb
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: nanoid
  dependency-version: 5.1.11
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: openapi-types
  dependency-version: 12.1.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: react
  dependency-version: 19.2.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: react-cookie
  dependency-version: 8.1.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: react-cool-dimensions
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: react-dom
  dependency-version: 19.2.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: react-hotkeys-hook
  dependency-version: 5.3.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: react-leaflet
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: react-player
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: react-router-dom
  dependency-version: 7.17.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: storybook
  dependency-version: 10.4.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: swagger-ui-express
  dependency-version: 5.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: use-debounce
  dependency-version: 10.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: use-long-press
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: uuid
  dependency-version: 14.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: video.js
  dependency-version: 8.23.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: vite
  dependency-version: 8.0.16
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: vite-plugin-svgr
  dependency-version: 5.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: web-vitals
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: winston-daily-rotate-file
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
- dependency-name: winston-mongodb
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: other-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/other-updates-6933621d22 branch from f09b12e to f619fc4 Compare June 6, 2026 21:16
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants