Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 21, 2025

Bumps vue, @nextcloud/dialogs, @nextcloud/password-confirmation, @nextcloud/vue and @nextcloud/vite-config. These dependencies needed to be updated together.
Updates vue from 2.7.16 to 3.5.22

Release notes

Sourced from vue's releases.

v3.5.22

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.21

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.20

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.19

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.18

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.17

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.16

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.15

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.14

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.13

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.12

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.11

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.10

For stable releases, please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vue's changelog.

3.5.22 (2025-09-25)

Bug Fixes

  • compiler-core: identifiers in switch-case should not be inferred as references (#13923) (5953c9f)
  • compiler-dom: nodes with v-once shouldn't be stringified (#13878) (95c1975)
  • compiler-sfc: add support for @vue-ignore in runtime type resolution (#13906) (ba7f7f9)
  • compiler-sfc: enhance inferRuntimeType to support TSMappedType with indexed access (#13848) (e388f1a), closes #13847
  • compiler-sfc: ensure css custom properties do not start with a digit (#13870) (9c27951)
  • compiler-sfc: ensure props bindings register before compiling template (#13922) (abd5638), closes #13920
  • compiler-ssr: ensure v-show has a higher priority in SSR (#12171) (836b829), closes #12162
  • custom-element: properly mount multiple Teleports in custom element component w/ shadowRoot false (#13900) (5e1e791), closes #13899
  • custom-element: set prop runs pending mutations before disconnect (#13897) (c4a88cd), closes #13315
  • custom-element: use PatchFlags.BAIL for slot when props are present (#13907) (5358bca), closes #13904
  • reactivity: respect readonly during ref unwrapping (#13905) (aba7fed), closes #13903
  • reactivity: update iterator to check for completion instead of value presence (#13761) (2078f8b)
  • runtime-core: simplify block-tracking disabling in h helper (#13841) (75220c7)
  • transition-group: run forceReflow on the correct document (fix #13849) (#13853) (1be5ddf)
  • types: more precise types for Events and added missing definitions (#9675) (8bb8fb2)
  • types: set dom stub type to never instead of {} (#13915) (8620a61), closes #11564
  • types: widen directive arg type from string to any (#13758) (4b71706), closes #13757

Features

  • custom-element: allow specifying additional options for shadowRoot in custom elements (#12965) (47e628d), closes #12964

Reverts

  • Revert "fix(hmr): prevent VUE_HMR_RUNTIME from being overwritten by vue runtime in 3rd-party libraries" (#13925) (6b68f72), closes #13925

3.5.21 (2025-09-02)

Bug Fixes

... (truncated)

Commits
Maintainer changes

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


Updates @nextcloud/dialogs from 6.3.1 to 7.1.0

Release notes

Sourced from @​nextcloud/dialogs's releases.

v7.1.0

What's Changed

🚀 Enhancements

🐛 Fixed bugs

Other Changes

Full Changelog: nextcloud-libraries/nextcloud-dialogs@v7.0.1...v7.1.0

v7.0.1

v7.0.1

Fixed

Changed

  • docs: adjust changes link for v7.0.0 #2008 (susnux)
  • Updated translations

v7.0.0

v7.0.0

Notes

This package now builds on top of @nextcloud/vue version 9 using Vue 3. While this package uses Vue 3 it is also possible to use it within a Vue 2 project, in this case the Vue dependency will not be shared as the dependency was moved from a peer dependency to a plain dependency. This also means that if you are using Vue 2 you have to ensure you do not use bundler configurations that enforce resolving Vue to the same version as this will fail now, instead let the bundler choose the matching Vue version.

For example if using Webpack this will no longer work in Vue 2 apps:

  resolve: {
		alias: {
			vue$: path.resolve('./node_modules/vue'),
		},
  }

For Vue 3 apps nothing changed, meaning the app and this library will share the same Vue dependency as long as the versions are compatible.

Breaking

... (truncated)

Changelog

Sourced from @​nextcloud/dialogs's changelog.

v7.1.0

Enhancements

Fixed

Changes

v7.0.1

Fixed

Changed

  • docs: adjust changes link for v7.0.0 #2008 (susnux)
  • Updated translations

v7.0.0

Notes

This package now builds on top of @nextcloud/vue version 9 using Vue 3. While this package uses Vue 3 it is also possible to use it within a Vue 2 project, in this case the Vue dependency will not be shared as the dependency was moved from a peer dependency to a plain dependency. This also means that if you are using Vue 2 you have to ensure you do not use bundler configurations that enforce resolving Vue to the same version as this will fail now, instead let the bundler choose the matching Vue version.

For example if using Webpack this will no longer work in Vue 2 apps:

  resolve: {
		alias: {
			vue$: path.resolve('./node_modules/vue'),
		},
  }

For Vue 3 apps nothing changed, meaning the app and this library will share the same Vue dependency as long as the versions are compatible.

Breaking

  • This package now uses Vue 3 internally.
  • The deprecated FilePicker component export was removed to allow using this library in Vue 2 and Vue 3 apps.
  • The deprecated Dialog.hide method was removed, instead await the returned promise and wait for the user interaction.

... (truncated)

Commits
  • dac16be Merge pull request #2047 from nextcloud-libraries/artonge/chore/v7.1.0
  • 592e534 Merge pull request #2050 from nextcloud-libraries/dependabot/npm_and_yarn/mai...
  • 06129d2 chore(deps-dev): bump @​nextcloud/browserslist-config from 3.1.0 to 3.1.1
  • 25d8c63 chore: prepare v7.1.0
  • dc7ac4a chore(deps): Update browserslist
  • 22f16c3 Merge pull request #2033 from nextcloud-libraries/artonge/feat/add_canpick_op...
  • 682071a Merge pull request #2044 from nextcloud-libraries/fix/compression
  • 207c2fe chore: adjust code style
  • 441ecf3 Merge pull request #2045 from nextcloud-libraries/translations_441be4f7621043...
  • ad184f3 Translate l10n/messages.pot in ca
  • Additional commits viewable in compare view

Updates @nextcloud/password-confirmation from 5.3.1 to 6.0.1

Release notes

Sourced from @​nextcloud/password-confirmation's releases.

v6.0.1

6.0.1 - 2025-10-16

Fixed

  • fix: ensure password is used for axios request #1172 (susnux)

Changed

  • ci: add workflow to block unconventional commits #1175 (susnux)
  • Updated translations

v6.0.0

6.0.0 - 2025-09-28

Notes

This package now builds on top of @nextcloud/vue version 9 using Vue 3. While this package uses Vue 3 it is also possible to use it within a Vue 2 project, in this case the Vue dependency will not be shared as the dependency was moved from a peer dependency to a plain dependency. This also means that if you are using Vue 2 you have to ensure you do not use bundler configurations that enforce resolving Vue to the same version as this will fail now, instead let the bundler choose the matching Vue version.

For example if using Webpack this will no longer work in Vue 2 apps:

  resolve: {
                alias: {
                        vue$: path.resolve('./node_modules/vue'),
                },
  }

For Vue 3 apps nothing changed, meaning the app and this library will share the same Vue dependency as long as the versions are compatible.

Breaking

  • This package now uses Vue 3 internally.
  • The legacy common js entry point is removed.
  • The legacy, deprecated, dist/style.css entry point was removed. If you still use it please adjust as following:
- import '@nextcloud/password-confirmation/dist/style.css'
+ import '@nextcloud/password-confirmation/style.css'

Added

Fixed

Changed

... (truncated)

Changelog

Sourced from @​nextcloud/password-confirmation's changelog.

6.0.1 - 2025-10-16

Fixed

  • fix: ensure password is used for axios request #1172 (susnux)

Changed

  • ci: add workflow to block unconventional commits #1175 (susnux)
  • Updated translations

6.0.0 - 2025-09-28

Notes

This package now builds on top of @nextcloud/vue version 9 using Vue 3. While this package uses Vue 3 it is also possible to use it within a Vue 2 project, in this case the Vue dependency will not be shared as the dependency was moved from a peer dependency to a plain dependency. This also means that if you are using Vue 2 you have to ensure you do not use bundler configurations that enforce resolving Vue to the same version as this will fail now, instead let the bundler choose the matching Vue version.

For example if using Webpack this will no longer work in Vue 2 apps:

  resolve: {
                alias: {
                        vue$: path.resolve('./node_modules/vue'),
                },
  }

For Vue 3 apps nothing changed, meaning the app and this library will share the same Vue dependency as long as the versions are compatible.

Breaking

  • This package now uses Vue 3 internally.
  • The legacy common js entry point is removed.
  • The legacy, deprecated, dist/style.css entry point was removed. If you still use it please adjust as following:
- import '@nextcloud/password-confirmation/dist/style.css'
+ import '@nextcloud/password-confirmation/style.css'

Fixed

Changed

Commits
  • 484342a Merge pull request #1177 from nextcloud-libraries/chore/release-6-0-1
  • d04f1dc chore: prepare v6.0.1
  • ca122a5 Merge pull request #1175 from nextcloud-libraries/ci/add-block
  • c2f9f77 Merge pull request #1172 from nextcloud-libraries/fix/confirm-password
  • 66064d9 ci: add workflow to block unconventional commits
  • 0e9a6ec fix: ensure password is used for axios request
  • 6ebf486 Merge pull request #1173 from nextcloud-libraries/dependabot/npm_and_yarn/hap...
  • 018c890 chore(deps-dev): Bump happy-dom from 20.0.0 to 20.0.2
  • 844374d Merge pull request #1164 from nextcloud-libraries/dependabot/github_actions/p...
  • 78c15bf Merge pull request #1171 from nextcloud-libraries/dependabot/github_actions/f...
  • Additional commits viewable in compare view

Updates @nextcloud/vue from 8.29.2 to 9.0.1

Release notes

Sourced from @​nextcloud/vue's releases.

v9.0.1

What's Changed

🐛 Fixed bugs

Other Changes

Full Changelog: nextcloud-libraries/nextcloud-vue@v9.0.0...v9.0.1

v9.0.0

v9.0.0 (2025-09-25)

💥 Breaking Changes

  • The package now uses Vue 3 instead of Vue 2.7
  • The package is now a native ESM package and the CommonJS entry points were dropped!
  • The package has dropped compatibility with Nextcloud before version 31. This mostly affects the visual appearance of components.
  • The NcSettingsInputText component was deprecated in v8 and is now removed.

Plugin registering removed

The plugin registering all the components and directives globally is removed. Instead use local registration of components and directives. If you really need an alternative we recommend using unplugin-vue-components.

Import paths changed

The old import paths like @nextcloud/vue/dist/Components/NcComponent.js were removed. Instead use the new ones (@nextcloud/vue/components/NcComponent).

Example shell command to do the refactoring:

PATTERN='s,@nextcloud/vue/dist/([^/]+)/([^.]+).js,@nextcloud/vue/\L\1\E/\2,'
find src \
  -name "*.vue" \
  -exec sed -i -re "$PATTERN" \{\} +

Container components now default to box-sizing: border-box

For container components that can be directly mounted to <body> the box-sizing was adjusted to match the behavior of NcContent.

The box-sizing: border-box is now default for following components and its content:

  • NcDialog
  • NcModal
  • NcPopover

... (truncated)

Changelog

Sourced from @​nextcloud/vue's changelog.

v9.0.1 (2025-10-06)

Full Changelog

🐛 Fixed bugs

  • fix(NcAppContent): avoid double content mount #7590 (ShGKme)
  • fix(NcAppContent): add reactivity to pane config key #7574

Other Changes

  • Updated translations

v9.0.0 (2025-09-25)

Full Changelog

💥 Breaking Changes

  • The package now uses Vue 3 instead of Vue 2.7
  • The package is now a native ESM package and the CommonJS entry points were dropped!
  • The package has dropped compatibility with Nextcloud before version 31. This mostly affects the visual appearance of components.
  • The NcSettingsInputText component was deprecated in v8 and is now removed.

Plugin registering removed

The plugin registering all the components and directives globally is removed. Instead use local registration of components and directives. If you really need an alternative we recommend using unplugin-vue-components.

Import paths changed

The old import paths like @nextcloud/vue/dist/Components/NcComponent.js were removed. Instead use the new ones (@nextcloud/vue/components/NcComponent).

Example shell command to do the refactoring:

PATTERN='s,@nextcloud/vue/dist/([^/]+)/([^.]+).js,@nextcloud/vue/\L\1\E/\2,'
find src \
  -name "*.vue" \
  -exec sed -i -re "$PATTERN" \{\} +

Container components now default to box-sizing: border-box

For container components that can be directly mounted to <body> the box-sizing was adjusted to match the behavior of NcContent.

The box-sizing: border-box is now default for following components and its content:

  • NcDialog
  • NcModal
  • NcPopover

Consistent usage of modelValue prop

All input elements were refactored to use the modelValue prop instead of the now removed value / checked prop and emit the update:modelValue event instead of the removed update:checked / update:value / input events. This which allows consistent using of v-model.

Affected components:

... (truncated)

Commits
  • 399515d Merge pull request #7621 from nextcloud-libraries/chore/release-v9
  • 6e0ebe3 chore: prepare release of v9.0.1
  • 98d12ef Merge pull request #7601 from nextcloud-libraries/automated/18240021382/serve...
  • 1fda503 Merge pull request #7597 from nextcloud-libraries/automated/18213555744/serve...
  • 792fe38 Merge pull request #7592 from nextcloud-libraries/automated/18184046374/serve...
  • af51c45 Merge pull request #7583 from nextcloud-libraries/automated/18152161268/serve...
  • bf8719c Merge pull request #7579 from nextcloud-libraries/automated/18119506254/serve...
  • c41b954 Merge pull request #7609 from nextcloud-libraries/dependabot/github_actions/p...
  • a5314ed Merge pull request #7606 from nextcloud-libraries/automated/18254329749/serve...
  • e880e83 Merge pull request #7608 from nextcloud-libraries/automated/18270771521/serve...
  • Additional commits viewable in compare view

Updates @nextcloud/vite-config from 1.6.0 to 2.5.2

Release notes

Sourced from @​nextcloud/vite-config's releases.

v2.5.2

v2.5.2 (2025-10-20)

🐛 Fixed bugs

  • fix(REUSE): also add correct license headers for facade chunks #736 (susnux)

Other changes

  • Updated development dependencies

v2.5.1

v2.5.1 (2025-09-29)

🐛 Fixed bugs

  • fix: make configuration rolldown compatible #717 (susnux)

Other changes

  • chore(deps): Bump rollup-plugin-node-externals to 8.1.1
  • chore(deps): Bump magic-string to 0.30.19

v2.5.0

Added

  • Minimum Vite version is now 7.1.4

🐛 Fixed bugs

  • fix: bump vite version to fix running in watch mode #693 (susnux)

Other changes

  • chore: update vite-plugin-node-polyfills to 0.24.0 #678 (skjnldsv)
  • chore: various dev deps upgrades #680 (skjnldsv)
  • chore(deps): Bump @​vitejs/plugin-vue from 6.0.0 to 6.0.1 #681
  • chore(deps): Bump cipher-base from 1.0.4 to 1.0.6 #687
  • chore(deps): Bump sha.js from 2.4.11 to 2.4.12 #688
  • chore(deps): Bump magic-string from 0.30.17 to 0.30.18 #691
  • chore(deps): Bump rollup-plugin-node-externals from 8.0.1 to 8.1.0 #690

v2.4.0

v2.4.0 (2025-07-23)

Added

  • Vite v7 support

🐛 Fixed bugs

  • fix(watch): adjust rollup config for watch mode #666 (susnux)

Changed

  • chore: remove work-around for already fixed bug #664 (susnux)
  • chore: adjust defaults to use SPDX over 3rdparty BOM #665 (susnux)
  • chore(deps): Bump @​vitejs/plugin-vue to 6.0.0
  • chore(deps): Bump pbkdf2 to 3.1.3
  • chore(deps): Bump rollup-plugin-node-externals to 8.0.1
  • chore(deps): Bump vite-plugin-dts to 4.5.4

... (truncated)

Changelog

Sourced from @​nextcloud/vite-config's changelog.

v2.5.2 (2025-10-20)

🐛 Fixed bugs

  • fix(REUSE): also add correct license headers for facade chunks #736 (susnux)

Other changes

  • Updated development dependencies

v2.5.1 (2025-09-29)

🐛 Fixed bugs

  • fix: make configuration rolldown compatible #717 (susnux)

Other changes

  • chore(deps): Bump rollup-plugin-node-externals to 8.1.1
  • chore(deps): Bump magic-string to 0.30.19

v2.5.0 (2025-09-02)

Added

  • Minimum Vite version is now 7.1.4

🐛 Fixed bugs

  • fix: bump vite version to fix running in watch mode #693 (susnux)

Other changes

  • chore: update vite-plugin-node-polyfills to 0.24.0 #678 (skjnldsv)
  • chore: various dev deps upgrades #680 (skjnldsv)
  • chore(deps): Bump @​vitejs/plugin-vue from 6.0.0 to 6.0.1 #681
  • chore(deps): Bump cipher-base from 1.0.4 to 1.0.6 #687
  • chore(deps): Bump sha.js from 2.4.11 to 2.4.12 #688
  • chore(deps): Bump magic-string from 0.30.17 to 0.30.18 #691
  • chore(deps): Bump rollup-plugin-node-externals from 8.0.1 to 8.1.0 #690

v2.4.0 (2025-07-23)

Added

  • Vite v7 support

🐛 Fixed bugs

  • fix(watch): adjust rollup config for watch mode #666 (susnux)

Changed

  • chore: remove work-around for already fixed bug #664 (susnux)
  • chore: adjust defaults to use SPDX over 3rdparty BOM #665 (susnux)
  • chore(deps): Bump @​vitejs/plugin-vue to 6.0.0
  • chore(deps): Bump pbkdf2 to 3.1.3
  • chore(deps): Bump rollup-plugin-node-externals to 8.0.1
  • chore(deps): Bump vite-plugin-dts to 4.5.4

v2.3.5 (2025-05-07)

... (truncated)

Commits
  • 403558b Merge pull request #739 from nextcloud-libraries/chore/prepare-v2-5-2
  • 5001e17 chore: prepare v2.5.2
  • f11055b Merge pull request #736 from nextcloud-libraries/fix/add-license-for-fascade-...
  • c75f7bb Merge pull request #734 from nextcloud-libraries/dependabot/npm_and_yarn/main...
  • 0251256 Merge pull request #731 from nextcloud-libraries/dependabot/npm_and_yarn/main...
  • 526e567 Merge pull request #730 from nextcloud-libraries/dependabot/npm_and_yarn/main...
  • 6732dd1 fix(REUSE): also add correct license headers for fascade chunks
  • be4f5de chore(deps-dev): Bump vite from 7.1.9 to 7.1.10
  • 4a27ac2 chore(deps-dev): Bump @​types/node from 24.7.1 to 24.8.1
  • 68ea3c6 chore(deps-dev): Bump typedoc from 0.28.13 to 0.28.14
  • Additional commits viewable in compare view

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

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

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

…mation, @nextcloud/vue and @nextcloud/vite-config

Bumps [vue](https://github.com/vuejs/core), [@nextcloud/dialogs](https://github.com/nextcloud-libraries/nextcloud-dialogs), [@nextcloud/password-confirmation](https://github.com/nextcloud-libraries/nextcloud-password-confirmation), [@nextcloud/vue](https://github.com/nextcloud-libraries/nextcloud-vue) and [@nextcloud/vite-config](https://github.com/nextcloud/nextcloud-vite-config). These dependencies needed to be updated together.

Updates `vue` from 2.7.16 to 3.5.22
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/commits/v3.5.22)

Updates `@nextcloud/dialogs` from 6.3.1 to 7.1.0
- [Release notes](https://github.com/nextcloud-libraries/nextcloud-dialogs/releases)
- [Changelog](https://github.com/nextcloud-libraries/nextcloud-dialogs/blob/main/CHANGELOG.md)
- [Commits](nextcloud-libraries/nextcloud-dialogs@v6.3.1...v7.1.0)

Updates `@nextcloud/password-confirmation` from 5.3.1 to 6.0.1
- [Release notes](https://github.com/nextcloud-libraries/nextcloud-password-confirmation/releases)
- [Changelog](https://github.com/nextcloud-libraries/nextcloud-password-confirmation/blob/main/CHANGELOG.md)
- [Commits](nextcloud-libraries/nextcloud-password-confirmation@v.5.3.1...v6.0.1)

Updates `@nextcloud/vue` from 8.29.2 to 9.0.1
- [Release notes](https://github.com/nextcloud-libraries/nextcloud-vue/releases)
- [Changelog](https://github.com/nextcloud-libraries/nextcloud-vue/blob/main/CHANGELOG.md)
- [Commits](nextcloud-libraries/nextcloud-vue@v8.29.2...v9.0.1)

Updates `@nextcloud/vite-config` from 1.6.0 to 2.5.2
- [Release notes](https://github.com/nextcloud/nextcloud-vite-config/releases)
- [Changelog](https://github.com/nextcloud-libraries/nextcloud-vite-config/blob/main/CHANGELOG.md)
- [Commits](nextcloud-libraries/nextcloud-vite-config@v1.6.0...v2.5.2)

---
updated-dependencies:
- dependency-name: vue
  dependency-version: 3.5.22
  dependency-type: direct:production
- dependency-name: "@nextcloud/dialogs"
  dependency-version: 7.1.0
  dependency-type: direct:production
- dependency-name: "@nextcloud/password-confirmation"
  dependency-version: 6.0.1
  dependency-type: direct:production
- dependency-name: "@nextcloud/vue"
  dependency-version: 9.0.1
  dependency-type: direct:production
- dependency-name: "@nextcloud/vite-config"
  dependency-version: 2.5.2
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 21, 2025
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

1 participant