Skip to content

fix(deps): update dependency @nextcloud/vue to ^8.21.0#629

Open
garykim-dev-renovate[bot] wants to merge 1 commit intomasterfrom
renovate/nextcloud-vue-8.x
Open

fix(deps): update dependency @nextcloud/vue to ^8.21.0#629
garykim-dev-renovate[bot] wants to merge 1 commit intomasterfrom
renovate/nextcloud-vue-8.x

Conversation

@garykim-dev-renovate
Copy link
Contributor

@garykim-dev-renovate garykim-dev-renovate bot commented Jul 22, 2024

This PR contains the following updates:

Package Type Update Change
@nextcloud/vue dependencies minor ^8.14.0 -> ^8.21.0

Release Notes

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

v8.21.0

Compare Source

Full Changelog

🚀 Enhancements
  • feat(NcRichText): highlight code syntax if language provided #​6212 (Antreesy)
🐛 Fixed bugs
  • fix(NcInputField): correct position of trailing icon in RTL #​6202 (alsulami1)
  • fix(NcChip): wrong color-primary-text variable used #​6218 (skjnldsv)
  • fix: make sure model event in v-model happens first to avoid regression #​6234 (ShGKme)
  • fix(NcTextField): don't fire value-updating events twice #​6235 (ShGKme)
  • fix(NcRichContenteditable): support mentions of email/* guests #​6233 (Antreesy)
  • fix(NcAppContent): correct splitter color in dark mode when using split-horizontal mode #​6227 (wofferl)
  • fix(NcRichContenteditable): do not break adjacent user mentions #​6223 (Antreesy)
  • fix(NcRichContenteditable): fix pasting of the content to an empty field #​6241 (DorraJaouad)

v8.20.0

Compare Source

Full Changelog

📝 Notes

Now you can use v-model directive, :model-value prop, and @update:model-value (@update:modelValue) event in all data input components to have compatibility with v9 in the future.

<!-- Only v8 (Vue 2) --> <NcTextField :value.sync="username" /> <!-- Compatible with both v8 (Vue 2) and v9 (Vue 3) --> <NcTextField v-model="username" /> <!-- same as --> <NcTextField :model-value="username" @&#8203;update:model-value="username = $event" />

If you already use v-model with a custom writable computed on :value.sync components before, it might not work as expected anymore. Make sure to remove or adjust it before update.
See the full list in v9 breaking changes.

🚀 Enhancements
🐛 Fixed bugs
Changed
  • Updated workflows and dependencies
  • Updated translations

v8.19.0

Compare Source

Full Changelog

🚀 Enhancements
  • feat(NcModal): make dark header configurable #​6083 (mejo-)
  • feat(NcActions): Emit closed event only when the actions are fully closed #​6065 (susnux)
🐛 Fixed bugs
  • fix(NcAppNavigationItem): align utils with actions and other components #​6054 (GVodyanov)
  • fix(NcAvatar): add a fallback for missing CSS variable #​6090 (Antreesy)
  • fix(NcColorPicker): style advanced fields as NcInputField #​6097 (Antreesy)
Changed
  • Updated workflows and dependencies

v8.18.0

Compare Source

Full Changelog

🚀 Enhancements
  • feat(NcDialogButton): Allow to return false from callback to keep dialog open #​6005 (susnux)
  • feat(NcHeaderButton): Add a button-only alternative for the header menu #​6048 (susnux)
🐛 Fixed bugs
  • fix(NcActions): Pressing Escape should always close the actions #​6037 (susnux)
  • fix(NcListItem): make the max width in oneline mode apply only to the content name #​6039 (GVodyanov)
  • fix(NcHeaderMenu): Ensure trigger button has the same width as a wrapper #​6047 (susnux)
  • fix(NcCheckboxRadioSwitch): switch may have incorrect checked-like background #​6055 (Antreesy)
  • fix(NcEmojiPicker): adjust hover effects to the new design #​6056 (Antreesy)
Changed
  • Updated workflows and dependencies
  • Updated translations

v8.17.1

Compare Source

Full Changelog

🐛 Fixed bugs

v8.17.0

Compare Source

Full Changelog

🚀 Enhancements
  • feat(NcButton): Allow to specify target attribute for buttons with href #​5938 (mejo-)
  • feat(NcDialog): Allow to make the dialog a form #​5932 (susnux)
  • feat(NcListItem): allow to control the display of a three dot menu #​5980 (DorraJaouad)
  • feat(NcCounterBubble): add count prop for humanized count display #​5863 (ShGKme)
  • feat(useHotKey): add composable for keyboard shortcuts #​5899 (Antreesy)
🐛 Fixed bugs
Changed
  • chore(docs): specify more Nextcloud versions in styleguidist #​5930 (ShGKme)
  • refactor(NcModal): get rid of unneeded calc() #​5984 (ShGKme)
  • Updated translations

v8.16.0

Compare Source

Full Changelog

🚀 Enhancements
  • feat(NcNoteCard): Add text prop to pass the content of the note card #​5894 (susnux)
  • feat(NcPasswordField): Add as-text prop to remove autocomplete #​5896 (ShGKme)
  • feat(NcListItem): Provide additional slots for NcActions / extra actions customization #​5870 (Antreesy)
  • feat(NcUserBubble): Add RouterLink support #​5708 #​5917 (Antreesy)
🐛 Fixed bugs
Changed
  • Updated translations

v8.15.1

Compare Source

Full Changelog

🐛 Fixed bugs
Changed
  • fix(NcAppNavigation): update docs example with NcAppNavigationSearch component #​5857 (Antreesy)
  • Updated translations

v8.15.0

Compare Source

Full Changelog

🚀 Enhancements
  • feat(NcAppNavigation): Provide consistent in-app search #​5831 (susnux)
  • feat(NcRichText): Call public reference API when unauthenticated #​5800 (mejo-)
🐛 Fixed bugs
Other Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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
@garykim-dev-renovate garykim-dev-renovate bot requested a review from gary-kim July 22, 2024 17:00
@garykim-dev-renovate garykim-dev-renovate bot force-pushed the renovate/nextcloud-vue-8.x branch from fc9d5ed to 4560e16 Compare July 29, 2024 12:00
@garykim-dev-renovate garykim-dev-renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.15.0 fix(deps): update dependency @nextcloud/vue to ^8.15.1 Jul 29, 2024
@garykim-dev-renovate garykim-dev-renovate bot force-pushed the renovate/nextcloud-vue-8.x branch from 4560e16 to 21a7661 Compare August 5, 2024 14:01
@garykim-dev-renovate garykim-dev-renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.15.1 fix(deps): update dependency @nextcloud/vue to ^8.16.0 Aug 5, 2024
@garykim-dev-renovate garykim-dev-renovate bot force-pushed the renovate/nextcloud-vue-8.x branch 2 times, most recently from 58f6617 to 2f35da7 Compare August 21, 2024 13:01
@garykim-dev-renovate garykim-dev-renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.16.0 fix(deps): update dependency @nextcloud/vue to ^8.17.0 Aug 21, 2024
@garykim-dev-renovate garykim-dev-renovate bot force-pushed the renovate/nextcloud-vue-8.x branch from 2f35da7 to 8032db0 Compare August 30, 2024 20:01
@garykim-dev-renovate garykim-dev-renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.17.0 fix(deps): update dependency @nextcloud/vue to ^8.17.1 Aug 30, 2024
@garykim-dev-renovate garykim-dev-renovate bot force-pushed the renovate/nextcloud-vue-8.x branch 2 times, most recently from b3bc464 to 4583346 Compare September 12, 2024 09:01
@garykim-dev-renovate garykim-dev-renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.17.1 fix(deps): update dependency @nextcloud/vue to ^8.18.0 Sep 12, 2024
@garykim-dev-renovate garykim-dev-renovate bot force-pushed the renovate/nextcloud-vue-8.x branch from 4583346 to 05a978e Compare September 17, 2024 10:01
@garykim-dev-renovate garykim-dev-renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.18.0 fix(deps): update dependency @nextcloud/vue to ^8.19.0 Sep 17, 2024
@garykim-dev-renovate garykim-dev-renovate bot force-pushed the renovate/nextcloud-vue-8.x branch 2 times, most recently from 08fc295 to d1f620c Compare September 24, 2024 16:22
@garykim-dev-renovate garykim-dev-renovate bot force-pushed the renovate/nextcloud-vue-8.x branch 4 times, most recently from 2a5f096 to 23a685f Compare November 11, 2024 15:02
@garykim-dev-renovate garykim-dev-renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.19.0 fix(deps): update dependency @nextcloud/vue to ^8.20.0 Nov 11, 2024
@garykim-dev-renovate garykim-dev-renovate bot force-pushed the renovate/nextcloud-vue-8.x branch from 23a685f to 819b8df Compare November 21, 2024 17:01
@garykim-dev-renovate garykim-dev-renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.20.0 fix(deps): update dependency @nextcloud/vue to ^8.21.0 Nov 21, 2024
Signed-off-by: Gary Kim Bot <bot@garykim.dev>
@garykim-dev-renovate garykim-dev-renovate bot force-pushed the renovate/nextcloud-vue-8.x branch from 819b8df to 5e54821 Compare November 22, 2024 18:17
@garykim-dev-renovate
Copy link
Contributor Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

1 participant