Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update nextcloud (master) #2717

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nextcloud/cypress ^1.0.0-beta.12 -> ^1.0.0-beta.13 age adoption passing confidence
@nextcloud/eslint-config ^8.4.1 -> ^8.4.2 age adoption passing confidence
@nextcloud/files ^3.10.1 -> ^3.10.2 age adoption passing confidence
@nextcloud/l10n ^3.1.0 -> ^3.2.0 age adoption passing confidence
@nextcloud/vite-config ^1.5.0 -> ^1.5.2 age adoption passing confidence
@nextcloud/vue ^8.22.0 -> ^8.23.1 age adoption passing confidence

Release Notes

nextcloud/nextcloud-cypress (@​nextcloud/cypress)

v1.0.0-beta.13

Compare Source

What's Changed

  • feat(docker): addUser command (3a541ee)
  • feat(docker): allow string command in runExec and runOcc (39073b3)
  • feat(docker): commands with optional args as options (f9c4a98)
  • feat(docker): export runExec, add runOcc, getSystemConfig, setSystemConfig (c91ff54)
  • fix: Auto expose port on macOS to make it accessible on the host (48f0e31)
  • fix(docker): try to use existing image if pulling fails (614a152)
  • test(cy): cy.runCommand and cy.runOccCommand (fed018f)

New Contributors

Full Changelog: nextcloud-libraries/nextcloud-cypress@v1.0.0-beta.12...v1.0.0-beta.13

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

v8.4.2

Compare Source

v8.4.2 (2025-02-16)

Fixed
Changed
nextcloud-libraries/nextcloud-files (@​nextcloud/files)

v3.10.2

Compare Source

Fixed
Changed
  • Updated development dependencies
  • chore(deps): Bump @nextcloud/sharing to 0.2.4
  • ci: Update workflows from organization #​1177 (susnux)
nextcloud-libraries/nextcloud-l10n (@​nextcloud/l10n)

v3.2.0

Compare Source

ℹ️ Notes

The GettextBuilder.detectLocale method is deprecated and will be removed in the next major version.
It is replaced with the detectLanguage method to make the method naming more consistent.

Added
  • feat(date): fallback to Intl #​831 (ShGKme)
  • feat(gettext): Add detectLanguage method and deprecate detectLocale #​850 (susnux)
  • feat: Overload translate function to either allow number or placeholder as third arg #​854 (susnux)
Fixed
Changed
  • refactor(gettext): Drop node-gettext dependency and use our translation logic #​851 (susnux)
  • license: Add SPDX header #​781 (AndyScherzinger)
  • chore: Add missing trailing comma in vite config #​852 (susnux)
  • docs: Clarify readme about Nextcloud provided and custom translations #​853 (susnux)
  • docs: improve return type of getFirstDay() #​784 (st3iny)
  • docs: replace missing exports plugin to also document internal types #​846 (susnux)
  • ci: Update from org #​795 (AndyScherzinger)
  • ci: Update workflows from organization #​847 (susnux)
  • chore(deps): Bump dompurify and @types/dompurify
  • chore(dev-deps): Update development dependencies
nextcloud/nextcloud-vite-config (@​nextcloud/vite-config)

v1.5.2

Compare Source

What's Changed

Full Changelog: nextcloud-libraries/nextcloud-vite-config@v1.5.1...v1.5.2

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

v8.23.1

Compare Source

Full Changelog

🐛 Fixed bugs
  • fix(l10n): fix build error after @nextcloud/l10n bump #​6521 (ShGKme)

v8.23.0

Compare Source

Full Changelog

📝 Notes
  • The individual import path of components, composables, directives, and functions was changed.
    The type of import is (e.g. components) is now lowercase and the dist will be omitted.
    For example to import the NcButton component the path has changed:

    // Old import
    import NcButton from '@​nextcloud/vue/dist/Components/NcButton.js'
    // New way to import
    import NcButton from '@​nextcloud/vue/components/NcButton'

    The old import paths are still valid, but deprecated and will be removed in version 9.

  • #default slot for leading icon is now deprecated in components NcInputField, NcTextField, NcPasswordField. Use #icon slot instead.

  • NcActionRadio is now expecting String|Number in v-model directive (to compare with passed value) instead of Boolean. Consider it for migration.

  • 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
    NcModal enableSwipe disableSwipe
    NcAppContent allowSwipeNavigation disabledSwipe
🚀 Enhancements
  • feat: Allow to import without dist #​6385 (susnux)
  • feat: Use boolean props with default value false #​6452 (susnux)
  • feat(Nc*Field): add #icon slot for forward compatibility with v9, #default slot is deprecated #​6399 (ShGKme)
  • fix(NcActionRadio): change modelValue to behave like NcCheckboxRadioSwitch #​6264 #​6470 (Antreesy)
🐛 Fixed bugs
  • fix(NcAction*): Fix RTL support for component #​6507 (Antreesy)
  • fix(NcActions): Remove on mousemove listener for auto focus elements #​6475 (susnux)
  • fix(NcActionCheckbox): Fix padding in RTL mode #​6354 (falghamdi125)
  • fix(NcAppNavigation + NcUserBubble + NcRichContenteditable): RTL support #​6455 (DorraJaouad)
  • fix(NcAvatar): title not shown when component used without menu #​6297 (Koc)
  • fix(NcAvatar): user status and interactivity toggle button Bidi support #​6407 (DorraJaouad)
  • fix(NcColorPicker): close popover on submit event #​6336 (Antreesy)
  • fix(NcCounterBubble): show original count in title when shortened #​6395 (ShGKme)
  • fix(NcDateTimePicker): selected and hover time is not readable #​6492 (ShGKme)
  • fix(NcDateTimePickerNative): do not set invalid value on clear event #​6387 (Antreesy)
  • fix(NcDateTimePickerNative): style alignment with other input components #​6454 (Antreesy)
  • fix(NcEmojiPicker): add arrow navigation #​6466 (ShGKme)
  • fix(NcEmojiPicker): adjust styles to correctly fit emojis #​6465 (ShGKme)
  • fix(NcListItem): Fix padding in RTL mode #​6359 (falghamdi125)
  • fix(NcModal): Enforce opaque backdrop if needed #​6434 (susnux)
  • fix(NcPopover): emit after-show after focus-trap init to correctly return focus #​6342 (ShGKme)
  • fix(NcPopover): blurry content on scaled page in Chromium #​6512 (ShGKme)
  • fix(NcRich*): style fixes and RTL support #​6474 (Antreesy)
  • fix(NcRichContenteditable): remove value linkify #​6372 (ShGKme)
  • fix(NcRichText): adjust conditions for highlight syntax #​6259 (Antreesy)
  • fix(NcRichText): extract un-escaping of text/code nodes with XML-like content #​6499 #​6501 (Antreesy)
  • fix(NcTeamResources): Do not make extraneous requests for resources #​6379 (Pytal)
Changed
  • chore(stylelint): csstools/use-logical #​6419 (ShGKme)
  • chore(stylelint): fix scripts to be unix-compatible #​6418 (ShGKme)
  • chore(docs): Do not override assets while building the styleguide #​6408 (susnux)
  • chore(docs): update documentation #​6460 (ShGKme)
  • 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 Feb 1, 2025
@renovate renovate bot requested a review from skjnldsv February 1, 2025 01:40
@renovate renovate bot changed the title chore(deps): update dependency @nextcloud/vite-config to ^1.5.1 (master) chore(deps): update nextcloud (master) Feb 4, 2025
@renovate renovate bot force-pushed the renovate/master-nextcloud branch from 3703131 to dff923a Compare February 4, 2025 15:01
@renovate renovate bot force-pushed the renovate/master-nextcloud branch from dff923a to 915bf19 Compare February 13, 2025 01:39
@renovate renovate bot changed the title chore(deps): update nextcloud (master) fix(deps): update nextcloud (master) Feb 13, 2025
@renovate renovate bot force-pushed the renovate/master-nextcloud branch from 915bf19 to 561f4ca Compare February 13, 2025 14:43
@renovate renovate bot force-pushed the renovate/master-nextcloud branch from 561f4ca to 4b1a974 Compare February 16, 2025 17:15
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.

0 participants