Skip to content

Chore(deps): Bump @nextcloud/vue and @nextcloud/dialogs#2980

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/multi-8b7584c166
Closed

Chore(deps): Bump @nextcloud/vue and @nextcloud/dialogs#2980
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/multi-8b7584c166

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Oct 16, 2025

Bumps @nextcloud/vue and @nextcloud/dialogs. These dependencies needed to be updated together.
Updates @nextcloud/vue from 8.32.0 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/dialogs from 6.3.2 to 7.0.1

Release notes

Sourced from @​nextcloud/dialogs's releases.

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

  • 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.
  • The deprecated Dialog.setHTML method was removed. If you need custom HTML content use NcDialog from @nextcloud/vue.
  • The spawnDialog helper method was removed, instead use the function provided by @nextcloud/vue
- import { spawnDialog } from '@nextcloud/dialogs'
+ import { spawnDialog } from '@nextcloud/vue/functions/dialog'

Added

  • feat: add guest auth prompt #1760 (backportbot)
  • feat(ConflictPicker): move conflict picker dialog from @nextcloud/upload #1971 (susnux)
  • feat(dialogs): allow to quickly show a dialog #1986 (susnux)

Fixed

... (truncated)

Changelog

Sourced from @​nextcloud/dialogs's changelog.

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.
  • The deprecated Dialog.setHTML method was removed. If you need custom HTML content use NcDialog from @nextcloud/vue.
  • The spawnDialog helper method was removed, instead use the function provided by @nextcloud/vue
- import { spawnDialog } from '@nextcloud/dialogs'
+ import { spawnDialog } from '@nextcloud/vue/functions/dialog'

Added

  • feat: add guest auth prompt #1760 (backportbot)
  • feat(ConflictPicker): move conflict picker dialog from @nextcloud/upload #1971 (susnux)
  • feat(dialogs): allow to quickly show a dialog #1986 (susnux)

Fixed

  • fix(FilePickerBuilder): correctly return array / plain value depending on multiselect #1775 (susnux)
  • fix: display guest name validity #1836 (skjnldsv)

... (truncated)

Commits
  • b040333 Merge pull request #2031 from nextcloud-libraries/chore/v7.0.1
  • 2d0858b chore: prepare v7.0.1
  • 059acd5 Merge pull request #2029 from nextcloud-libraries/fix/showConfirmation
  • 7ca4d25 Merge pull request #2030 from nextcloud-libraries/translations_441be4f7621043...
  • f28361e Translate l10n/messages.pot in da
  • ad1310c fix: export showConfirmation method
  • 9f0ed61 Merge pull request #2014 from nextcloud-libraries/dependabot/npm_and_yarn/hap...
  • f372483 Merge pull request #2023 from nextcloud-libraries/dependabot/npm_and_yarn/mai...
  • 30d83f5 chore(deps): bump @​nextcloud/browser-storage from 0.4.0 to 0.5.0
  • f9630fa chore(deps-dev): bump happy-dom from 19.0.2 to 20.0.0
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
@nextcloud/dialogs [>= 7.a, < 8]

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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore 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)

@dependabot dependabot Bot added 3. to review Waiting for reviews dependencies Pull requests that update a dependency file labels Oct 16, 2025
Bumps [@nextcloud/vue](https://github.com/nextcloud-libraries/nextcloud-vue) and [@nextcloud/dialogs](https://github.com/nextcloud-libraries/nextcloud-dialogs). These dependencies needed to be updated together.

Updates `@nextcloud/vue` from 8.32.0 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.32.0...v9.0.1)

Updates `@nextcloud/dialogs` from 6.3.2 to 7.0.1
- [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.2...v7.0.1)

---
updated-dependencies:
- dependency-name: "@nextcloud/vue"
  dependency-version: 9.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: "@nextcloud/dialogs"
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/main/multi-8b7584c166 branch from 6a6a3ee to 573ff1b Compare October 16, 2025 11:44
@Chartman123
Copy link
Copy Markdown
Collaborator

@dependabot ignore this major version

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Oct 16, 2025

This option is only available on single-dependency pull requests, as the versions in multi-dependency pull requests may differ.

If you'd like to ignore all updates for these dependencies just reply @dependabot ignore these dependencies.

@Chartman123
Copy link
Copy Markdown
Collaborator

Vue update will be made manually

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Oct 16, 2025

OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/main/multi-8b7584c166 branch October 16, 2025 12:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

3. to review Waiting for reviews dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant