Menu

#72 build(deps): bump the npm group in /frontend with 9 updates

open
nobody
2026-06-17
2026-06-17
Anonymous
No

Originally created by: dependabot[bot]

Bumps the npm group in /frontend with 9 updates:

Package From To
@xyflow/react 12.10.2 12.11.0
i18next 26.2.0 26.3.1
lucide-react 1.16.0 1.20.0
react 19.2.6 19.2.7
@types/react 19.2.15 19.2.17
react-dom 19.2.6 19.2.7
@vitejs/plugin-react 4.7.0 6.0.2
typescript 5.9.3 6.0.3
vite 6.4.2 8.0.16

Updates @xyflow/react from 12.10.2 to 12.11.0

Release notes

Sourced from @​xyflow/react's releases.

@​xyflow/react@​12.11.0

12.11.0

Minor Changes

Patch Changes

Changelog

Sourced from @​xyflow/react's changelog.

12.11.0

Minor Changes

Patch Changes

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​xyflow/react since your current version.


Updates i18next from 26.2.0 to 26.3.1

Release notes

Sourced from i18next's releases.

v26.3.1

v26.3.0

  • feat(types): introduce ResourceNamespaceMap — a separate mergeable augmentation surface for namespace resource types, designed for monorepos where multiple packages each want to contribute their own namespaces. Previously, every package had to coordinate on a single CustomTypeOptions.resources declaration (or fall back to typing dependency namespaces as any) because resources is a single property of an interface and TypeScript reports TS2717 when two declarations of the same property disagree. The new interface merges naturally across declare module 'i18next' blocks, so each package can ship its own i18next.d.ts independently. Per-property merge handles same-namespace contributions from multiple packages, and same-key/different-literal conflicts are silently dropped to avoid poisoning t() overload resolution. Fully backwards-compatible — existing CustomTypeOptions.resources augmentations continue to work, and both surfaces can coexist. Scalar options (defaultNS, returnNull, enableSelector, etc.) still belong on CustomTypeOptions. Thanks @​sh3xu (#2434](https://github.com/href="https://redirect.github.com/i18next/i18next/pull/2434">/issues/2434)). Fixes #2409](https://github.com/href="https://redirect.github.com/i18next/i18next/issues/2409">/issues/2409).
Changelog

Sourced from i18next's changelog.

26.3.1

26.3.0

  • feat(types): introduce ResourceNamespaceMap — a separate mergeable augmentation surface for namespace resource types, designed for monorepos where multiple packages each want to contribute their own namespaces. Previously, every package had to coordinate on a single CustomTypeOptions.resources declaration (or fall back to typing dependency namespaces as any) because resources is a single property of an interface and TypeScript reports TS2717 when two declarations of the same property disagree. The new interface merges naturally across declare module 'i18next' blocks, so each package can ship its own i18next.d.ts independently. Per-property merge handles same-namespace contributions from multiple packages, and same-key/different-literal conflicts are silently dropped to avoid poisoning t() overload resolution. Fully backwards-compatible — existing CustomTypeOptions.resources augmentations continue to work, and both surfaces can coexist. Scalar options (defaultNS, returnNull, enableSelector, etc.) still belong on CustomTypeOptions. Thanks @​sh3xu (#2434](https://github.com/href="https://redirect.github.com/i18next/i18next/pull/2434">/issues/2434)). Fixes #2409](https://github.com/href="https://redirect.github.com/i18next/i18next/issues/2409">/issues/2409).
Commits


Updates lucide-react from 1.16.0 to 1.20.0

Release notes

Sourced from lucide-react's releases.

Version 1.20.0

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/1.19.0...1.20.0

Version 1.19.0

What's Changed

New Contributors

... (truncated)

Commits


Updates react from 19.2.6 to 19.2.7

Release notes

Sourced from react's releases.

19.2.7 (June 1st, 2026)

React Server Components

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react since your current version.


Updates @types/react from 19.2.15 to 19.2.17

Commits


Updates react-dom from 19.2.6 to 19.2.7

Release notes

Sourced from react-dom's releases.

19.2.7 (June 1st, 2026)

React Server Components

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react-dom since your current version.


Updates @types/react from 19.2.15 to 19.2.17

Commits


Updates @vitejs/plugin-react from 4.7.0 to 6.0.2

Release notes

Sourced from @​vitejs/plugin-react's releases.

plugin-react@6.0.2

Allow all options in reactCompilerPreset (#1189](https://github.com/href="https://redirect.github.com/vitejs/vite-plugin-react/pull/1189">/issues/1189))

This is a type only change. Only compilationMode and target options were available for reactCompilerPreset.

plugin-react@6.0.1

Expand @rolldown/plugin-babel peer dep range (#1146](https://github.com/href="https://redirect.github.com/vitejs/vite-plugin-react/pull/1146">/issues/1146))

Expanded @rolldown/plugin-babel peer dep range to include ^0.2.0.

plugin-react@6.0.0

Remove Babel Related Features (#1123](https://github.com/href="https://redirect.github.com/vitejs/vite-plugin-react/pull/1123">/issues/1123))

Vite 8+ can handle React Refresh Transform by Oxc and doesn't need Babel for it. With that, there are no transform applied that requires Babel. To reduce the installation size of this plugin, babel is no longer a dependency of this plugin and the related features are removed.

If you are using Babel, you can use @rolldown/plugin-babel together with this plugin:

 import { defineConfig } from 'vite'
 import react from '@vitejs/plugin-react'
+import babel from '@rolldown/plugin-babel'

export default defineConfig({ plugins: [

  • react({
    
  •   babel: {
    
  •     plugins: ['@babel/plugin-proposal-throw-expressions'],
    
  •   },
    
  • }),
    
  • react(),
    
  • babel({
    
  •   plugins: ['@babel/plugin-proposal-throw-expressions'],
    
  • }),
    
    ] })

For React compiler users, you can use reactCompilerPreset for easier setup with preconfigured filter to improve build performance:

 import { defineConfig } from 'vite'
-import react from '@vitejs/plugin-react'
+import react, { reactCompilerPreset } from '@vitejs/plugin-react'
+import babel from '@rolldown/plugin-babel'

export default defineConfig({ plugins: [

  • react({
  •  babel: {
    
  •    plugins: ['babel-plugin-react-compiler'],
    

</tr></table>

... (truncated)

Changelog

Sourced from @​vitejs/plugin-react's changelog.

6.0.2 (2026-05-14)

Allow all options in reactCompilerPreset (#1189](https://github.com/href="https://redirect.github.com/vitejs/vite-plugin-react/pull/1189">/issues/1189))

This is a type only change. Only compilationMode and target options were available for reactCompilerPreset.

6.0.1 (2026-03-13)

Expand @rolldown/plugin-babel peer dep range (#1146](https://github.com/href="https://redirect.github.com/vitejs/vite-plugin-react/pull/1146">/issues/1146))

Expanded @rolldown/plugin-babel peer dep range to include ^0.2.0.

6.0.0 (2026-03-12)

6.0.0-beta.0 (2026-03-03)

Remove Babel Related Features (#1123](https://github.com/href="https://redirect.github.com/vitejs/vite-plugin-react/pull/1123">/issues/1123))

Vite 8+ can handle React Refresh Transform by Oxc and doesn't need Babel for it. With that, there are no transform applied that requires Babel. To reduce the installation size of this plugin, babel is no longer a dependency of this plugin and the related features are removed.

If you are using Babel, you can use @rolldown/plugin-babel together with this plugin:

 import { defineConfig } from 'vite'
 import react from '@vitejs/plugin-react'
+import babel from '@rolldown/plugin-babel'

export default defineConfig({ plugins: [

  • react({
    
  •   babel: {
    
  •     plugins: ['@babel/plugin-proposal-throw-expressions'],
    
  •   },
    
  • }),
    
  • react(),
    
  • babel({
    
  •   plugins: ['@babel/plugin-proposal-throw-expressions'],
    
  • }),
    
    ] })

For React compiler users, you can use reactCompilerPreset for easier setup with preconfigured filter to improve build performance:

 import { defineConfig } from 'vite'
-import react from '@vitejs/plugin-react'
+import react, { reactCompilerPreset } from '@vitejs/plugin-react'
+import babel from '@rolldown/plugin-babel'

</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​vitejs/plugin-react since your current version.


Updates typescript from 5.9.3 to 6.0.3

Release notes

Sourced from typescript's releases.

TypeScript 6.0.3

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits


Updates vite from 6.4.2 to 8.0.16

Release notes

Sourced from vite's releases.

v8.0.16

Please refer to CHANGELOG.md (github.com) for details.

v8.0.15

Please refer to CHANGELOG.md (github.com) for details.

v8.0.14

Please refer to CHANGELOG.md (github.com) for details.

v8.0.13

Please refer to CHANGELOG.md (github.com) for details.

v8.0.12

Please refer to CHANGELOG.md (github.com) for details.

v8.0.11

Please refer to CHANGELOG.md (github.com) for details.

v8.0.10

Please refer to CHANGELOG.md (github.com) for details.

v8.0.9

Please refer to CHANGELOG.md (github.com) for details.

v8.0.8

Please refer to CHANGELOG.md (github.com) for details.

v8.0.7

Please refer to CHANGELOG.md (github.com) for details.

v8.0.6

Please refer to CHANGELOG.md (github.com) for details.

v8.0.5

Please refer to CHANGELOG.md (github.com) for details.

v8.0.4

Please refer to CHANGELOG.md (github.com) for details.

create-vite@8.0.3

Please refer to CHANGELOG.md (github.com) for details.

v8.0.3

Please refer to CHANGELOG.md (github.com) for details.

create-vite@8.0.2

Please refer to CHANGELOG.md (github.com) for details.

v8.0.2

Please refer to CHANGELOG.md (github.com) for details.

... (truncated)

Changelog

Sourced from vite's changelog.

8.0.16 (2026-06-01)

Bug Fixes

8.0.15 (2026-06-01)

Features

Bug Fixes

Miscellaneous Chores

Code Refactoring

8.0.14 (2026-05-21)

Features

Bug Fixes

Miscellaneous Chores

Code Refactoring

... (truncated)

Commits


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 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 </ignore></dependency></dependency></dependency></dependency></dependency></dependency>

Discussion


Log in to post a comment.

Auth0 Logo