|
| 1 | +Changelog for reva 1.17.0 (2021-12-09) |
| 2 | +======================================= |
| 3 | + |
| 4 | +The following sections list the changes in reva 1.17.0 relevant to |
| 5 | +reva users. The changes are ordered by importance. |
| 6 | + |
| 7 | +Summary |
| 8 | +------- |
| 9 | + |
| 10 | + * Fix #2305: Make sure /app/new takes `target` as absolute path |
| 11 | + * Fix #2303: Fix content disposition header for public links files |
| 12 | + * Fix #2316: Fix the share types in propfinds |
| 13 | + * Fix #2803: Fix app provider for editor public links |
| 14 | + * Fix #2298: Remove share refs from trashbin |
| 15 | + * Fix #2309: Remove early finish for zero byte file uploads |
| 16 | + * Fix #1941: Fix TUS uploads with transfer token only |
| 17 | + * Chg #2210: Fix app provider new file creation and improved error codes |
| 18 | + * Enh #2217: OIDC auth driver for ESCAPE IAM |
| 19 | + * Enh #2256: Return user type in the response of the ocs GET user call |
| 20 | + * Enh #2315: Add new attributes to public link propfinds |
| 21 | + * Enh #2740: Implement space membership endpoints |
| 22 | + * Enh #2252: Add the xattr sys.acl to SysACL (eosgrpc) |
| 23 | + * Enh #2314: OIDC: fallback if IDP doesn't provide "preferred_username" claim |
| 24 | + |
| 25 | +Details |
| 26 | +------- |
| 27 | + |
| 28 | + * Bugfix #2305: Make sure /app/new takes `target` as absolute path |
| 29 | + |
| 30 | + A mini-PR to make the `target` parameter absolute (by prepending `/` if missing). |
| 31 | + |
| 32 | + https://github.com/cs3org/reva/pull/2305 |
| 33 | + |
| 34 | + * Bugfix #2303: Fix content disposition header for public links files |
| 35 | + |
| 36 | + https://github.com/cs3org/reva/pull/2303 |
| 37 | + https://github.com/cs3org/reva/pull/2297 |
| 38 | + https://github.com/cs3org/reva/pull/2332 |
| 39 | + https://github.com/cs3org/reva/pull/2346 |
| 40 | + |
| 41 | + * Bugfix #2316: Fix the share types in propfinds |
| 42 | + |
| 43 | + The share types for public links were not correctly added to propfinds. |
| 44 | + |
| 45 | + https://github.com/cs3org/reva/pull/2316 |
| 46 | + |
| 47 | + * Bugfix #2803: Fix app provider for editor public links |
| 48 | + |
| 49 | + Fixed opening the app provider in public links with the editor permission. The app provider |
| 50 | + failed to open the file in read write mode. |
| 51 | + |
| 52 | + https://github.com/owncloud/ocis/issues/2803 |
| 53 | + https://github.com/cs3org/reva/pull/2310 |
| 54 | + |
| 55 | + * Bugfix #2298: Remove share refs from trashbin |
| 56 | + |
| 57 | + https://github.com/cs3org/reva/pull/2298 |
| 58 | + |
| 59 | + * Bugfix #2309: Remove early finish for zero byte file uploads |
| 60 | + |
| 61 | + We've fixed the upload of zero byte files by removing the early upload finishing mechanism. |
| 62 | + |
| 63 | + https://github.com/cs3org/reva/issues/2309 |
| 64 | + https://github.com/owncloud/ocis/issues/2609 |
| 65 | + |
| 66 | + * Bugfix #1941: Fix TUS uploads with transfer token only |
| 67 | + |
| 68 | + TUS uploads had been stopped when the user JWT token expired, even if only the transfer token |
| 69 | + should be validated. Now uploads will continue as intended. |
| 70 | + |
| 71 | + https://github.com/cs3org/reva/pull/1941 |
| 72 | + |
| 73 | + * Change #2210: Fix app provider new file creation and improved error codes |
| 74 | + |
| 75 | + We've fixed the behavior for the app provider when creating new files. Previously the app |
| 76 | + provider would overwrite already existing files when creating a new file, this is now handled |
| 77 | + and prevented. The new file endpoint accepted a path to a file, but this does not work for spaces. |
| 78 | + Therefore we now use the resource id of the folder where the file should be created and a filename |
| 79 | + to create the new file. Also the app provider returns more useful error codes in a lot of cases. |
| 80 | + |
| 81 | + https://github.com/cs3org/reva/pull/2210 |
| 82 | + |
| 83 | + * Enhancement #2217: OIDC auth driver for ESCAPE IAM |
| 84 | + |
| 85 | + This enhancement allows for oidc token authentication via the ESCAPE IAM service. |
| 86 | + Authentication relies on mappings of ESCAPE IAM groups to REVA users. For a valid token, if at |
| 87 | + the most one group from the groups claim is mapped to one REVA user, authentication can take |
| 88 | + place. |
| 89 | + |
| 90 | + https://github.com/cs3org/reva/pull/2217 |
| 91 | + |
| 92 | + * Enhancement #2256: Return user type in the response of the ocs GET user call |
| 93 | + |
| 94 | + https://github.com/cs3org/reva/pull/2256 |
| 95 | + |
| 96 | + * Enhancement #2315: Add new attributes to public link propfinds |
| 97 | + |
| 98 | + Added a new property "oc:signature-auth" to public link propfinds. This is a necessary change |
| 99 | + to be able to support archive downloads in password protected public links. |
| 100 | + |
| 101 | + https://github.com/cs3org/reva/pull/2315 |
| 102 | + |
| 103 | + * Enhancement #2740: Implement space membership endpoints |
| 104 | + |
| 105 | + Implemented endpoints to add and remove members to spaces. |
| 106 | + |
| 107 | + https://github.com/owncloud/ocis/issues/2740 |
| 108 | + https://github.com/cs3org/reva/pull/2250 |
| 109 | + |
| 110 | + * Enhancement #2252: Add the xattr sys.acl to SysACL (eosgrpc) |
| 111 | + |
| 112 | + https://github.com/cs3org/reva/pull/2252 |
| 113 | + |
| 114 | + * Enhancement #2314: OIDC: fallback if IDP doesn't provide "preferred_username" claim |
| 115 | + |
| 116 | + Some IDPs don't support the "preferred_username" claim. Fallback to the "email" claim in that |
| 117 | + case. |
| 118 | + |
| 119 | + https://github.com/cs3org/reva/pull/2314 |
| 120 | + |
| 121 | + |
1 | 122 | Changelog for reva 1.16.0 (2021-11-19)
|
2 | 123 | =======================================
|
3 | 124 |
|
|
0 commit comments