|
| 1 | +Changelog for reva 2.19.6 (2024-04-29) |
| 2 | +======================================= |
| 3 | + |
| 4 | +The following sections list the changes in reva 2.19.6 relevant to |
| 5 | +reva users. The changes are ordered by importance. |
| 6 | + |
| 7 | +Summary |
| 8 | +------- |
| 9 | + |
| 10 | +* Fix #4654: Write blob based on session id |
| 11 | +* Fix #4666: Fix uploading via a public link |
| 12 | +* Fix #4665: Fix creating documents in nested folders of public shares |
| 13 | +* Enh #4655: Bump mockery to v2.40.2 |
| 14 | +* Enh #4664: Add ScanData to Uploadsession |
| 15 | + |
| 16 | +Details |
| 17 | +------- |
| 18 | + |
| 19 | +* Bugfix #4654: Write blob based on session id |
| 20 | + |
| 21 | + Decomposedfs now uses the session id and size when moving an uplode to the blobstore. This fixes |
| 22 | + a cornercase that prevents an upload session from correctly being finished when another |
| 23 | + upload session to the file was started and already finished. |
| 24 | + |
| 25 | + https://github.com/cs3org/reva/pull/4654 |
| 26 | + https://github.com/cs3org/reva/pull/4615 |
| 27 | + |
| 28 | +* Bugfix #4666: Fix uploading via a public link |
| 29 | + |
| 30 | + Fix http error when uploading via a public link |
| 31 | + |
| 32 | + https://github.com/owncloud/ocis/issues/8699 |
| 33 | + https://github.com/cs3org/reva/pull/4666 |
| 34 | + https://github.com/cs3org/reva/pull/4589 |
| 35 | + |
| 36 | +* Bugfix #4665: Fix creating documents in nested folders of public shares |
| 37 | + |
| 38 | + We fixed a bug that prevented creating new documented in a nested folder of a public share. |
| 39 | + |
| 40 | + https://github.com/owncloud/ocis/issues/8957 |
| 41 | + https://github.com/cs3org/reva/pull/4665 |
| 42 | + https://github.com/cs3org/reva/pull/4660 |
| 43 | + |
| 44 | +* Enhancement #4655: Bump mockery to v2.40.2 |
| 45 | + |
| 46 | + We switched to the latest mockery and changed to .mockery.yaml based mock generation. |
| 47 | + |
| 48 | + https://github.com/cs3org/reva/pull/4655 |
| 49 | + https://github.com/cs3org/reva/pull/4614 |
| 50 | + |
| 51 | +* Enhancement #4664: Add ScanData to Uploadsession |
| 52 | + |
| 53 | + Adds virus scan results to the upload session. |
| 54 | + |
| 55 | + https://github.com/cs3org/reva/pull/4664 |
| 56 | + https://github.com/cs3org/reva/pull/4657 |
| 57 | + |
1 | 58 | Changelog for reva 2.19.5 (2024-04-17) |
2 | 59 | ======================================= |
3 | 60 |
|
@@ -3881,34 +3938,6 @@ Details |
3881 | 3938 |
|
3882 | 3939 | https://github.com/cs3org/reva/pull/3083 |
3883 | 3940 |
|
3884 | | -Changelog for reva 2.7.1 (2022-07-15) |
3885 | | -======================================= |
3886 | | - |
3887 | | -The following sections list the changes in reva 2.7.1 relevant to |
3888 | | -reva users. The changes are ordered by importance. |
3889 | | - |
3890 | | -Summary |
3891 | | -------- |
3892 | | - |
3893 | | -* Fix #3080: Make dataproviders return more headers |
3894 | | -* Enh #3046: Add user filter |
3895 | | - |
3896 | | -Details |
3897 | | -------- |
3898 | | - |
3899 | | -* Bugfix #3080: Make dataproviders return more headers |
3900 | | - |
3901 | | - Instead of ocdav doing an additional Stat request we now rely on the dataprovider to return the |
3902 | | - necessary metadata information as headers. |
3903 | | - |
3904 | | - https://github.com/owncloud/reva/issues/3080 |
3905 | | - |
3906 | | -* Enhancement #3046: Add user filter |
3907 | | - |
3908 | | - This PR adds the ability to filter spaces by user-id |
3909 | | - |
3910 | | - https://github.com/cs3org/reva/pull/3046 |
3911 | | - |
3912 | 3941 | Changelog for reva 2.7.0 (2022-07-15) |
3913 | 3942 | ======================================= |
3914 | 3943 |
|
@@ -4041,6 +4070,34 @@ Details |
4041 | 4070 | https://github.com/owncloud/ocis/issues/3073 |
4042 | 4071 | https://github.com/cs3org/reva/pull/2977 |
4043 | 4072 |
|
| 4073 | +Changelog for reva 2.7.1 (2022-07-15) |
| 4074 | +======================================= |
| 4075 | + |
| 4076 | +The following sections list the changes in reva 2.7.1 relevant to |
| 4077 | +reva users. The changes are ordered by importance. |
| 4078 | + |
| 4079 | +Summary |
| 4080 | +------- |
| 4081 | + |
| 4082 | +* Fix #3080: Make dataproviders return more headers |
| 4083 | +* Enh #3046: Add user filter |
| 4084 | + |
| 4085 | +Details |
| 4086 | +------- |
| 4087 | + |
| 4088 | +* Bugfix #3080: Make dataproviders return more headers |
| 4089 | + |
| 4090 | + Instead of ocdav doing an additional Stat request we now rely on the dataprovider to return the |
| 4091 | + necessary metadata information as headers. |
| 4092 | + |
| 4093 | + https://github.com/owncloud/reva/issues/3080 |
| 4094 | + |
| 4095 | +* Enhancement #3046: Add user filter |
| 4096 | + |
| 4097 | + This PR adds the ability to filter spaces by user-id |
| 4098 | + |
| 4099 | + https://github.com/cs3org/reva/pull/3046 |
| 4100 | + |
4044 | 4101 | Changelog for reva 2.6.1 (2022-06-27) |
4045 | 4102 | ======================================= |
4046 | 4103 |
|
@@ -4408,27 +4465,6 @@ Details |
4408 | 4465 |
|
4409 | 4466 | https://github.com/cs3org/reva/pull/2922 |
4410 | 4467 |
|
4411 | | -Changelog for reva 2.4.1 (2022-05-24) |
4412 | | -======================================= |
4413 | | - |
4414 | | -The following sections list the changes in reva 2.4.1 relevant to |
4415 | | -reva users. The changes are ordered by importance. |
4416 | | - |
4417 | | -Summary |
4418 | | -------- |
4419 | | - |
4420 | | -* Fix #2891: Add missing http status code |
4421 | | - |
4422 | | -Details |
4423 | | -------- |
4424 | | - |
4425 | | -* Bugfix #2891: Add missing http status code |
4426 | | - |
4427 | | - This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to |
4428 | | - pass it through. |
4429 | | - |
4430 | | - https://github.com/cs3org/reva/pull/2891 |
4431 | | - |
4432 | 4468 | Changelog for reva 2.4.0 (2022-05-24) |
4433 | 4469 | ======================================= |
4434 | 4470 |
|
@@ -4572,6 +4608,27 @@ Details |
4572 | 4608 |
|
4573 | 4609 | https://github.com/cs3org/reva/pull/2792 |
4574 | 4610 |
|
| 4611 | +Changelog for reva 2.4.1 (2022-05-24) |
| 4612 | +======================================= |
| 4613 | + |
| 4614 | +The following sections list the changes in reva 2.4.1 relevant to |
| 4615 | +reva users. The changes are ordered by importance. |
| 4616 | + |
| 4617 | +Summary |
| 4618 | +------- |
| 4619 | + |
| 4620 | +* Fix #2891: Add missing http status code |
| 4621 | + |
| 4622 | +Details |
| 4623 | +------- |
| 4624 | + |
| 4625 | +* Bugfix #2891: Add missing http status code |
| 4626 | + |
| 4627 | + This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to |
| 4628 | + pass it through. |
| 4629 | + |
| 4630 | + https://github.com/cs3org/reva/pull/2891 |
| 4631 | + |
4575 | 4632 | Changelog for reva 2.3.1 (2022-05-08) |
4576 | 4633 | ======================================= |
4577 | 4634 |
|
|
0 commit comments