Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 17, 2025

Bumps the dependencies group with 46 updates in the /src/frontend directory:

Package From To
@codemirror/autocomplete 6.18.7 6.19.1
@codemirror/lint 6.8.5 6.9.2
@codemirror/view 6.38.2 6.38.8
@fortawesome/fontawesome-svg-core 7.0.1 7.1.0
@fortawesome/free-regular-svg-icons 7.0.1 7.1.0
@fortawesome/free-solid-svg-icons 7.0.1 7.1.0
@fortawesome/react-fontawesome 3.0.2 3.1.0
@lingui/core 5.4.1 5.6.0
@lingui/react 5.4.1 5.6.0
@mantine/carousel 8.2.8 8.3.8
@mantine/charts 8.2.8 8.3.8
@mantine/core 8.2.8 8.3.8
@mantine/dates 8.2.8 8.3.8
@mantine/dropzone 8.2.8 8.3.8
@mantine/form 8.2.8 8.3.8
@mantine/hooks 8.2.8 8.3.8
@mantine/modals 8.2.8 8.3.8
@mantine/notifications 8.2.8 8.3.8
@mantine/spotlight 8.2.8 8.3.8
@mantine/vanilla-extract 8.2.8 8.3.8
@sentry/react 10.9.0 10.25.0
@tabler/icons-react 3.34.1 3.35.0
@tanstack/react-query 5.85.9 5.90.10
@uiw/codemirror-theme-vscode 4.25.1 4.25.3
@uiw/react-codemirror 4.25.1 4.25.3
axios 1.12.0 1.13.2
dayjs 1.11.18 1.11.19
dompurify 3.2.6 3.3.0
mantine-contextmenu 8.2.0 8.3.8
mantine-datatable 8.2.0 8.3.8
react-hook-form 7.62.0 7.66.0
react-is 19.1.1 19.2.0
react-router-dom 6.30.1 6.30.2
recharts 3.1.2 3.4.1
@babel/core 7.28.3 7.28.5
@babel/preset-react 7.27.1 7.28.5
@babel/preset-typescript 7.27.1 7.28.5
@lingui/babel-plugin-lingui-macro 5.4.1 5.6.0
@lingui/cli 5.4.1 5.6.0
@lingui/macro 5.4.1 5.6.0
@playwright/test 1.56.0 1.56.1
@types/node 24.3.0 24.10.1
@types/qrcode 1.5.5 1.5.6
@vitejs/plugin-react 5.0.2 5.1.1
rollup 4.52.0 4.53.2
typescript 5.9.2 5.9.3

Updates @codemirror/autocomplete from 6.18.7 to 6.19.1

Changelog

Sourced from @​codemirror/autocomplete's changelog.

6.19.1 (2025-10-23)

Bug fixes

Make sure a completion's info panel is associated with that completion in the accessibility tree.

6.19.0 (2025-09-26)

New features

Completion sections may now set their rank to dynamic to indicate their order should be determined by the matching score of their best-matching option.

Commits
  • 8f88a0e Mark version 6.19.1
  • f098482 Set info panel as description of the option in accessibility tree
  • 27bbf99 Mark version 6.19.0
  • 9be8852 Allow completion sections to have a dynamic rank
  • See full diff in compare view

Updates @codemirror/lint from 6.8.5 to 6.9.2

Changelog

Sourced from @​codemirror/lint's changelog.

6.9.2 (2025-11-03)

Bug fixes

Fix an infinite loop that would occur when a diagnostic pointed beyond the end of the document.

6.9.1 (2025-10-23)

Bug fixes

Properly display diagnostics that just cover multiple newlines as widgets.

6.9.0 (2025-10-02)

Bug fixes

Multiple configurations to linter will now be merged without raising an error.

New features

The new markClass option to actions makes it possible to style action buttons.

Commits
  • a9991d6 Mark version 6.9.2
  • ae65ecc Avoid infinite loop when a diagnostic points after the end of the document
  • 818aedf Mark version 6.9.1
  • 66732d2 Improve logic for when to show a decoration as a widget
  • 73a454b Mark version 6.9.0
  • 9bc40cb Add merge logic for all config options
  • 4f3adcf Touch up doc comment
  • 50bd118 Make it possible to include a button CSS class in lint actions.
  • See full diff in compare view

Updates @codemirror/view from 6.38.2 to 6.38.8

Changelog

Sourced from @​codemirror/view's changelog.

6.38.8 (2025-11-17)

Bug fixes

Improve handling of composition with multiple cursors on MacOS.

Fix an issue where computing a document position from screen coordinates would sometimes go wrong in right-to-left text.

6.38.7 (2025-11-14)

Bug fixes

Make detection of transformed tooltip parent elements (forcing absolute positioning) more robust on current browsers.

Avoid an issue where on Chrome and Safari, typing over a cross-line selection can replace widgets on the line after the selection with their plain text content.

Fix a bug that broke insertion of composed input at multiple cursors when the IME keeps the selection at the start of the composed text.

6.38.6 (2025-10-13)

Bug fixes

Work around a regression in Safari 26 that causes fragments of old selections to remain visible.

6.38.5 (2025-10-07)

Bug fixes

Avoid firing text changes that cover unchanged text on Android.

Fix an issue where the editor could, in some circumstances, insert a stray newline when typing over a document that ended in a block widget.

Work around an issue in Safari 26 that causes inappropriate scrolling on focus in some circumstances.

6.38.4 (2025-09-28)

Bug fixes

Work around a Chrome Android issue where the browser doesn't properly fire composition end events, leaving CodeMirror to believe the user was still composing.

6.38.3 (2025-09-22)

Bug fixes

Work around a rendering bug in Mobile Safari by completely hiding empty layers.

Fix vertical cursor motion in Chrome around decorations with bottom borders or margins.

Fix an issue that caused mark decorations longer than 512 characters to needlessly be split.

... (truncated)

Commits
  • 270a0df Mark version 6.38.8
  • 6e7f5fe Account for floating point errors in right-to-left test in domPosInText
  • 04e446b Adjust to Safari's selection trashing during dead-key composition
  • f9cbe74 Adjust multiple-cursor composition fix for MacOS
  • 07b660c Mark version 6.38.7
  • 4672fa1 Fix application of composition to multiple cursors
  • 6727e32 Fix broken sentence in doc comment
  • 076450d Override cross-line replacements when the line after has a widget
  • 3b0c3b9 Fix doc comment markup for outerDecorations
  • 2f398e6 Simplify transformed-fixed-tooltip detection
  • Additional commits viewable in compare view

Updates @fortawesome/fontawesome-svg-core from 7.0.1 to 7.1.0

Release notes

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

Release 7.1.0

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

Commits

Updates @fortawesome/free-regular-svg-icons from 7.0.1 to 7.1.0

Release notes

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

Release 7.1.0

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

Commits

Updates @fortawesome/free-solid-svg-icons from 7.0.1 to 7.1.0

Release notes

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

Release 7.1.0

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

Commits

Updates @fortawesome/react-fontawesome from 3.0.2 to 3.1.0

Release notes

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

v3.1.0

3.1.0 (2025-10-03)

Features

  • custom cssPrefix support (ad42835)
  • layers: add support for layers with FontAwesomeLayers component (2c84902)

Bug Fixes

  • better export path for CustomPrefixProvider (663cd25)
  • browser-support: don't use string.replaceAll to fix safari 12 support (1776e3a)

Testing

  • layers: add unit tests for FontAwesomeLayers (d31480b)
  • utils: unit tests for withPrefix utility (982f649)

Documentation

  • add inline documentation for CustomPrefixProvider (46f69d4)
  • remove .env requirement (c942c6a)

Chores

  • release: use @​semantic-release/exec for multi-publish rather than third-party plugin (5a47e13)
Changelog

Sourced from @​fortawesome/react-fontawesome's changelog.

3.1.0 (2025-10-03)

Features

  • custom cssPrefix support (ad42835)
  • layers: add support for layers with FontAwesomeLayers component (2c84902)

Bug Fixes

  • better export path for CustomPrefixProvider (663cd25)
  • browser-support: don't use string.replaceAll to fix safari 12 support (1776e3a)

Testing

  • layers: add unit tests for FontAwesomeLayers (d31480b)
  • utils: unit tests for withPrefix utility (982f649)

Documentation

  • add inline documentation for CustomPrefixProvider (46f69d4)
  • remove .env requirement (c942c6a)

Chores

  • release: use @​semantic-release/exec for multi-publish rather than third-party plugin (5a47e13)

3.1.0 (2025-10-03)

Features

  • custom cssPrefix support (ad42835)
  • layers: add support for layers with FontAwesomeLayers component (2c84902)

Bug Fixes

  • better export path for CustomPrefixProvider (663cd25)
  • browser-support: don't use string.replaceAll to fix safari 12 support (1776e3a)

Testing

  • layers: add unit tests for FontAwesomeLayers (d31480b)
  • utils: unit tests for withPrefix utility (982f649)

Documentation

  • add inline documentation for CustomPrefixProvider (46f69d4)
  • remove .env requirement (c942c6a)

Chores

... (truncated)

Commits
  • a7fb315 chore(release): 3.1.0 [skip ci]
  • 72f6fe2 Merge pull request #603 from FortAwesome/fix/safari-12-support
  • 1776e3a fix(browser-support): don't use string.replaceAll to fix safari 12 support
  • 463be70 Merge pull request #601 from FortAwesome/feat/layers-support
  • 982f649 test(utils): unit tests for withPrefix utility
  • d31480b test(layers): add unit tests for FontAwesomeLayers
  • 2c84902 feat(layers): add support for layers with FontAwesomeLayers component
  • 663cd25 fix: better export path for CustomPrefixProvider
  • 09b5a26 Merge pull request #599 from FortAwesome/chore/custom-prefix-provider-docs
  • 46f69d4 docs: add inline documentation for CustomPrefixProvider
  • Additional commits viewable in compare view

Updates @lingui/core from 5.4.1 to 5.6.0

Release notes

Sourced from @​lingui/core's releases.

v5.6.0

5.6.0 (2025-11-12)

Features

  • experimental-extractor: reconsider includeDeps (#2362) (a4883fc)

Bug Fixes

  • core: improve type of values accepted by date/time/number formats (#2359) (c1f2800)

v5.5.2

5.5.2 (2025-10-30)

Bug Fixes

  • cli: process hang when error happend in extract (#2349) (09ab46d)
  • macro: correctly update bindings after transformation (#2356) (a9fdf3f)

v5.5.1

5.5.1 (2025-10-10)

NPM Trusted Publishing support (#2327) (3a8efa5)

Bug Fixes

  • orderByMessage should also order by context (#2337) (e84de76)

v5.5.0

5.5.0 (2025-09-12)

Features

  • cli: support multithreading in all CLI commands (#2320) (86fbcd8)
  • cli: add babel parser flag for import defer * as q from '...' (#2309) (a09c973)

To learn more about CLI multithreading, see the --workers parameter in the CLI documentation.

Changelog

Sourced from @​lingui/core's changelog.

5.6.0 (2025-11-12)

Bug Fixes

  • improve type of values accepted by date/time/number formats (#2359) (c1f2800)

5.5.2 (2025-10-30)

Note: Version bump only for package @​lingui/core

5.5.1 (2025-10-10)

Note: Version bump only for package @​lingui/core

5.5.0 (2025-09-12)

Note: Version bump only for package @​lingui/core

Commits
Maintainer changes

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


Updates @lingui/react from 5.4.1 to 5.6.0

Release notes

Sourced from @​lingui/react's releases.

v5.6.0

5.6.0 (2025-11-12)

Features

  • experimental-extractor: reconsider includeDeps (#2362) (a4883fc)

Bug Fixes

  • core: improve type of values accepted by date/time/number formats (#2359) (c1f2800)

v5.5.2

5.5.2 (2025-10-30)

Bug Fixes

  • cli: process hang when error happend in extract (#2349) (09ab46d)
  • macro: correctly update bindings after transformation (#2356) (a9fdf3f)

v5.5.1

5.5.1 (2025-10-10)

NPM Trusted Publishing support (#2327) (3a8efa5)

Bug Fixes

  • orderByMessage should also order by context (#2337) (e84de76)

v5.5.0

5.5.0 (2025-09-12)

Features

  • cli: support multithreading in all CLI commands (#2320) (86fbcd8)
  • cli: add babel parser flag for import defer * as q from '...' (#2309) (a09c973)

To learn more about CLI multithreading, see the --workers parameter in the CLI documentation.

Changelog

Sourced from @​lingui/react's changelog.

5.6.0 (2025-11-12)

Note: Version bump only for package @​lingui/react

5.5.2 (2025-10-30)

Note: Version bump only for package @​lingui/react

5.5.1 (2025-10-10)

Note: Version bump only for package @​lingui/react

5.5.0 (2025-09-12)

Note: Version bump only for package @​lingui/react

Commits
Maintainer changes

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


Updates @mantine/carousel from 8.2.8 to 8.3.8

Release notes

Sourced from @​mantine/carousel's releases.

8.3.8

What's Changed

  • [@mantine/modals] Improve types of context modals (#8439)
  • [@mantine/core] Combobox: Fix keyboard interactions not working when used in shadow DOM (#8438)
  • [@mantine/core] NumberInput: Fix , decimal separator not being converted to . when entering value from mobile keyboard
  • [@mantine/core] NumberInput: Fix incorrect keyboard displayed on iOS 26
  • [@mantine/charts] Add cellProps prop support to DonutChart and PieChart (#8444)
  • [@mantine/core] Alert: Allow overriding role attribute (#8447)
  • [@mantine/core] Menu: Add openDelay prop support to Menu.Sub component (#8437)

New Contributors

Full Changelog: mantinedev/mantine@8.3.7...8.3.8

8.3.7

What's Changed

  • [@mantine/modals] Add ConfirmModalProps type exports (#8414)
  • [@mantine/core] AppShell: Fix unexpected Header transition when scrollbar becomes hidden via scroll lock (#8420)
  • [@mantine/core] Add disabled prop for Radio.Group, Checkbox.Group and Switch.Group (#8396)
  • [@mantine/core] Fix missing sub Menu components exports (#8419)
  • [@mantine/tiptap] Fix editor control being overridden by custom onClick handler (#8421)
  • [@mantine/core] PasswordInput: Add aria-pressed attribute to the visibility toggle (#8425)
  • [@mantine/tiptap] Fix bubble menu being overlapped by the toolbar (#8416)
  • [@mantine/core] Chip: Remove iconWrapper if icon is exlicitly disabled
  • [@mantine/charts] Add labelFormatter support to the default tooltip (#8404)

New Contributors

Full Changelog: mantinedev/mantine@8.3.6...8.3.7

8.3.6

What's Changed

  • [@mantine/charts] Add options to set curveType per series in LineChart and AreaChart components (#8403)
  • [@mantine/charts] Heatmap: Fix dates range being affected by the user timezone (#8371)
  • [@mantine/core] Chip: Allow disabling icon by setting icon={null} (#8382)
  • [@mantine/core] List: Fix unexpected padding with listStyleType="none" (#8393)
  • [@mantine/dates] TimePicker: Add option to change placeholders (#8387)
  • [@mantine/core] Checkbox: Fix data-indeterminate not being set correctly (#8385)
  • [@mantine/dates] TimePicker: Fix time being clamped incorrectly when only min or max defined
  • [@mantine/core] NumberInput: Fix zero value represented as string being transformed to empty string on blur
  • [@mantine/core] Chip: Fix incorrect size calculations for size="xs" (#8367)

New Contributors

... (truncated)

Commits
  • 17bd67f [release] Version: 8.3.8
  • 0c52227 [release] Version: 8.3.7
  • ba25d81 [release] Version: 8.3.6
  • 014ef1d [release] Version: 8.3.5
  • f673223 [release] Version: 8.3.4
  • d1c4f5c [release] Version: 8.3.3
  • 81e38bc [release] Version: 8.3.2
  • ece602c [release] Version: 8.3.1
  • 081c992 [release] Version: 8.3.0
  • 0cd180b Merge branch 'master' of github.com:mantinedev/mantine into 8.3
  • Additional commits viewable in compare view

Updates @mantine/charts from 8.2.8 to 8.3.8

Release notes

Sourced from @​mantine/charts's releases.

8.3.8

What's Changed

  • [@mantine/modals] Improve types of context modals (#8439)
  • [@mantine/core] Combobox: Fix keyboard interactions not working when used in shadow DOM (#8438)
  • [@mantine/core] NumberInput: Fix , decimal separator not being converted to . when entering value from mobile keyboard
  • [@mantine/core] NumberInput: Fix incorrect keyboard displayed on iOS 26
  • [@mantine/charts] Add cellProps prop support to DonutChart and PieChart (#8444)
  • [@mantine/core] Alert: Allow overriding role attribute (#8447)
  • [@mantine/core] Menu: Add openDelay prop support to Menu.Sub component (#8437)

New Contributors

Full Changelog: mantinedev/mantine@8.3.7...8.3.8

8.3.7

What's Changed

  • [@mantine/modals] Add ConfirmModalProps type exports (#8414)
  • [@mantine/core] AppShell: Fix unexpected Header transition when scrollbar becomes hidden via scroll lock (#8420)
  • [@mantine/core] Add disabled prop for Radio.Group, Checkbox.Group and Switch.Group (#8396)
  • [@mantine/core] Fix missing sub Menu components exports (#8419)
  • [@mantine/tiptap] Fix editor control being overridden by custom onClick handler (#8421)
  • [@mantine/core] PasswordInput: Add aria-pressed attribute to the visibility toggle (#8425)
  • [@mantine/tiptap] Fix bubble menu being overlapped by the toolbar (#8416)
  • [@mantine/core] Chip: Remove iconWrapper if icon is exlicitly disabled
  • [@mantine/charts] Add labelFormatter support to the default tooltip (#8404)

New Contributors

Full Changelog: mantinedev/mantine@8.3.6...8.3.7

8.3.6

What's Changed

  • [@mantine/charts] Add options to set curveType per series in LineChart and AreaChart components (#8403)
  • [@mantine/charts] Heatmap: Fix dates range being affected by the user timezone (#8371)
  • [@mantine/core] Chip: Allow disabling icon by setting icon={null} (#8382)
  • [@mantine/core] List: Fix unexpected padding with listStyleType="none" (#8393)
  • [@mantine/dates] TimePicker: Add option to change placeholders (#8387)
  • [@mantine/core] Checkbox: Fix data-indeterminate not being set correctly (#8385)
  • [@mantine/dates] TimePicker: Fix time being clamped incorrectly when only min or max defined
  • [@mantine/core] NumberInput: Fix zero value represented as string being transformed to empty string on blur
  • [@mantine/core] Chip: Fix incorrect size calculations for size="xs" (#8367)

New Contributors

... (truncated)

Commits
  • 17bd67f [release] Version: 8.3.8
  • c2fe409 [@​mantine/charts] Add cellProps prop support to DonutChart and PieChart (#8444)
  • 0c52227 [release] Version: 8.3.7
  • b875ef0 [@​mantine/charts] Add labelFormatter support to the default tooltip (#8404)
  • ba25d81 [release] Version: 8.3.6
  • 1e4098c [@​mantine/charts] Add options to set curveType per series in LineChart and ...
  • 4d58f73 [@​mantine/charts] Heatmap: Fix dates range being affected by the user timezon...
  • 014ef1d [release] Version: 8.3.5
  • f673223 [release] Version: 8.3.4
  • d1c4f5c [release] Version: 8.3.3
  • Additional commits viewable in compare view

Updates @mantine/core from 8.2.8 to 8.3.8

Release notes

Sourced from @​mantine/core's releases.

8.3.8

What's Changed

  • [@mantine/modals] Improve types of context modals (#8439)
  • [@mantine/core] Combobox: Fix keyboard interactions not working when used in shadow DOM (#8438)
  • [@mantine/core] NumberInput: Fix , decimal separator not being converted to . when entering value from mobile keyboard
  • [@mantine/core] NumberInput: Fix incorrect keyboard displayed on iOS 26
  • [@mantine/charts] Add cellProps prop support to DonutChart and PieChart (#8444)
  • [@mantine/core] Alert: Allow overriding role attribute (#8447)
  • [@mantine/core] Menu: Add openDelay prop support to Menu.Sub component (#8437)

New Contributors

Full Changelog: mantinedev/mantine@8.3.7...8.3.8

8.3.7

What's Changed

  • [@mantine/modals] Add ConfirmModalProps type exports (#8414)
  • [@mantine/core] AppShell: Fix unexpected Header transition when scrollbar becomes hidden via scroll lock (#8420)
  • [@mantine/core] Add disabled prop for Radio.Group, Checkbox.Group and Switch.Group (#8396)
  • [@mantine/core] Fix missing sub Menu components exports (#8419)
  • [@mantine/tiptap] Fix editor control being overridden by custom onClick handler (#8421)
  • [@mantine/core] PasswordInput: Add aria-pressed attribute to the visibility toggle (#8425)
  • [@mantine/tiptap] Fix bubble menu being overlapped by the toolbar (#8416)
  • [@mantine/core] Chip: Remove iconWrapper if icon is exlicitly disabled
  • [@mantine/charts] Add labelFormatter support to the default tooltip (#8404)

New Contributors

Full Changelog: mantinedev/mantine@8.3.6...8.3.7

8.3.6

What's Changed

  • [@mantine/charts] Add options to set curveType per series in LineChart and AreaChart components (#8403)
  • [@mantine/charts] Heatmap: Fix dates range being affected by the user timezone (#8371)
  • [@mantine/core] Chip: Allow disabling icon by setting icon={null} (#8382)
  • [@mantine/core] List: Fix unexpected padding with listStyleType="none" (#8393)
  • [@mantine/dates] TimePicker: Add option to change placeholders (#8387)
  • [@mantine/core] Checkbox: Fix data-indeterminate not being set correctly (#8385)
  • [@mantine/dates] TimePicker: Fix time being clamped incorrectly when only min or max defined
  • [@mantine/core] NumberInput: Fix zero value represented as string being transformed to empty string on blur
  • [@mantine/core] Chip: Fix incorrect size calculations for size="xs" (#8367)

New Contributors

... (truncated)

Commits
  • 17bd67f [release] Version: 8.3.8
  • c3a53eb [@​mantine/core] Combobox: Fix keyboard interactions not working when used in ...
  • 4145af3 [@​mantine/core] NumberInput: Fix , decimal separator not being converted to...
  • 07c840a [@​mantine/core] NumberInput: Fix incorrect keyboard displayed on iOS 26
  • 49f3842 [@​mantine/core] Alert: Allow overriding role attribute (#8447)
  • e1b18a1 [@​mantine/core] Menu: Add openDelay prop support to Menu.Sub component (#8437)
  • 0c52227 [release] Version: 8.3.7
  • d6867db [@​mantine/core] AppShell: Fix unexpected Header transition when scrollbar bec...
  • 608df1d [@​mantine/core] Add disabled prop for Radio.Group, Checkbox.Group and Switc...
  • 1deeb59 [@​mantine/core] Fix missing sub Menu components exports (#8419)
  • Additional commits viewable in compare view

Updates @mantine/dates from 8.2.8 to 8.3.8

Release notes

Sourced from @​mantine/dates's releases.

8.3.8

What's Changed

  • [@mantine/modals] Improve types of context modals (#8439)
  • [@mantine/core] Combobox: Fix keyboard interactions not working when used in shadow DOM (#8438)
  • [@mantine...

    Description has been truncated

…pdates

Bumps the dependencies group with 46 updates in the /src/frontend directory:

| Package | From | To |
| --- | --- | --- |
| [@codemirror/autocomplete](https://github.com/codemirror/autocomplete) | `6.18.7` | `6.19.1` |
| [@codemirror/lint](https://github.com/codemirror/lint) | `6.8.5` | `6.9.2` |
| [@codemirror/view](https://github.com/codemirror/view) | `6.38.2` | `6.38.8` |
| [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) | `7.0.1` | `7.1.0` |
| [@fortawesome/free-regular-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `7.0.1` | `7.1.0` |
| [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `7.0.1` | `7.1.0` |
| [@fortawesome/react-fontawesome](https://github.com/FortAwesome/react-fontawesome) | `3.0.2` | `3.1.0` |
| [@lingui/core](https://github.com/lingui/js-lingui/tree/HEAD/packages/core) | `5.4.1` | `5.6.0` |
| [@lingui/react](https://github.com/lingui/js-lingui/tree/HEAD/packages/react) | `5.4.1` | `5.6.0` |
| [@mantine/carousel](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/carousel) | `8.2.8` | `8.3.8` |
| [@mantine/charts](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/charts) | `8.2.8` | `8.3.8` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `8.2.8` | `8.3.8` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `8.2.8` | `8.3.8` |
| [@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone) | `8.2.8` | `8.3.8` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `8.2.8` | `8.3.8` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `8.2.8` | `8.3.8` |
| [@mantine/modals](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/modals) | `8.2.8` | `8.3.8` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `8.2.8` | `8.3.8` |
| [@mantine/spotlight](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/spotlight) | `8.2.8` | `8.3.8` |
| [@mantine/vanilla-extract](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/vanilla-extract) | `8.2.8` | `8.3.8` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `10.9.0` | `10.25.0` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.34.1` | `3.35.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.85.9` | `5.90.10` |
| [@uiw/codemirror-theme-vscode](https://github.com/uiwjs/react-codemirror) | `4.25.1` | `4.25.3` |
| [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror) | `4.25.1` | `4.25.3` |
| [axios](https://github.com/axios/axios) | `1.12.0` | `1.13.2` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.18` | `1.11.19` |
| [dompurify](https://github.com/cure53/DOMPurify) | `3.2.6` | `3.3.0` |
| [mantine-contextmenu](https://github.com/icflorescu/mantine-contextmenu) | `8.2.0` | `8.3.8` |
| [mantine-datatable](https://github.com/icflorescu/mantine-datatable) | `8.2.0` | `8.3.8` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.62.0` | `7.66.0` |
| [react-is](https://github.com/facebook/react/tree/HEAD/packages/react-is) | `19.1.1` | `19.2.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.30.1` | `6.30.2` |
| [recharts](https://github.com/recharts/recharts) | `3.1.2` | `3.4.1` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.28.3` | `7.28.5` |
| [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react) | `7.27.1` | `7.28.5` |
| [@babel/preset-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-typescript) | `7.27.1` | `7.28.5` |
| [@lingui/babel-plugin-lingui-macro](https://github.com/lingui/js-lingui/tree/HEAD/packages/babel-plugin-lingui-macro) | `5.4.1` | `5.6.0` |
| [@lingui/cli](https://github.com/lingui/js-lingui/tree/HEAD/packages/cli) | `5.4.1` | `5.6.0` |
| [@lingui/macro](https://github.com/lingui/js-lingui/tree/HEAD/packages/macro) | `5.4.1` | `5.6.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.56.0` | `1.56.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.3.0` | `24.10.1` |
| [@types/qrcode](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/qrcode) | `1.5.5` | `1.5.6` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `5.0.2` | `5.1.1` |
| [rollup](https://github.com/rollup/rollup) | `4.52.0` | `4.53.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.2` | `5.9.3` |



Updates `@codemirror/autocomplete` from 6.18.7 to 6.19.1
- [Changelog](https://github.com/codemirror/autocomplete/blob/main/CHANGELOG.md)
- [Commits](codemirror/autocomplete@6.18.7...6.19.1)

Updates `@codemirror/lint` from 6.8.5 to 6.9.2
- [Changelog](https://github.com/codemirror/lint/blob/main/CHANGELOG.md)
- [Commits](codemirror/lint@6.8.5...6.9.2)

Updates `@codemirror/view` from 6.38.2 to 6.38.8
- [Changelog](https://github.com/codemirror/view/blob/main/CHANGELOG.md)
- [Commits](codemirror/view@6.38.2...6.38.8)

Updates `@fortawesome/fontawesome-svg-core` from 7.0.1 to 7.1.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@7.0.1...7.1.0)

Updates `@fortawesome/free-regular-svg-icons` from 7.0.1 to 7.1.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@7.0.1...7.1.0)

Updates `@fortawesome/free-solid-svg-icons` from 7.0.1 to 7.1.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@7.0.1...7.1.0)

Updates `@fortawesome/react-fontawesome` from 3.0.2 to 3.1.0
- [Release notes](https://github.com/FortAwesome/react-fontawesome/releases)
- [Changelog](https://github.com/FortAwesome/react-fontawesome/blob/main/CHANGELOG.md)
- [Commits](FortAwesome/react-fontawesome@v3.0.2...v3.1.0)

Updates `@lingui/core` from 5.4.1 to 5.6.0
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/lingui/js-lingui/commits/v5.6.0/packages/core)

Updates `@lingui/react` from 5.4.1 to 5.6.0
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/lingui/js-lingui/commits/v5.6.0/packages/react)

Updates `@mantine/carousel` from 8.2.8 to 8.3.8
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.3.8/packages/@mantine/carousel)

Updates `@mantine/charts` from 8.2.8 to 8.3.8
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.3.8/packages/@mantine/charts)

Updates `@mantine/core` from 8.2.8 to 8.3.8
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.3.8/packages/@mantine/core)

Updates `@mantine/dates` from 8.2.8 to 8.3.8
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.3.8/packages/@mantine/dates)

Updates `@mantine/dropzone` from 8.2.8 to 8.3.8
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.3.8/packages/@mantine/dropzone)

Updates `@mantine/form` from 8.2.8 to 8.3.8
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.3.8/packages/@mantine/form)

Updates `@mantine/hooks` from 8.2.8 to 8.3.8
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.3.8/packages/@mantine/hooks)

Updates `@mantine/modals` from 8.2.8 to 8.3.8
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.3.8/packages/@mantine/modals)

Updates `@mantine/notifications` from 8.2.8 to 8.3.8
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.3.8/packages/@mantine/notifications)

Updates `@mantine/spotlight` from 8.2.8 to 8.3.8
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.3.8/packages/@mantine/spotlight)

Updates `@mantine/vanilla-extract` from 8.2.8 to 8.3.8
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.3.8/packages/@mantine/vanilla-extract)

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

Updates `@tabler/icons-react` from 3.34.1 to 3.35.0
- [Release notes](https://github.com/tabler/tabler-icons/releases)
- [Commits](https://github.com/tabler/tabler-icons/commits/v3.35.0/packages/icons-react)

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

Updates `@uiw/codemirror-theme-vscode` from 4.25.1 to 4.25.3
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.25.1...v4.25.3)

Updates `@uiw/react-codemirror` from 4.25.1 to 4.25.3
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.25.1...v4.25.3)

Updates `axios` from 1.12.0 to 1.13.2
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.12.0...v1.13.2)

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 `dompurify` from 3.2.6 to 3.3.0
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](cure53/DOMPurify@3.2.6...3.3.0)

Updates `mantine-contextmenu` from 8.2.0 to 8.3.8
- [Changelog](https://github.com/icflorescu/mantine-contextmenu/blob/main/CHANGELOG.md)
- [Commits](https://github.com/icflorescu/mantine-contextmenu/commits)

Updates `mantine-datatable` from 8.2.0 to 8.3.8
- [Changelog](https://github.com/icflorescu/mantine-datatable/blob/main/CHANGELOG.md)
- [Commits](https://github.com/icflorescu/mantine-datatable/commits)

Updates `react-hook-form` from 7.62.0 to 7.66.0
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.62.0...v7.66.0)

Updates `react-is` from 19.1.1 to 19.2.0
- [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.0/packages/react-is)

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

Updates `recharts` from 3.1.2 to 3.4.1
- [Release notes](https://github.com/recharts/recharts/releases)
- [Changelog](https://github.com/recharts/recharts/blob/main/CHANGELOG.md)
- [Commits](recharts/recharts@v3.1.2...v3.4.1)

Updates `@babel/core` from 7.28.3 to 7.28.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-core)

Updates `@babel/preset-react` from 7.27.1 to 7.28.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-preset-react)

Updates `@babel/preset-typescript` from 7.27.1 to 7.28.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-preset-typescript)

Updates `@babel/runtime` from 7.28.3 to 7.28.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.4/packages/babel-runtime)

Updates `@lingui/babel-plugin-lingui-macro` from 5.4.1 to 5.6.0
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/packages/babel-plugin-lingui-macro/CHANGELOG.md)
- [Commits](https://github.com/lingui/js-lingui/commits/v5.6.0/packages/babel-plugin-lingui-macro)

Updates `@lingui/cli` from 5.4.1 to 5.6.0
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/lingui/js-lingui/commits/v5.6.0/packages/cli)

Updates `@lingui/macro` from 5.4.1 to 5.6.0
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/packages/macro/CHANGELOG.md)
- [Commits](https://github.com/lingui/js-lingui/commits/v5.6.0/packages/macro)

Updates `@playwright/test` from 1.56.0 to 1.56.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.56.0...v1.56.1)

Updates `@types/node` from 24.3.0 to 24.10.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/qrcode` from 1.5.5 to 1.5.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/qrcode)

Updates `@vitejs/plugin-react` from 5.0.2 to 5.1.1
- [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/[email protected]/packages/plugin-react)

Updates `rollup` from 4.52.0 to 4.53.2
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.52.0...v4.53.2)

Updates `typescript` from 5.9.2 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.9.2...v5.9.3)

---
updated-dependencies:
- dependency-name: "@codemirror/autocomplete"
  dependency-version: 6.19.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@codemirror/lint"
  dependency-version: 6.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@codemirror/view"
  dependency-version: 6.38.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@fortawesome/fontawesome-svg-core"
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@fortawesome/free-regular-svg-icons"
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@fortawesome/free-solid-svg-icons"
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@fortawesome/react-fontawesome"
  dependency-version: 3.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@lingui/core"
  dependency-version: 5.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@lingui/react"
  dependency-version: 5.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/carousel"
  dependency-version: 8.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/charts"
  dependency-version: 8.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/core"
  dependency-version: 8.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/dates"
  dependency-version: 8.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/dropzone"
  dependency-version: 8.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/form"
  dependency-version: 8.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/hooks"
  dependency-version: 8.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/modals"
  dependency-version: 8.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/notifications"
  dependency-version: 8.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/spotlight"
  dependency-version: 8.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/vanilla-extract"
  dependency-version: 8.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@sentry/react"
  dependency-version: 10.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@tabler/icons-react"
  dependency-version: 3.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.90.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@uiw/codemirror-theme-vscode"
  dependency-version: 4.25.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@uiw/react-codemirror"
  dependency-version: 4.25.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: axios
  dependency-version: 1.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: dayjs
  dependency-version: 1.11.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: dompurify
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mantine-contextmenu
  dependency-version: 8.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mantine-datatable
  dependency-version: 8.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-hook-form
  dependency-version: 7.66.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-is
  dependency-version: 19.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-router-dom
  dependency-version: 6.30.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: recharts
  dependency-version: 3.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@babel/core"
  dependency-version: 7.28.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@babel/preset-react"
  dependency-version: 7.28.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@babel/preset-typescript"
  dependency-version: 7.28.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@babel/runtime"
  dependency-version: 7.28.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@lingui/babel-plugin-lingui-macro"
  dependency-version: 5.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@lingui/cli"
  dependency-version: 5.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@lingui/macro"
  dependency-version: 5.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.56.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 24.10.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/qrcode"
  dependency-version: 1.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 5.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: rollup
  dependency-version: 4.53.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 17, 2025
@dependabot dependabot bot added javascript Pull requests that update Javascript code dependencies Pull requests that update a dependency file labels Nov 17, 2025
@netlify
Copy link

netlify bot commented Nov 17, 2025

Deploy Preview for inventree-web-pui-preview failed.

Name Link
🔨 Latest commit b963dab
🔍 Latest deploy log https://app.netlify.com/projects/inventree-web-pui-preview/deploys/691b675ae7052e00084f1698

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.

1 participant