Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 17, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nextcloud/auth ^2.4.0 -> ^2.5.1 age adoption passing confidence
@nextcloud/cypress ^1.0.0-beta.14 -> ^1.0.0-beta.15 age adoption passing confidence
@nextcloud/stylelint-config ^3.0.1 -> ^3.1.0 age adoption passing confidence
@nextcloud/vite-config ^1.5.3 -> ^1.5.6 age adoption passing confidence
@nextcloud/vue ^8.23.1 -> ^8.26.1 age adoption passing confidence

Release Notes

nextcloud/nextcloud-auth (@​nextcloud/auth)

v2.5.1

Compare Source

Fixed

v2.5.0

Compare Source

Added
Fixed
Changed
nextcloud/nextcloud-cypress (@​nextcloud/cypress)

v1.0.0-beta.15

Compare Source

What's Changed

Full Changelog: nextcloud-libraries/nextcloud-e2e-test-server@v1.0.0-beta.14...v1.0.0-beta.15

nextcloud-libraries/stylelint-config (@​nextcloud/stylelint-config)

v3.1.0

Compare Source

Added
  • Add csstools/use-logical to warn about LTR-RTL properties #​121 (ShGKme)
Changed
nextcloud/nextcloud-vite-config (@​nextcloud/vite-config)

v1.5.6

Compare Source

🐛 Fixed bugs
  • fix(SPDX): correctly handle vite plugins

v1.5.5

Compare Source

What's Changed

Full Changelog: nextcloud-libraries/nextcloud-vite-config@v1.5.4...v1.5.5

v1.5.4

Compare Source

What's Changed

Full Changelog: nextcloud-libraries/nextcloud-vite-config@v1.5.3...v1.5.4

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

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
NcPopover

NcPopover now has its own properties and no longer directly exposes the internal library used (floating-vue).
It is still possible to use its properties, but this ability might be removed in the next version.
Thus we encourage you to only use the documented properties.

Also this component now supports a logical placement (start, end) which works with RTL design.
Moreover 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.

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 added 3. to review Waiting for reviews dependencies Pull requests that update a dependency file labels May 17, 2025
@renovate renovate bot requested a review from skjnldsv May 17, 2025 00:22
@renovate renovate bot added 3. to review Waiting for reviews dependencies Pull requests that update a dependency file labels May 17, 2025
@renovate renovate bot force-pushed the renovate/master-nextcloud branch from fdcb5b9 to 62ed000 Compare May 22, 2025 13:56
@skjnldsv
Copy link
Member

/compile

Signed-off-by: nextcloud-command <[email protected]>
@skjnldsv skjnldsv enabled auto-merge May 23, 2025 01:55
@skjnldsv skjnldsv merged commit 43bb565 into master May 23, 2025
31 checks passed
@skjnldsv skjnldsv deleted the renovate/master-nextcloud branch May 23, 2025 01:59
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.

3 participants