|
| 1 | +Changelog for reva 3.5.1 (2026-02-12) |
| 2 | +======================================= |
| 3 | + |
| 4 | +The following sections list the changes in reva 3.5.1 relevant to |
| 5 | +reva users. The changes are ordered by importance. |
| 6 | + |
| 7 | +Summary |
| 8 | +------- |
| 9 | + |
| 10 | + * Fix #5482: Return 403 instead of 500 on no permissions |
| 11 | + * Fix #5473: Do not require db_engine to be set |
| 12 | + * Fix #5496: GetNsMatch in eosfs should return a cleaned path |
| 13 | + * Fix #5490: Do not do getQuota as project owner for ownerless projects |
| 14 | + * Fix #5492: Set proper service account context for project GetQuota |
| 15 | + * Fix #5491: Do not clean namespace path |
| 16 | + * Enh #5466: Clean up DAV PUT |
| 17 | + * Enh #5470: Add indexes to share db for fields that may be queried |
| 18 | + * Enh #5452: OCM Embedded shares |
| 19 | + * Enh #5471: Extend integration tests using Reva CLI |
| 20 | + * Enh #5476: OCM: support access_types and drop datatx protocol |
| 21 | + * Enh #5489: Add processing endpoint for an embedded share |
| 22 | + * Enh #5484: Remove share first from EOS, then db |
| 23 | + * Enh #5462: Integration tests using Reva CLI |
| 24 | + |
| 25 | +Details |
| 26 | +------- |
| 27 | + |
| 28 | + * Bugfix #5482: Return 403 instead of 500 on no permissions |
| 29 | + |
| 30 | + https://github.com/cs3org/reva/pull/5482 |
| 31 | + |
| 32 | + * Bugfix #5473: Do not require db_engine to be set |
| 33 | + |
| 34 | + https://github.com/cs3org/reva/pull/5473 |
| 35 | + |
| 36 | + * Bugfix #5496: GetNsMatch in eosfs should return a cleaned path |
| 37 | + |
| 38 | + https://github.com/cs3org/reva/pull/5496 |
| 39 | + |
| 40 | + * Bugfix #5490: Do not do getQuota as project owner for ownerless projects |
| 41 | + |
| 42 | + https://github.com/cs3org/reva/pull/5490 |
| 43 | + |
| 44 | + * Bugfix #5492: Set proper service account context for project GetQuota |
| 45 | + |
| 46 | + https://github.com/cs3org/reva/pull/5492 |
| 47 | + |
| 48 | + * Bugfix #5491: Do not clean namespace path |
| 49 | + |
| 50 | + There was a bug in Reva that caused the namespace path to be cleaned. This is wrong: this path |
| 51 | + should end in a `/` so that EOS trashbin paths do not match for projects (e.g. |
| 52 | + `/eos/project-i00` should not be prefixed by `/eos/project/`). |
| 53 | + |
| 54 | + This bug caused deleted entries to still show up in the favorites list |
| 55 | + |
| 56 | + https://github.com/cs3org/reva/pull/5491 |
| 57 | + |
| 58 | + * Enhancement #5466: Clean up DAV PUT |
| 59 | + |
| 60 | + * Fixed a "bug" where a variable was overwritten (though this had no impact) * Cleaned up a method |
| 61 | + * Removed unused function |
| 62 | + |
| 63 | + https://github.com/cs3org/reva/pull/5466 |
| 64 | + |
| 65 | + * Enhancement #5470: Add indexes to share db for fields that may be queried |
| 66 | + |
| 67 | + In a previous change, some indexes for fields that are queried had been replaced by a composite |
| 68 | + index, which cannot be used for certain queries that we do. So, this PR brings back the |
| 69 | + non-composite indexes. |
| 70 | + |
| 71 | + https://github.com/cs3org/reva/pull/5470 |
| 72 | + |
| 73 | + * Enhancement #5452: OCM Embedded shares |
| 74 | + |
| 75 | + This PR introduces OCM embedded shares |
| 76 | + |
| 77 | + * Adds functionality to store embedded shares (where the shared data is embedded in the OCM |
| 78 | + share payload) * Adds filters to `ListReceivedOCMShares` call and adapts to the new fields |
| 79 | + `SharedResourceType` and `RecipientType` * Adds an endpoint to list embedded shares (using |
| 80 | + the previously mentioned filters) |
| 81 | + |
| 82 | + https://github.com/cs3org/reva/pull/5452 |
| 83 | + |
| 84 | + * Enhancement #5471: Extend integration tests using Reva CLI |
| 85 | + |
| 86 | + This PR extends the Reva CLI test suite by including tests for recycle bin, versions and grant |
| 87 | + operations |
| 88 | + |
| 89 | + https://github.com/cs3org/reva/pull/5471 |
| 90 | + |
| 91 | + * Enhancement #5476: OCM: support access_types and drop datatx protocol |
| 92 | + |
| 93 | + This PR adapts the OCM implementation to v1.3. No new capabilities have been added yet. |
| 94 | + |
| 95 | + https://github.com/cs3org/reva/pull/5476 |
| 96 | + |
| 97 | + * Enhancement #5489: Add processing endpoint for an embedded share |
| 98 | + |
| 99 | + - For now this only changes the state to accepted (or pending if you want to "unprocess" the |
| 100 | + share) - Eventually we want the downloaded content to arrive in the target folder, the target is |
| 101 | + just logged for now. |
| 102 | + |
| 103 | + https://github.com/cs3org/reva/pull/5489 |
| 104 | + |
| 105 | + * Enhancement #5484: Remove share first from EOS, then db |
| 106 | + |
| 107 | + When removing shares, remove permissions from storage before going to db, so that there can be |
| 108 | + no lingering permissions on EOS |
| 109 | + |
| 110 | + https://github.com/cs3org/reva/pull/5484 |
| 111 | + |
| 112 | + * Enhancement #5462: Integration tests using Reva CLI |
| 113 | + |
| 114 | + This PR introduces a proof-of-concept for integration tests based on the reva CLI. The goal is |
| 115 | + to extend these tests, so that they can be used by EOS to check if their changes break our |
| 116 | + workflow. |
| 117 | + |
| 118 | + https://github.com/cs3org/reva/pull/5462 |
| 119 | + |
| 120 | + |
1 | 121 | Changelog for reva 3.5.0 (2026-01-09) |
2 | 122 | ======================================= |
3 | 123 |
|
|
0 commit comments