Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 2, 2025

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Confidence
@ownclouders/web-client (source) 12.0.4 -> 12.1.0 age confidence

Release Notes

owncloud/web (@​ownclouders/web-client)

v12.1.0

Compare Source

=======================================
The following sections list the changes in ownCloud web 12.1.0 relevant to
ownCloud admins and users.

Summary

  • Bugfix - Reset selection only when path changes: #​12768
  • Bugfix - Handle direct admin settings access: #​12780
  • Bugfix - Add clipboard permissions: #​12954
  • Bugfix - Set md-editor code block header to have z-index of 0: #​13075
  • Bugfix - Make progress bar settings reactive: #​13126
  • Bugfix - Handle HTML upload error: #​13127
  • Bugfix - Disallow U+202E character in folder name: #​13136
  • Bugfix - Use correct color for universal icon: #​13142
  • Enhancement - Add markdown to PDF export: #​12788
  • Enhancement - Use switch for full text search filter: #​12915
  • Enhancement - Add MFA capability: #​12925
  • Enhancement - Add universal access: #​12933
  • Enhancement - Add GeoGebra pinboard icon: #​12973
  • Enhancement - Replace board icon: #​12974
  • Enhancement - Add OcResponsiveImage component: #​13093
  • Enhancement - Add topbar mobile logo theme option: #​13093
  • Enhancement - Add mobile to query param: #​13110
  • Enhancement - Use OCS v2 API: #​13111
  • Enhancement - Drop remote.php from WebDAV paths: #​13113
  • Enhancement - Display custom attributes in share autocomplete: #​13144

Details

  • Bugfix - Reset selection only when path changes: #​12768

    We've changed the way we reset the selection when the route changes.

    Previously, we were resetting the selection when the route changed, but this was
    not working as expected. For example, when updating scrollTo route query, the
    selection was being unintentionally reset.

    Now, we're only resetting the selection when the path changes.

    #​10398
    #​12768

  • Bugfix - Handle direct admin settings access: #​12780

    Opening the admin settings directly by pasting the URL in the browser address
    bar or opening the app in a new tab now works correctly. The redirect was not
    correctly using the navigation guard leading to a mismatch in users permissions.
    We now redirect to the first available route and leave the route itself to
    handle the permissions navigation guard.

    #​12780

  • Bugfix - Add clipboard permissions: #​12954

    We've added clipboard permissions to the iframe in external apps to allow the
    external editor to read and write to the clipboard.

    #​12954

  • Bugfix - Set md-editor code block header to have z-index of 0: #​13075

    We have fixed an issue where the code block header in the markdown editor was
    cutting off other elements on the page. This has been resolved by setting the
    z-index of the code block header to 0.

    #​13075
    https://kiteworks.atlassian.net/browse/OCISDEV-307

  • Bugfix - Make progress bar settings reactive: #​13126

    We had a bug where the progress bar settings were not reactive. This caused
    labels to not be updated when the language changed. Adding reactivity to the
    progress bar settings fixes this issue.

    #​13126

  • Bugfix - Handle HTML upload error: #​13127

    We had a bug where the upload error was not handled correctly when the server
    returned an HTML error. This caused the upload to fail and the user to not be
    able to see details about the upload.

    #​13127

  • Bugfix - Disallow U+202E character in folder name: #​13136

    We have fixed an issue where the U+202E (Right-to-Left Override) character could
    be used in folder names, which could lead to confusion and potential security
    risks. This character is now disallowed in folder names to ensure clarity and
    prevent misuse.

    #​13136
    https://kiteworks.atlassian.net/browse/OCISDEV-124

  • Bugfix - Use correct color for universal icon: #​13142

    We've fixed the universal icon color to ensure it matches the chosen theme.

    #​13142
    https://kiteworks.atlassian.net/browse/OCISDEV-353

  • Enhancement - Add markdown to PDF export: #​12788

    Added a new file action which allows exporting a markdown files as a PDF. Users
    can export the markdown file as a PDF by clicking on the new action in the
    context menu inside the markdown editor. Users are able to choose a location and
    a name for the exported PDF file. The export is done in the background and the
    user is notified when it is ready.

    #​12788

  • Enhancement - Use switch for full text search filter: #​12915

    We've replaced the "Title only" search filter pill with a toggle between "Title
    Only" and "Full Text Search". This change should improve the user experience as
    it's easier to understand the toggle.

    #​12915

  • Enhancement - Add MFA capability: #​12925

    We've added a capability to check if MFA is enabled. If the capability is
    enabled, we will require MFA when accessing the admin settings page.

    #​12925

  • Enhancement - Add universal access: #​12933

    We've added a new dropdown menu to the top bar and a new link to the user menu
    that allows users to access the accessibility options. This change is necessary
    for accessibility compliance. Both dropdown menu and user menu link are only
    shown if the theme provides the necessary URLs.

    To set the URLs, you need to add the following to your theme:

    {
      "common": {
        "urls": {
          "universalAccessEasyLanguage": "<url>",
          "universalAccessSignLanguage": "<url>",
          "accessibilityStatement": "<url>"
        }
      },
      "clients": {
        "web": {
          "defaults": {
            "icons": {
              "universalAccess": "<url>",
              "universalAccessEasyLanguage": "<url>",
              "universalAccessSignLanguage": "<url>"
            }
          }
        }
      }
    }
    

    #​12933

  • Enhancement - Add GeoGebra pinboard icon: #​12973

    We've added a new icon for GeoGebra pinboards.

    #​12973

  • Enhancement - Replace board icon: #​12974

    We've replaced the GeoGebra board icon with a new one. The new icon no longer
    includes the "beta" badge.

    #​12974

  • Enhancement - Add OcResponsiveImage component: #​13093

    We've added a new component to display an image which will change its source
    based on the viewport width.

    #​13093

  • Enhancement - Add topbar mobile logo theme option: #​13093

    We've added a new theme option called logo.topbarSm to set a different logo
    for the topbar on mobile devices.

    #​13093

  • Enhancement - Add mobile to query param: #​13110

    In order to enable ONLYOFFICE Mobile Web View, we have added the mobile query
    parameter to the document editor URL. This allows users to access a
    mobile-optimized version of the document editor when accessing it from mobile
    devices.

    #​13110
    https://kiteworks.atlassian.net/browse/OCISDEV-305

  • Enhancement - Use OCS v2 API: #​13111

    We have updated the OCS API to version 2. This is not a breaking change because
    oCIS uses one implementation for both versions.

    #​13111

  • Enhancement - Drop remote.php from WebDAV paths: #​13113

    We have dropped the remote.php prefix from WebDAV paths. This is not a
    breaking change because oCIS strips this string from the path and it had been
    done in the past only to support ownCloud 10.

    #​13113

  • Enhancement - Display custom attributes in share autocomplete: #​13144

    When sharing a resource, we're now displaying custom attributes in the
    autocomplete. Previously, we were only displaying the user's email address. What
    attributes are displayed depends on the server configuration.

    #​13144


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

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

@mmattel mmattel requested review from LukasHirt and mzner October 2, 2025 12:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants