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 12:46
@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 12:46
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.24.0 (stable31) fix(deps): update dependency @nextcloud/vue to ^8.25.0 (stable31) Apr 17, 2025
@renovate renovate bot force-pushed the renovate/stable31-nextcloud-vue-8.x branch from c588680 to 5e69f75 Compare April 17, 2025 00:25
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.25.0 (stable31) fix(deps): update dependency @nextcloud/vue to ^8.25.1 (stable31) Apr 17, 2025
@renovate renovate bot force-pushed the renovate/stable31-nextcloud-vue-8.x branch from 5e69f75 to ff90959 Compare April 17, 2025 12:50
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.25.1 (stable31) fix(deps): update dependency @nextcloud/vue to ^8.26.0 (stable31) Apr 25, 2025
@renovate renovate bot force-pushed the renovate/stable31-nextcloud-vue-8.x branch from ff90959 to cdfa6fa Compare April 25, 2025 14:59
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.26.0 (stable31) fix(deps): update dependency @nextcloud/vue to ^8.26.1 (stable31) May 7, 2025
@renovate renovate bot force-pushed the renovate/stable31-nextcloud-vue-8.x branch from cdfa6fa to 7757b7f Compare May 7, 2025 17:52
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.26.1 (stable31) fix(deps): update dependency @nextcloud/vue to ^8.27.0 (stable31) May 28, 2025
@renovate renovate bot force-pushed the renovate/stable31-nextcloud-vue-8.x branch from 7757b7f to 4dca45b Compare May 28, 2025 20:59
@emberfiend emberfiend force-pushed the renovate/stable31-nextcloud-vue-8.x branch from 4dca45b to f899661 Compare June 13, 2025 06:05
@renovate
Copy link
Contributor Author

renovate bot commented Jun 13, 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.

@juliusknorr juliusknorr force-pushed the renovate/stable31-nextcloud-vue-8.x branch from f899661 to f4dc379 Compare June 13, 2025 08:59
…to fully justified @nc/vue imports

Signed-off-by: Andrew Backhouse <[email protected]>
@emberfiend emberfiend force-pushed the renovate/stable31-nextcloud-vue-8.x branch from f4dc379 to 079f943 Compare June 13, 2025 09:25
@codecov
Copy link

codecov bot commented Jun 13, 2025

Codecov Report

Attention: Patch coverage is 96.66667% with 2 lines in your changes missing coverage. Please review.

Project coverage is 58.74%. Comparing base (25d2657) to head (079f943).
Report is 2 commits behind head on stable31.

Files with missing lines Patch % Lines
src/components/Editor/EditorOutline.vue 0.00% 1 Missing ⚠️
src/components/Menu/ActionListItem.vue 0.00% 1 Missing ⚠️
Additional details and impacted files
@@             Coverage Diff              @@
##           stable31    #7057      +/-   ##
============================================
+ Coverage     52.18%   58.74%   +6.55%     
============================================
  Files           289      288       -1     
  Lines         41047    36104    -4943     
  Branches        837      838       +1     
============================================
- Hits          21420    21208     -212     
+ Misses        19510    14778    -4732     
- Partials        117      118       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions github-actions bot merged commit 7be8ec3 into stable31 Jun 13, 2025
64 checks passed
@github-actions github-actions bot deleted the renovate/stable31-nextcloud-vue-8.x branch June 13, 2025 09:35
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.

2 participants