Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 2, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nextcloud/vue ^8.23.1 -> ^8.27.0 age adoption passing confidence

Release Notes

nextcloud-libraries/nextcloud-vue (@​nextcloud/vue)

v8.27.0

Compare Source

What's Changed

🚀 Enhancements
🐛 Fixed bugs
Other Changes

Full Changelog: nextcloud-libraries/nextcloud-vue@v8.26.1...v8.27.0

v8.26.1

Compare Source

What's Changed

🐛 Fixed bugs
Other Changes

Full Changelog: nextcloud-libraries/nextcloud-vue@v8.26.0...v8.26.1

v8.26.0

Compare Source

📝 Notes
NcAppSidebar

The info slot was introduced to allow customization of sidebar header content.
This will replace original main name of the sidebar and header, subname, secondary-actions, tertiary-actions slots.
It is recommended to use slot together with NcAppSidebarHeader component to support accessibility features.

NcPopover

The focusTrap property is now deprecated and will be replaced with noFocusTrap,
the reason behind this is to only have boolean properties with default value of false allowing shortcut props.

🚀 Enhancements
  • [stable8] feat(NcAppSidebar): add info slot #​6843
  • [stable8] feat(NcPopover): add new noFocusTrap prop #​6808
🐛 Fixed bugs
  • [stable8] fix(NcRichText): references prop type #​6800
  • [stable8] fix(NcAppContent): don't remove list when showing details in mobile or no-split mode #​6261 (wofferl)
  • [stable8] fix(NcMentionBubble): position selectable text aligned with the component #​6837
  • [stable8] fix(NcAvatar): do not load avatar from server, if iconClass was provided #​6836
  • [stable8] fix(NcSelectUsers): add missing search event #​6838

v8.25.1

Compare Source

Full Changelog

🐛 Fixed bugs
  • fix(NcPopover): regression with incorrect size on RTL #​6797

v8.25.0

Compare Source

Full Changelog

📝 Notes
NcDateTimePicker

In version 8 the NcDateTimePicker was a transparent wrapper around the vue2 datepicker library.
With version 9 and beyond we will no longer transparently wrap external libraries,
thus only documented props, events, and slots of Nextcloud components are guaranteed to work.
This will allow use to change the underlying library while keeping a stable API for the component users.

For this we deprecated the range property in favor of three new types for the NcDateTimePicker.

  • date-range
  • time-range
  • datetime-range

Also the formatter property is deprecated, instead you can now provide a function to the format property,
which will receive a Date object and should return the formatted date as a string.

Tooltip directive

The Tooltip directive has been deprecated and will be removed in the future.
In most cases you want to use the native browser tooltips instead by using the native HTML title attribute.
In some rare cases where you really need a formatted tooltip NcPopover could be used.

 <NcButton
-    v-tooltip="title"
+    :title="title"

v8.24.0

Compare Source

📝 Notes
Boolean properties

Some boolean props have been deprecated in favor of alternatives with default value false.
This allows to use shorthand notation on the template, as a prop with a default value of false
will be set to true if it is set (without any value) in the template,
similar to native HTML boolean attributes.
Following components have been adjusted:

Component Deprecated prop New alternative
NcAvatar showUserStatus hideStatus
NcAvatar showUserStatusCompact verboseStatus
NcModal canClose noClose
NcDialog canClose noClose
NcButton color variant and native type

NcButton (and NcDialogButton) now provides a variant prop to set the color variant to use (e.g. 'primary') and allows to set the native button type using the type prop.
The legacy behavior, type for the color variant and nativeType for the button type, still works but will be removed in the next major version.

To make a later migration to version 9 easier you can already migrate your NcButton usage like this:

<!-- Before: -->
<NcButton type="primary" native-type="submit">Submit</NcButton>
<!-- After: -->
<NcButton variant="primary" type="submit">Submit</NcButton>
🚀 Enhancements
  • feat(NcActions): add opened and closed events to handle closing/opening end #​6683 (skjnldsv)
  • feat(NcBlurHash): Add a blur hash component #​6396 (susnux)
  • feat(NcDialog): Allow to catch reset event #​6006 (susnux)
  • feat: Add consistent variant prop for design variant of buttons / chips #​6472 (susnux)
  • feat(NcAppContent): Allow to set the page title #​5269 (susnux)
  • feat: add boolean prop alternatives with false as default value #​6656 (susnux)
🐛 Fixed bugs
  • fix(NcPopover): correctly wait for animation end in after-show/after-hide events #​6683 (skjnldsv)
  • fix(NcEmojiPicker): not focusable when used in another focus trap #​6558 (ShGKme)
  • fix(RTL): initialize language direction check once in utils #​6523 (Antreesy)
  • fix(NcColorPicker): remove unused invalid styles #​6565 (susnux)
  • fix(NcAppSidebar, NcHeaderMenu): correctly focus trigger/close button when no focusable elements inside #​6636 (Antreesy)
  • fix(NcInputField): Only show error state border if user interacted with the input #​6640 (susnux)
  • fix(NcEmojiPicker): return focus steals actual focus #​6652 (ShGKme)
Other Changes
  • refactor(NcCheckboxRadioSwitch): Do not use HTML attribute name id as property name #​5516 (susnux)
  • docs: adjust version number for variant props #​6623 (susnux)
  • Updated workflows and dependencies
  • Updated translations

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested review from max-nextcloud and mejo- as code owners April 2, 2025 14:58
@renovate renovate bot added the dependencies Pull requests that update a dependency file label Apr 2, 2025
@github-actions github-actions bot enabled auto-merge April 2, 2025 14:58
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.24.0 (main) fix(deps): update dependency @nextcloud/vue to ^8.25.0 (main) Apr 17, 2025
@renovate renovate bot force-pushed the renovate/main-nextcloud-vue-8.x branch from fba97e4 to b64b8f9 Compare April 17, 2025 00:24
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.25.0 (main) fix(deps): update dependency @nextcloud/vue to ^8.25.1 (main) Apr 17, 2025
@renovate renovate bot force-pushed the renovate/main-nextcloud-vue-8.x branch from b64b8f9 to 3595aa7 Compare April 17, 2025 12:50
@max-nextcloud max-nextcloud force-pushed the renovate/main-nextcloud-vue-8.x branch from 3595aa7 to 72c7d38 Compare April 19, 2025 09:50
@renovate renovate bot force-pushed the renovate/main-nextcloud-vue-8.x branch from 72c7d38 to b2a2ea6 Compare April 25, 2025 14:58
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.25.1 (main) fix(deps): update dependency @nextcloud/vue to ^8.26.0 (main) Apr 25, 2025
@mejo- mejo- force-pushed the renovate/main-nextcloud-vue-8.x branch from b2a2ea6 to b71e437 Compare May 6, 2025 13:37
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.26.0 (main) fix(deps): update dependency @nextcloud/vue to ^8.26.1 (main) May 7, 2025
@renovate renovate bot force-pushed the renovate/main-nextcloud-vue-8.x branch from b71e437 to fcfeb42 Compare May 7, 2025 17:52
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.26.1 (main) fix(deps): update dependency @nextcloud/vue to ^8.27.0 (main) May 28, 2025
@renovate renovate bot force-pushed the renovate/main-nextcloud-vue-8.x branch from fcfeb42 to bff147f Compare May 28, 2025 20:58
@emberfiend emberfiend force-pushed the renovate/main-nextcloud-vue-8.x branch from bff147f to 4e1022b Compare June 12, 2025 14:17
@renovate
Copy link
Contributor Author

renovate bot commented Jun 12, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@github-actions github-actions bot merged commit c59e61d into main Jun 12, 2025
62 of 64 checks passed
@github-actions github-actions bot deleted the renovate/main-nextcloud-vue-8.x branch June 12, 2025 14:34
@juliusknorr
Copy link
Member

Mind to also cherry pick the changes to the other automated PRs of @nextcloud/vue ?

@emberfiend
Copy link
Contributor

Will do :)

@mejo-
Copy link
Member

mejo- commented Jun 13, 2025

Nice, thanks for tackling this @emberfiend ❤️

@juliusknorr
Copy link
Member

Causing node-test to fail, but @emberfiend is looking into it :)

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants