6.6.0
Table of Contents
Changes in 6.6.0
Summary
- Bugfix - Fix health and ready endpoints: #10163
- Bugfix - Always treat LDAP attribute names case-insensitively: #10204
- Bugfix - Fix delete share panic: #10219
- Bugfix - Continue listing shares on error: #10243
- Bugfix - Avoid re-creating thumbnails: #10251
- Bugfix - Kept historical resource naming in activity: #10266
- Bugfix - Fix panic when sharing with groups: #10279
- Bugfix - Thumbnail request limit: #10280
- Bugfix - Forbid the ocm space sharing: #10287
- Bugfix - Use secure config defaults for OCM: #10307
- Bugfix - Graph service now supports
OCIS_LDAP_USER_SCHEMA_DISPLAYNAME
env var: #10257 - Enhancement - Add OCM wellknown configuration: #9815
- Enhancement - Load IDP logo from theme: #10274
- Enhancement - WebOffice Templates: #10276
- Enhancement - Remove Deprecations: #10305
- Enhancement - Allow to use libvips for generating thumbnails: #10310
- Enhancement - Bump various dependencies: #10352
- Enhancement - Update web to v11.0.0: #10357
- Enhancement - Bump reva to 2.26.0: #10364
Details
-
Bugfix - Fix health and ready endpoints: #10163
We added new checks to the
/readyz
and/healthz
endpoints to ensure that the
services are ready and healthy. This change ensures that the endpoints return
the correct status codes, which is needed to stabilize the k8s deployments.#10316
#10281
#10163
#10301
#10302
#10303
#10308
#10323
#10163
#10333 -
Bugfix - Always treat LDAP attribute names case-insensitively: #10204
We fixes a bug where some LDAP attributes (e.g. owncloudUUID) were not treated
case-insensitively. -
Bugfix - Fix delete share panic: #10219
Fixes a panic when deleting an ocm share
-
Bugfix - Continue listing shares on error: #10243
We now continue listing received shares when one of the shares cannot be statted
or converted to a driveItem. -
Bugfix - Avoid re-creating thumbnails: #10251
We fixed a bug that caused the system to re-create thumbnails for images, even
if a thumbnail already existed in the cache. -
Bugfix - Graph service now supports
OCIS_LDAP_USER_SCHEMA_DISPLAYNAME
env var: #10257
To align with the other services the graph service now supports the
OCIS_LDAP_USER_SCHEMA_DISPLAYNAME
environment variable to configure the LDAP
attribute that is used for display name attribute of users.
LDAP_USER_SCHEMA_DISPLAY_NAME
is now deprecated and will be removed in a
future release.
#10257 -
Bugfix - Kept historical resource naming in activity: #10266
Kept historical resource naming after renaming in activity for shares and public
links. -
Bugfix - Fix panic when sharing with groups: #10279
We fixed a bug which caused a panic when sharing with groups, this only happened
under a heavy load. Besides the bugfix, we also reduced the number of share auto
accept log messages to avoid flooding the logs. -
Bugfix - Thumbnail request limit: #10280
The
THUMBNAILS_MAX_CONCURRENT_REQUESTS
setting was not working correctly.
Previously it was just limiting the number of concurrent thumbnail downloads.
Now the limit is applied to the number thumbnail generations requests.
Additionally the webdav service is now returning a "Retry-After" header when it
is hitting the ratelimit of the thumbnail service. -
Bugfix - Forbid the ocm space sharing: #10287
We forbid adding the federated users as members of the space via items invite.
-
Bugfix - Use secure config defaults for OCM: #10307
-
Enhancement - Add OCM wellknown configuration: #9815
We now configure the
wellknown
service for OCM. -
Enhancement - Load IDP logo from theme: #10274
We now load the IDP logo from the theme file.
-
Enhancement - WebOffice Templates: #10276
We are now able to use templates for WebOffice and use them as a starting point
for new documents.We are supporting the following mime types:
OnlyOffice
-
MimeType:
application/vnd.ms-word.template.macroenabled.12
TargetExtension:docx
-
MimeType:
application/vnd.oasis.opendocument.text-template
TargetExtension:docx
-
MimeType:
application/vnd.openxmlformats-officedocument.wordprocessingml.template
TargetExtension:docx
-
MimeType:
application/vnd.oasis.opendocument.spreadsheet-template
TargetExtension:xlsx
-
MimeType:
application/vnd.ms-excel.template.macroenabled.12
TargetExtension:xlsx
-
MimeType:
application/vnd.openxmlformats-officedocument.spreadsheetml.template
TargetExtension:xlsx
-
MimeType:
application/vnd.oasis.opendocument.presentation-template
TargetExtension:pptx
-
MimeType:
application/vnd.ms-powerpoint.template.macroenabled.12
TargetExtension:pptx
-
MimeType:
application/vnd.openxmlformats-officedocument.presentationml.template
TargetExtension:pptx
Collabora
-
MimeType:
application/vnd.oasis.opendocument.spreadsheet-template
TargetExtension:ods
-
MimeType:
application/vnd.oasis.opendocument.text-template
TargetExtension:odt
-
MimeType:
application/vnd.oasis.opendocument.presentation-template
TargetExtension:odp
-
-
Enhancement - Remove Deprecations: #10305
Remove deprecated stores/caches/registries and envvars from the codebase.
-
Enhancement - Allow to use libvips for generating thumbnails: #10310
To improve performance (and to be able to support a wider range of images
formats in the future) the thumbnails service is now able to utilize libvips
(https://www.libvips.org/) for generating thumbnails. Enabling the use of
libvips is implemented as a build-time option which is currently disabled for
the "bare-metal" build of the ocis binary and enabled for the docker image
builds. -
Enhancement - Bump various dependencies: #10352
-
Enhancement - Update web to v11.0.0: #10357
Tags: web
We updated ownCloud Web to v11.0.0. Please refer to the changelog (linked) for
details on the web release.- Change owncloud/web#11709:
Remove importer as default app - Enhancement
owncloud/web#11668: Allow setting
view mode for apps via query - Enhancement
owncloud/web#11731: File size
warning in editors - Enhancement
owncloud/web#11737: Add not found
page - Enhancement
owncloud/web#11750: Create
documents from templates - Bugfix
owncloud/web#11604: User filters
after page reload - Bugfix
owncloud/web#11645: Hide copy
permanent link action on public pages - Bugfix
owncloud/web#11677: Missing tags
on "Shared with me" page - Bugfix
owncloud/web#11678: Undefined
request IDs - Bugfix
owncloud/web#11688: Deleting
federated connections - Bugfix
owncloud/web#11706: Escape HTML
characters in activities and notification view - Bugfix
owncloud/web#11707: Prevent not
allowed characters in shortcut name - Bugfix
owncloud/web#11712: Details panel
wrong WebDAV URL of received shares - Bugfix
owncloud/web#11725: Accessing
disabled password-protected space does not show error - Bugfix
owncloud/web#11726: Application
menu not operable in Safari browser - Bugfix
owncloud/web#11758: Navigating
into folders that have been shared externally - Bugfix
owncloud/web#11795: Sharing label
for locked files
#10357
https://github.com/owncloud/web/releases/tag/v11.0.0 - Change owncloud/web#11709:
-
Enhancement - Bump reva to 2.26.0: #10364
- Bugfix cs3org/reva#4880: Kept historical resource naming in activity
- Bugfix cs3org/reva#4874: Fix rename activity
- Bugfix cs3org/reva#4881: Log levels
- Bugfix cs3org/reva#4884: Fix OCM upload crush
- Bugfix cs3org/reva#4872: Return 409 conflict when a file was already created
- Bugfix cs3org/reva#4887: Fix ShareCache concurrency panic
- Bugfix cs3org/reva#4876: Fix share jail mountpoint parent id
- Bugfix cs3org/reva#4879: Fix trash-bin propfind panic
- Bugfix cs3org/reva#4888: Fix upload session bugs
- Bugfix cs3org/reva#4560: Always select next before making CS3 calls for propfinds
- Enhancement cs3org/reva#4893: Bump dependencies and go to 1.22.8
- Enhancement cs3org/reva#4890: Bump golangci-lint to 1.61.0
- Enhancement cs3org/reva#4886: Add new Mimetype ggp
- Enhancement cs3org/reva#4809: Implement OCM well-known endpoint
- Enhancement cs3org/reva#4889: Improve posixfs stability and performance
- Enhancement cs3org/reva#4882: Indicate template conversion capabilities on apps