Skip to content

Commit

Permalink
Automated changelog update [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-davis committed Apr 27, 2022
1 parent 5fbfb78 commit a89aba3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Summary
-------

* Bugfix - Apply text selection range for new files: [#6756](https://github.com/owncloud/web/issues/6756)
* Bugfix - Do not load files from cache: [#6447](https://github.com/owncloud/web/pull/6447)
* Bugfix - Indicate guest shares: [#6813](https://github.com/owncloud/web/pull/6813)
* Bugfix - Password enforcement for public links: [#6323](https://github.com/owncloud/web/issues/6323)
* Bugfix - Rename is clickable on mobile: [#6767](https://github.com/owncloud/web/issues/6767)
Expand All @@ -33,6 +34,25 @@ Details
https://github.com/owncloud/web/issues/6756
https://github.com/owncloud/web/pull/6803

* Bugfix - Do not load files from cache: [#6447](https://github.com/owncloud/web/pull/6447)

When apps (i.e Drawio) tried to load a file, the browser caches the request. If the file was
modified somewhere else and the browser reads the file and its version from the cache, the
content shown to the user is outdated and saving any changes is impossible until the cache is
properly cleared. Thus we now ask the browser to never load files from its cache in apps.

In order to achieve that we send a `Cache-Control` header along with requests. Unfortunately
currently released ownCloud 10 versions do not accept that header in cross site origin setups.
If you run ownCloud Web on a different domain than your ownCloud 10 instance, then you might need
to add `Cache-Control` to the list of allowed CORS headers:

`occ config:system:set cors.allowed-headers --type json --value '["cache-control"]'`

Please make sure you don't override previous values!

https://github.com/owncloud/web/pull/6447
https://github.com/owncloud/core/pull/40024

* Bugfix - Indicate guest shares: [#6813](https://github.com/owncloud/web/pull/6813)

We've fixed a bug, where guest shares were not correctly indicated and shown as users shares at
Expand Down

0 comments on commit a89aba3

Please sign in to comment.