Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps @nextcloud/vue and @nextcloud/dialogs. These dependencies needed to be updated together.
Updates @nextcloud/vue from 8.34.0 to 9.2.0

Release notes

Sourced from @​nextcloud/vue's releases.

v9.2.0

What's Changed

📝 Notes

  • NcAppSettingsSectionShortcuts has been renamed to NcAppSettingsShortcutsSection but still available by the previous name
  • NcAppSettingsDialog has started the process of migration to the new design. It may break the existing settings layout. Use layout prop to partially revert the change or migrate to use NcFormBox and NcFormGroup components in the settings sections.

🚀 Enhancements

🐛 Fixed bugs

Other Changes

Full Changelog: nextcloud-libraries/nextcloud-vue@v9.1.0...v9.2.0

v9.1.0

What's Changed

🚀 Enhancements

... (truncated)

Changelog

Sourced from @​nextcloud/vue's changelog.

v9.2.0 (2025-11-07)

Full Changelog

📝 Notes

  • NcAppSettingsSectionShortcuts has been renamed to NcAppSettingsShortcutsSection but still available by the previous name
  • NcAppSettingsDialog has started the process of migration to the new design. It may break the existing settings layout. Use layout prop to partially revert the change or migrate to use NcFormBox and NcFormGroup components in the settings sections.

🚀 Enhancements

  • feat: add NcFormGroup #7689 (ShGKme)
  • feat: add NcFormBox and adjust NcRadioGroup to NcFormbox and NcFormGroup #7690 (ShGKme)
  • feat(NcRadioGroup): deprecate labelHidden prop in favor of hideLabel #7771 (susnux)
  • feat: add NcFormBoxButton #7779 (ShGKme)
  • feat: add NcFormBoxSwitch #7781 (ShGKme)
  • feat: add NcFormBoxCopyButton #7787 (ShGKme)
  • feat(NcAppSettingsDialog): adjust design for new form elements, add section descriptions and optional switch to legacy design #7797 (ShGKme)
  • feat: NcAppSettingsSectionShortcuts -> NcAppSettingsShortcutsSection #7814 (ShGKme)

🐛 Fixed bugs

  • fix(NcRichText): start heading from h4 #7748 (ShGKme)
  • fix(NcFormGroup): remove margin when no label/description #7764 (ShGKme)
  • fix(NcFormGroup): decrease gap between label and content #7775 (ShGKme)
  • fix(NcFormBox*): user-select: none on Safari as well #7792 (ShGKme)
  • fix(NcRichContenteditable): keep previous cursor position on focus #7791 (Antreesy)
  • fix(NcHotkeyList): align with form labels #7807 (ShGKme)
  • fix(NcHotkeyList): align with the section #7811 (ShGKme)
  • fix(NcActions): improve performance by only computing popover maxHeight on demand #7808 (Antreesy)
  • fix(NcListItem): do not mount NcAction until necessary #7817 (ShGKme)

Other Changes

  • chore(docs): update docs link titles #7768 (ShGKme)
  • chore(docs): correct min supported Nextcloud version #7774 (ShGKme)
  • chore(docs): do not minimize docs and add examples code highlight #7784 (ShGKme)
  • chore(docs): optionally set docs server port via VUE_STYLEGUIDIST_PORT #7805 (ShGKme)
  • chore: bump node and npm dev versions #7785 (susnux)

v9.1.0 (2025-10-22)

Full Changelog

🚀 Enhancements

  • feat(NcChip): add error, success and warning variants #7652 (DorraJaouad)
  • feat(NcAppSettingsSection): add order prop, ensure intended order in navigation list #7636 (Antreesy)
  • feat: add NcAppSettingsSectionShortcuts, NcHotkeyList and NcHotkey #7633 (ShGKme)

🐛 Fixed bugs

  • fix(NcInputField): use empty string to fix label position #7630 (susnux)
  • chore: switch dependency for MD5 to ts-md5 #7623 (susnux)
  • fix(NcEmptyContent): use name as label #7634 (susnux)
  • fix(NcRadioGroupButton): scope expensive CSS selectors #7661 (Antreesy)
  • fix(NcAppContentDetailsToggle): Hide navigation toggle on mobile #7697 (mejo-)

... (truncated)

Commits
  • 3982691 Merge pull request #7823 from nextcloud-libraries/release/v9.2.0
  • 062db43 chore(release): v9.2.0
  • cfdf3cc chore(release): add v9.2.0 changelog
  • 6763866 chore(release): add v8.34.0 changelog
  • 82d7687 Merge pull request #7819 from nextcloud-libraries/translations_a29bf79827304d...
  • e07561e fix(l10n): Translate l10n/messages.pot in de
  • 8412065 fix(l10n): Translate l10n/messages.pot in en_GB
  • f0c9eaa Merge pull request #7817 from nextcloud-libraries/fix/NcListItem-render-actio...
  • 57dd7bc fix(NcListItem): do not mount NcActions until necessary
  • 58175c1 Merge pull request #7814 from nextcloud-libraries/feat/rename-NcAppSettingsSe...
  • Additional commits viewable in compare view

Updates @nextcloud/dialogs from 6.4.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

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 Nov 15, 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.34.0 to 9.2.0
- [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.34.0...v9.2.0)

Updates `@nextcloud/dialogs` from 6.4.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.4.1...v7.1.0)

---
updated-dependencies:
- dependency-name: "@nextcloud/vue"
  dependency-version: 9.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: "@nextcloud/dialogs"
  dependency-version: 7.1.0
  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/stable5.2/multi-3a083e3567 branch from ea8d59f to 7dbfe43 Compare November 15, 2025 04:40
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 15, 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/stable5.2/multi-3a083e3567 branch November 15, 2025 15:05
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.

2 participants