From 29d17e2f8dfa9f982ca3ff8abba4e95b3f28c24e Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Wed, 9 Mar 2022 11:26:42 +0100 Subject: [PATCH] Add changelog items for private link resolving --- changelog/unreleased/bugfix-resolve-private-link | 5 +++++ changelog/unreleased/enhancement-private-link-routing | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 changelog/unreleased/bugfix-resolve-private-link create mode 100644 changelog/unreleased/enhancement-private-link-routing diff --git a/changelog/unreleased/bugfix-resolve-private-link b/changelog/unreleased/bugfix-resolve-private-link new file mode 100644 index 00000000000..354867ca907 --- /dev/null +++ b/changelog/unreleased/bugfix-resolve-private-link @@ -0,0 +1,5 @@ +Bugfix: Resolve private links + +Private links didn't resolve correctly anymore because the internal file path handling was changed in our api client (owncloud-sdk). We've adjusted it accordingly so that private links now resolve correctly again. + +https://github.com/owncloud/web/pull/5654 diff --git a/changelog/unreleased/enhancement-private-link-routing b/changelog/unreleased/enhancement-private-link-routing new file mode 100644 index 00000000000..45c15e4cad4 --- /dev/null +++ b/changelog/unreleased/enhancement-private-link-routing @@ -0,0 +1,6 @@ +Enhancement: Resolve private links into folders instead of parent + +Private links always resolved into the parent folder of the linked file and visually highlighted the file or folder from the link. We've changed this behaviour to directly navigate into the folder in case the linked resource is a folder and only keep the previous behaviour for when the linked resource is a file. + +https://github.com/owncloud/web/issues/5533 +https://github.com/owncloud/web/pull/5654