release 1.16.0

This commit is contained in:
Willy Kloucek
2021-12-09 17:42:08 +01:00
parent a2681cb654
commit d071a30714
11 changed files with 0 additions and 0 deletions
@@ -1,8 +0,0 @@
Change: Rename `APP_PROVIDER_BASIC_*` environment variables
We've renamed the `APP_PROVIDER_BASIC_*` to `APP_PROVIDER_*` since
the `_BASIC_` part is a copy and paste error. Now all app provider
environment variables are consistently starting with `APP_PROVIDER_*`.
https://github.com/owncloud/ocis/pull/2812
https://github.com/owncloud/ocis/pull/2811
@@ -1,8 +0,0 @@
Bugfix: Fix claim selector based routing for basic auth
We've fixed the claim selector based routing for requests using basic auth.
Previously requests using basic auth have always been routed to the DefaultPolicy when using the claim selector despite the set cookie because the basic auth middleware fakes some OIDC claims.
Now the cookie is checked before routing to the DefaultPolicy and therefore set cookie will also be respected for requests using basic auth.
https://github.com/owncloud/ocis/pull/2779
@@ -1,10 +0,0 @@
Bugfix: Disallow creation of a group with empty name via the OCS api
We've fixed the behavior for group creation on the OCS api, where it was
possible to create a group with an empty name. This was is not possible
on oC10 and is therefore also forbidden on oCIS to keep compatibility.
This PR forbids the creation and also ensures the correct status code
for both OCS v1 and OCS v2 apis.
https://github.com/owncloud/ocis/pull/2825
https://github.com/owncloud/ocis/issues/2823
@@ -1,6 +0,0 @@
Bugfix: Fix using s3ng as the metadata storage backend
It is now possible to use s3ng as the metadata storage backend.
https://github.com/owncloud/ocis/pull/2807
https://github.com/owncloud/ocis/issues/2668
@@ -1,9 +0,0 @@
Bugfix: Use the CS3api up- and download workflow for the accounts service
We've fixed the interaction of the accounts service with the metadata storage
after bypassing the InitiateUpload and InitiateDownload have been removed
from various storage drivers. The accounts service now uses the proper
CS3apis workflow for up- and downloads.
https://github.com/owncloud/ocis/pull/2837
https://github.com/cs3org/reva/pull/2309
@@ -1,5 +0,0 @@
Enhancement: Cleanup ocis-pkg config
Certain values were of no use when configuring the ocis runtime.
https://github.com/owncloud/ocis/pull/2813
-7
View File
@@ -1,7 +0,0 @@
Change: Restructure Configuration Parsing
Tags: ocis
CLI flags are no longer needed for subcommands, as we rely solely on env variables and config files. This greatly simplifies configuration and deployment.
https://github.com/owncloud/ocis/pull/2708
@@ -1,5 +0,0 @@
Enhancement: Correct shutdown of services under runtime
Supervised goroutines now shut themselves down on context cancellation propagation.
https://github.com/owncloud/ocis/pull/2843
-24
View File
@@ -1,24 +0,0 @@
Enhancement: Update REVA to v1.17.0
Updated REVA to v1.17.0
This update includes:
* Fix [cs3org/reva#2305](https://github.com/cs3org/reva/pull/2305): Make sure /app/new takes `target` as absolute path
* Fix [cs3org/reva#2303](https://github.com/cs3org/reva/pull/2303): Fix content disposition header for public links files
* Fix [cs3org/reva#2316](https://github.com/cs3org/reva/pull/2316): Fix the share types in propfinds
* Fix [cs3org/reva#2803](https://github.com/cs3org/reva/pull/2803): Fix app provider for editor public links
* Fix [cs3org/reva#2298](https://github.com/cs3org/reva/pull/2298): Remove share refs from trashbin
* Fix [cs3org/reva#2309](https://github.com/cs3org/reva/pull/2309): Remove early finish for zero byte file uploads
* Fix [cs3org/reva#1941](https://github.com/cs3org/reva/pull/1941): Fix TUS uploads with transfer token only
* Chg [cs3org/reva#2210](https://github.com/cs3org/reva/pull/2210): Fix app provider new file creation and improved error codes
* Enh [cs3org/reva#2217](https://github.com/cs3org/reva/pull/2217): OIDC auth driver for ESCAPE IAM
* Enh [cs3org/reva#2256](https://github.com/cs3org/reva/pull/2256): Return user type in the response of the ocs GET user call
* Enh [cs3org/reva#2315](https://github.com/cs3org/reva/pull/2315): Add new attributes to public link propfinds
* Enh [cs3org/reva#2740](https://github.com/cs3org/reva/pull/2740): Implement space membership endpoints
* Enh [cs3org/reva#2252](https://github.com/cs3org/reva/pull/2252): Add the xattr sys.acl to SysACL (eosgrpc)
* Enh [cs3org/reva#2314](https://github.com/cs3org/reva/pull/2314): OIDC: fallback if IDP doesn't provide "preferred_username" claim
https://github.com/owncloud/ocis/pull/2849
https://github.com/owncloud/ocis/pull/2835
https://github.com/owncloud/ocis/pull/2837
-8
View File
@@ -1,8 +0,0 @@
Enhancement: Update ownCloud Web to v4.6.0
Tags: web
We updated ownCloud Web to v4.6.0. Please refer to the changelog (linked) for details on the web release.
https://github.com/owncloud/ocis/pull/2846
https://github.com/owncloud/web/releases/tag/v4.6.0
@@ -1,6 +0,0 @@
Change: OIDC: fallback if IDP doesn't provide "preferred_username" claim
Some IDPs don't add the "preferred_username" claim. Fallback to the "email"
claim in that case
https://github.com/owncloud/ocis/issues/2644