|
| 1 | +Changelog for reva 2.26.8 (2024-12-04) |
| 2 | +======================================= |
| 3 | + |
| 4 | +The following sections list the changes in reva 2.26.8 relevant to |
| 5 | +reva users. The changes are ordered by importance. |
| 6 | + |
| 7 | +Summary |
| 8 | +------- |
| 9 | + |
| 10 | +* Fix #4983: Delete stale shares in the jsoncs3 share manager |
| 11 | +* Fix #4963: Fix name and displayName in an ocm |
| 12 | +* Fix #4968: Jsoncs3 cache fixes |
| 13 | +* Fix #4928: Propagate lock in PROPPATCH |
| 14 | +* Fix #4971: Use manager to list shares |
| 15 | +* Enh #4978: We added more trace spans in decomposedfs |
| 16 | +* Enh #4921: Polish propagation related code |
| 17 | + |
| 18 | +Details |
| 19 | +------- |
| 20 | + |
| 21 | +* Bugfix #4983: Delete stale shares in the jsoncs3 share manager |
| 22 | + |
| 23 | + The jsoncs3 share manager now properly deletes all references to removed shares and shares |
| 24 | + that belong to a space that was deleted |
| 25 | + |
| 26 | + https://github.com/cs3org/reva/pull/4983 |
| 27 | + https://github.com/cs3org/reva/pull/4975 |
| 28 | + |
| 29 | +* Bugfix #4963: Fix name and displayName in an ocm |
| 30 | + |
| 31 | + Fixed name and displayName in an ocm PROPFIND response |
| 32 | + |
| 33 | + https://github.com/owncloud/ocis/issues/10582 |
| 34 | + https://github.com/cs3org/reva/pull/4963 |
| 35 | + |
| 36 | +* Bugfix #4968: Jsoncs3 cache fixes |
| 37 | + |
| 38 | + The jsoncs3 share manager now retries persisting if the file already existed and picks up the |
| 39 | + etag of the upload response in all cases. |
| 40 | + |
| 41 | + https://github.com/cs3org/reva/pull/4968 |
| 42 | + https://github.com/cs3org/reva/pull/4532 |
| 43 | + |
| 44 | +* Bugfix #4928: Propagate lock in PROPPATCH |
| 45 | + |
| 46 | + Clients using locking (ie. Windows) could not create/copy files over webdav as file seemed to |
| 47 | + be locked. |
| 48 | + |
| 49 | + https://github.com/cs3org/reva/pull/4928 |
| 50 | + |
| 51 | +* Bugfix #4971: Use manager to list shares |
| 52 | + |
| 53 | + When updating a received share the usershareprovider now uses the share manager directly to |
| 54 | + list received shares instead of going through the gateway again. |
| 55 | + |
| 56 | + https://github.com/cs3org/reva/pull/4971 |
| 57 | + |
| 58 | +* Enhancement #4978: We added more trace spans in decomposedfs |
| 59 | + |
| 60 | + https://github.com/cs3org/reva/pull/4978 |
| 61 | + |
| 62 | +* Enhancement #4921: Polish propagation related code |
| 63 | + |
| 64 | + We polished some corner cases for propagation that reduce log messages in normal operation. |
| 65 | + |
| 66 | + https://github.com/cs3org/reva/pull/4921 |
| 67 | + |
1 | 68 | Changelog for reva 2.26.7 (2024-11-20)
|
2 | 69 | =======================================
|
3 | 70 |
|
@@ -5180,34 +5247,6 @@ Details
|
5180 | 5247 |
|
5181 | 5248 | https://github.com/cs3org/reva/pull/3083
|
5182 | 5249 |
|
5183 |
| -Changelog for reva 2.7.1 (2022-07-15) |
5184 |
| -======================================= |
5185 |
| - |
5186 |
| -The following sections list the changes in reva 2.7.1 relevant to |
5187 |
| -reva users. The changes are ordered by importance. |
5188 |
| - |
5189 |
| -Summary |
5190 |
| -------- |
5191 |
| - |
5192 |
| -* Fix #3080: Make dataproviders return more headers |
5193 |
| -* Enh #3046: Add user filter |
5194 |
| - |
5195 |
| -Details |
5196 |
| -------- |
5197 |
| - |
5198 |
| -* Bugfix #3080: Make dataproviders return more headers |
5199 |
| - |
5200 |
| - Instead of ocdav doing an additional Stat request we now rely on the dataprovider to return the |
5201 |
| - necessary metadata information as headers. |
5202 |
| - |
5203 |
| - https://github.com/owncloud/reva/issues/3080 |
5204 |
| - |
5205 |
| -* Enhancement #3046: Add user filter |
5206 |
| - |
5207 |
| - This PR adds the ability to filter spaces by user-id |
5208 |
| - |
5209 |
| - https://github.com/cs3org/reva/pull/3046 |
5210 |
| - |
5211 | 5250 | Changelog for reva 2.7.0 (2022-07-15)
|
5212 | 5251 | =======================================
|
5213 | 5252 |
|
@@ -5340,6 +5379,34 @@ Details
|
5340 | 5379 | https://github.com/owncloud/ocis/issues/3073
|
5341 | 5380 | https://github.com/cs3org/reva/pull/2977
|
5342 | 5381 |
|
| 5382 | +Changelog for reva 2.7.1 (2022-07-15) |
| 5383 | +======================================= |
| 5384 | + |
| 5385 | +The following sections list the changes in reva 2.7.1 relevant to |
| 5386 | +reva users. The changes are ordered by importance. |
| 5387 | + |
| 5388 | +Summary |
| 5389 | +------- |
| 5390 | + |
| 5391 | +* Fix #3080: Make dataproviders return more headers |
| 5392 | +* Enh #3046: Add user filter |
| 5393 | + |
| 5394 | +Details |
| 5395 | +------- |
| 5396 | + |
| 5397 | +* Bugfix #3080: Make dataproviders return more headers |
| 5398 | + |
| 5399 | + Instead of ocdav doing an additional Stat request we now rely on the dataprovider to return the |
| 5400 | + necessary metadata information as headers. |
| 5401 | + |
| 5402 | + https://github.com/owncloud/reva/issues/3080 |
| 5403 | + |
| 5404 | +* Enhancement #3046: Add user filter |
| 5405 | + |
| 5406 | + This PR adds the ability to filter spaces by user-id |
| 5407 | + |
| 5408 | + https://github.com/cs3org/reva/pull/3046 |
| 5409 | + |
5343 | 5410 | Changelog for reva 2.6.1 (2022-06-27)
|
5344 | 5411 | =======================================
|
5345 | 5412 |
|
@@ -5707,27 +5774,6 @@ Details
|
5707 | 5774 |
|
5708 | 5775 | https://github.com/cs3org/reva/pull/2922
|
5709 | 5776 |
|
5710 |
| -Changelog for reva 2.4.1 (2022-05-24) |
5711 |
| -======================================= |
5712 |
| - |
5713 |
| -The following sections list the changes in reva 2.4.1 relevant to |
5714 |
| -reva users. The changes are ordered by importance. |
5715 |
| - |
5716 |
| -Summary |
5717 |
| -------- |
5718 |
| - |
5719 |
| -* Fix #2891: Add missing http status code |
5720 |
| - |
5721 |
| -Details |
5722 |
| -------- |
5723 |
| - |
5724 |
| -* Bugfix #2891: Add missing http status code |
5725 |
| - |
5726 |
| - This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to |
5727 |
| - pass it through. |
5728 |
| - |
5729 |
| - https://github.com/cs3org/reva/pull/2891 |
5730 |
| - |
5731 | 5777 | Changelog for reva 2.4.0 (2022-05-24)
|
5732 | 5778 | =======================================
|
5733 | 5779 |
|
@@ -5871,6 +5917,27 @@ Details
|
5871 | 5917 |
|
5872 | 5918 | https://github.com/cs3org/reva/pull/2792
|
5873 | 5919 |
|
| 5920 | +Changelog for reva 2.4.1 (2022-05-24) |
| 5921 | +======================================= |
| 5922 | + |
| 5923 | +The following sections list the changes in reva 2.4.1 relevant to |
| 5924 | +reva users. The changes are ordered by importance. |
| 5925 | + |
| 5926 | +Summary |
| 5927 | +------- |
| 5928 | + |
| 5929 | +* Fix #2891: Add missing http status code |
| 5930 | + |
| 5931 | +Details |
| 5932 | +------- |
| 5933 | + |
| 5934 | +* Bugfix #2891: Add missing http status code |
| 5935 | + |
| 5936 | + This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to |
| 5937 | + pass it through. |
| 5938 | + |
| 5939 | + https://github.com/cs3org/reva/pull/2891 |
| 5940 | + |
5874 | 5941 | Changelog for reva 2.3.1 (2022-05-08)
|
5875 | 5942 | =======================================
|
5876 | 5943 |
|
|
0 commit comments