Skip to content

Chore(deps): Bump @nextcloud/vue from 9.0.0-rc.5 to 9.0.0-rc.6#1182

Merged
dependabot[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/nextcloud/vue-9.0.0-rc.6
Aug 21, 2025
Merged

Chore(deps): Bump @nextcloud/vue from 9.0.0-rc.5 to 9.0.0-rc.6#1182
dependabot[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/nextcloud/vue-9.0.0-rc.6

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Aug 21, 2025

Bumps @nextcloud/vue from 9.0.0-rc.5 to 9.0.0-rc.6.

Release notes

Sourced from @​nextcloud/vue's releases.

v9.0.0-rc.6

What's Changed

Notes

  • The package has dropped compatibility with Nextcloud before version 32. This mostly affects the visual appearance of components.
  • NcButton now does no longer has role="button" when used as a link (passing the href prop or a router link (to)). Instead, for accessibility and semantical correctness, has the link role.
  • NcColorPicker
    • The deprecated close event was removed in favor of the closed event, this was done for consistent event names.

🚀 Enhancements

  • fix(NcDateTimePicker): adjust input padding inline end #7208 (raimund-schluessler)
  • feat(NcColorPicker): add proper open-state handling #7212 (susnux)
  • feat(NcAppNavigationItem): add active as slot property to the "icon"-slot #7273 (susnux)
  • feat(NcButton): add border with a bottom shadow #7282 (susnux)

🐛 Fixed bugs

  • fix(NcAvatar): contacts menu is broken #7194 (ShGKme)
  • fix(NcActionInput): lazy load large children #7195 (ShGKme)
  • fix(NcButton): use correct type for to prop from VueRouter #7201 (susnux)
  • fix(NcButton): render with "to" and prevent wrong context crash #7100 (ShGKme)
  • fix(NcContent): flip skip action image in rtl mode #7202 (skjnldsv)
  • fix: remove asterisk from filename allowing checkout on Windows #7211 (ShGKme)
  • fix: correctly apply types so that type definitions are generated during build #7207 (susnux)
  • fix(NcColorPicker): use proper directional arrow icon for submit #7217 (susnux)
  • fix(NcBreadCrumb): correctly pass container for NcActions #7237 (susnux)
  • ci: use correct base branch when doing styling update on stable* #7256 (susnux)
  • fix(NcAvatar): orbital best-fit adaptive status icon #6004 (ShGKme)
  • fix(NcLoadingIcon): prevent height change from rotate transformation #7275 (Antreesy)
  • fix: 'Set operation on key "value" failed: target is readonly' #7239 (ShGKme)
  • fix(NcInputField, NcTextArea): remove placeholder on Nextcloud 32+ #7283 (susnux)
  • fix: auto-resolve focus trap stack, if was changed outside of controller #7277 (Antreesy)
  • fix: adjust color variable to work with Nextcloud 32+ #7311 (susnux)
  • fix(utils): legacy version detection #7313 (skjnldsv)

Other Changes

  • refactor(NcProgressBar): migrate component to Typescript and update docs #7138 (susnux)
  • fix: remove asterisk from filename #7215 (raimund-schluessler)
  • docs: clarify application containers and especially NcGuestContent #7160 (susnux)
  • refactor(NcAppNavigation): migrate component to Typescript and script-setup #7200 (susnux)
  • feat(NcUserStatusIcon): update status icons #7218 (Antreesy)
  • chore: work around bug in corepack blocking dependency updates #7213 (susnux)
  • fix(NcListItem): drop legacy check #7234 (Antreesy)
  • feat(NcHeaderMenu): apply alpha mask to icon slot #7242 (susnux)
  • docs: v9 will only provide visual compatibility with Nextcloud 32+ #7287 (susnux)
  • feat: change cog icon into the outline version #7299 (GretaD)
  • refactor(NcButton, NcNoteCard): use status text color for icons and text #7300 (susnux)
  • fix(utils): legacy check syntax adjust #7314 (skjnldsv)

... (truncated)

Changelog

Sourced from @​nextcloud/vue's changelog.

v9.0.0 (unreleased)

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 32. This mostly affects the visual appearance of components.

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:

  • Removed checked prop and update:checked event
    • NcActionCheckbox
    • NcActionRadio
    • NcCheckboxRadioSwitch
  • Removed value prop and update:value / input events:
  • The modelValue prop of NcActionRadio is expecting to have type string|number to be compared to value prop.
  • The value prop was renamed to modelValue, the update:value or input events were renamed to update:modelValue. This affects the following components:
    • NcActionInput
    • NcActionTextEditable
    • NcColorPicker
    • NcDateTimePicker

... (truncated)

Commits
  • 8cbab89 Merge pull request #7325 from nextcloud-libraries/chore/release-v9
  • 3255cbe chore: release v9.0.0-rc.6
  • f5535c5 chore: copy over v8 changelogs
  • 3d31878 Merge pull request #7324 from nextcloud-libraries/dependabot/npm_and_yarn/web...
  • 9d032bf Merge pull request #7323 from nextcloud-libraries/dependabot/npm_and_yarn/vue...
  • 0128dc7 chore(deps-dev): bump webpack from 5.101.2 to 5.101.3
  • 3f26118 chore(deps): bump @​vueuse/components from 13.6.0 to 13.7.0
  • e2a7900 Merge pull request #7319 from nextcloud-libraries/dependabot/npm_and_yarn/vit...
  • 0997b84 chore(deps-dev): bump vite from 7.1.2 to 7.1.3
  • 4f3fa90 Merge pull request #7314 from nextcloud-libraries/fix/legacy-version
  • Additional commits viewable in compare view

Dependabot compatibility score

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 will merge this PR once CI passes on it, as requested by @nextcloud-command.


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)

Bumps [@nextcloud/vue](https://github.com/nextcloud-libraries/nextcloud-vue) from 9.0.0-rc.5 to 9.0.0-rc.6.
- [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@v9.0.0-rc.5...v9.0.0-rc.6)

---
updated-dependencies:
- dependency-name: "@nextcloud/vue"
  dependency-version: 9.0.0-rc.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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 Aug 21, 2025
Copy link
Copy Markdown

@nextcloud-command nextcloud-command left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dependabot merge

@dependabot dependabot Bot merged commit ca8e845 into main Aug 21, 2025
38 checks passed
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/nextcloud/vue-9.0.0-rc.6 branch August 21, 2025 01:32
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