Skip to content

Commit d59fea7

Browse files
authored
Merge pull request #5034 from 2403905/release-2.27.1
release-2.27.1
2 parents fe9caac + 0d0b1fc commit d59fea7

12 files changed

+212
-50
lines changed

CHANGELOG.md

+92-26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,69 @@
1+
Changelog for reva 2.27.1 (2025-01-09)
2+
=======================================
3+
4+
The following sections list the changes in reva 2.27.1 relevant to
5+
reva users. The changes are ordered by importance.
6+
7+
Summary
8+
-------
9+
10+
* Fix #5033: Fix ocm wildcards
11+
* Fix #5031: Allow to accepted invite after it was once deleted
12+
* Fix #5026: Delete Blobs when Space is deleted
13+
* Enh #5025: Allow wildcards in OCM domains
14+
* Enh #5023: Notification feature toggle
15+
* Enh #4990: Allow locking via ocm
16+
* Enh #5032: Add SendEmailsEvent
17+
18+
Details
19+
-------
20+
21+
* Bugfix #5033: Fix ocm wildcards
22+
23+
Ocm wildcards were not working properly. We now overwrite the wildcard values with the actual
24+
domain.
25+
26+
https://github.com/cs3org/reva/pull/5033
27+
28+
* Bugfix #5031: Allow to accepted invite after it was once deleted
29+
30+
Allowed to accepted invite even after it was once deleted on the invite receiver or invite
31+
creation side.
32+
33+
https://github.com/owncloud/ocis/issues/10813
34+
https://github.com/cs3org/reva/pull/5031
35+
36+
* Bugfix #5026: Delete Blobs when Space is deleted
37+
38+
Delete all blobs of a space when the space is deleted.
39+
40+
https://github.com/cs3org/reva/pull/5026
41+
42+
* Enhancement #5025: Allow wildcards in OCM domains
43+
44+
When verifiying domains, allow wildcards in the domain name. This will not work when using
45+
`verify-request-hostname`
46+
47+
https://github.com/cs3org/reva/pull/5025
48+
49+
* Enhancement #5023: Notification feature toggle
50+
51+
Adds a feature toggle for the notification settings.
52+
53+
https://github.com/cs3org/reva/pull/5023
54+
55+
* Enhancement #4990: Allow locking via ocm
56+
57+
Implement locking endpoints so files can be locked and unlocked via ocm.
58+
59+
https://github.com/cs3org/reva/pull/4990
60+
61+
* Enhancement #5032: Add SendEmailsEvent
62+
63+
Adds SendEmailsEvent that is used to trigger the sending of group emails.
64+
65+
https://github.com/cs3org/reva/pull/5032
66+
167
Changelog for reva 2.27.0 (2024-12-12)
268
=======================================
369

@@ -10,8 +76,8 @@ Summary
1076
* Fix #4985: Drop unneeded session locks
1177
* Fix #5000: Fix ceph build
1278
* Fix #4989: Deleting OCM share also updates storageprovider
79+
* Fix #4996: Get rid of some cases of unstructured logging
1380
* Enh #4998: Emit event when an ocm share is received
14-
* Enh #4996: Get rid of some cases of unstructured logging
1581

1682
Details
1783
-------
@@ -34,15 +100,15 @@ Details
34100
https://github.com/owncloud/ocis/issues/10262
35101
https://github.com/cs3org/reva/pull/4989
36102

103+
* Bugfix #4996: Get rid of some cases of unstructured logging
104+
105+
https://github.com/cs3org/reva/pull/4996
106+
37107
* Enhancement #4998: Emit event when an ocm share is received
38108

39109
https://github.com/owncloud/ocis/issues/10718
40110
https://github.com/cs3org/reva/pull/4998
41111

42-
* Enhancement #4996: Get rid of some cases of unstructured logging
43-
44-
https://github.com/cs3org/reva/pull/4996
45-
46112
Changelog for reva 2.26.8 (2024-12-04)
47113
=======================================
48114

@@ -5819,27 +5885,6 @@ Details
58195885

58205886
https://github.com/cs3org/reva/pull/2922
58215887

5822-
Changelog for reva 2.4.1 (2022-05-24)
5823-
=======================================
5824-
5825-
The following sections list the changes in reva 2.4.1 relevant to
5826-
reva users. The changes are ordered by importance.
5827-
5828-
Summary
5829-
-------
5830-
5831-
* Fix #2891: Add missing http status code
5832-
5833-
Details
5834-
-------
5835-
5836-
* Bugfix #2891: Add missing http status code
5837-
5838-
This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
5839-
pass it through.
5840-
5841-
https://github.com/cs3org/reva/pull/2891
5842-
58435888
Changelog for reva 2.4.0 (2022-05-24)
58445889
=======================================
58455890

@@ -5983,6 +6028,27 @@ Details
59836028

59846029
https://github.com/cs3org/reva/pull/2792
59856030

6031+
Changelog for reva 2.4.1 (2022-05-24)
6032+
=======================================
6033+
6034+
The following sections list the changes in reva 2.4.1 relevant to
6035+
reva users. The changes are ordered by importance.
6036+
6037+
Summary
6038+
-------
6039+
6040+
* Fix #2891: Add missing http status code
6041+
6042+
Details
6043+
-------
6044+
6045+
* Bugfix #2891: Add missing http status code
6046+
6047+
This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
6048+
pass it through.
6049+
6050+
https://github.com/cs3org/reva/pull/2891
6051+
59866052
Changelog for reva 2.3.1 (2022-05-08)
59876053
=======================================
59886054

RELEASE_DATE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-12-12
1+
2025-01-09

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.27.0
1+
2.27.1
File renamed without changes.

changelog/NOTE.md

+43-22
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,66 @@
1-
Changelog for reva 2.27.0 (2024-12-12)
1+
Changelog for reva 2.27.1 (2025-01-09)
22
=======================================
33

4-
The following sections list the changes in reva 2.27.0 relevant to
4+
The following sections list the changes in reva 2.27.1 relevant to
55
reva users. The changes are ordered by importance.
66

77
Summary
88
-------
99

10-
* Fix #4985: Drop unneeded session locks
11-
* Fix #5000: Fix ceph build
12-
* Fix #4989: Deleting OCM share also updates storageprovider
13-
* Enh #4998: Emit event when an ocm share is received
14-
* Enh #4996: Get rid of some cases of unstructured logging
10+
* Fix #5033: Fix ocm wildcards
11+
* Fix #5031: Allow to accepted invite after it was once deleted
12+
* Fix #5026: Delete Blobs when Space is deleted
13+
* Enh #5025: Allow wildcards in OCM domains
14+
* Enh #5023: Notification feature toggle
15+
* Enh #4990: Allow locking via ocm
16+
* Enh #5032: Add SendEmailsEvent
1517

1618
Details
1719
-------
1820

19-
* Bugfix #4985: Drop unneeded session locks
21+
* Bugfix #5033: Fix ocm wildcards
2022

21-
We no longer lock session metadada files, as they are already written atomically.
23+
Ocm wildcards were not working properly. We now overwrite the wildcard values with the actual
24+
domain.
2225

23-
https://github.com/cs3org/reva/pull/4985
26+
https://github.com/cs3org/reva/pull/5033
2427

25-
* Bugfix #5000: Fix ceph build
28+
* Bugfix #5031: Allow to accepted invite after it was once deleted
2629

27-
https://github.com/cs3org/reva/pull/5000
30+
Allowed to accepted invite even after it was once deleted on the invite receiver or invite
31+
creation side.
2832

29-
* Bugfix #4989: Deleting OCM share also updates storageprovider
33+
https://github.com/owncloud/ocis/issues/10813
34+
https://github.com/cs3org/reva/pull/5031
3035

31-
When remvoving an OCM share we're now also removing the related grant from the storage
32-
provider.
36+
* Bugfix #5026: Delete Blobs when Space is deleted
3337

34-
https://github.com/owncloud/ocis/issues/10262
35-
https://github.com/cs3org/reva/pull/4989
38+
Delete all blobs of a space when the space is deleted.
3639

37-
* Enhancement #4998: Emit event when an ocm share is received
40+
https://github.com/cs3org/reva/pull/5026
3841

39-
https://github.com/owncloud/ocis/issues/10718
40-
https://github.com/cs3org/reva/pull/4998
42+
* Enhancement #5025: Allow wildcards in OCM domains
4143

42-
* Enhancement #4996: Get rid of some cases of unstructured logging
44+
When verifiying domains, allow wildcards in the domain name. This will not work when using
45+
`verify-request-hostname`
4346

44-
https://github.com/cs3org/reva/pull/4996
47+
https://github.com/cs3org/reva/pull/5025
48+
49+
* Enhancement #5023: Notification feature toggle
50+
51+
Adds a feature toggle for the notification settings.
52+
53+
https://github.com/cs3org/reva/pull/5023
54+
55+
* Enhancement #4990: Allow locking via ocm
56+
57+
Implement locking endpoints so files can be locked and unlocked via ocm.
58+
59+
https://github.com/cs3org/reva/pull/4990
60+
61+
* Enhancement #5032: Add SendEmailsEvent
62+
63+
Adds SendEmailsEvent that is used to trigger the sending of group emails.
64+
65+
https://github.com/cs3org/reva/pull/5032
4566

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
2+
---
3+
title: "v2.27.1"
4+
linkTitle: "v2.27.1"
5+
weight: 40
6+
description: >
7+
Changelog for Reva v2.27.1 (2025-01-09)
8+
---
9+
10+
Changelog for reva 2.27.1 (2025-01-09)
11+
=======================================
12+
13+
The following sections list the changes in reva 2.27.1 relevant to
14+
reva users. The changes are ordered by importance.
15+
16+
Summary
17+
-------
18+
19+
* Fix #5033: Fix ocm wildcards
20+
* Fix #5031: Allow to accepted invite after it was once deleted
21+
* Fix #5026: Delete Blobs when Space is deleted
22+
* Enh #5025: Allow wildcards in OCM domains
23+
* Enh #5023: Notification feature toggle
24+
* Enh #4990: Allow locking via ocm
25+
* Enh #5032: Add SendEmailsEvent
26+
27+
Details
28+
-------
29+
30+
* Bugfix #5033: Fix ocm wildcards
31+
32+
Ocm wildcards were not working properly. We now overwrite the wildcard values with the actual
33+
domain.
34+
35+
https://github.com/cs3org/reva/pull/5033
36+
37+
* Bugfix #5031: Allow to accepted invite after it was once deleted
38+
39+
Allowed to accepted invite even after it was once deleted on the invite receiver or invite
40+
creation side.
41+
42+
https://github.com/owncloud/ocis/issues/10813
43+
https://github.com/cs3org/reva/pull/5031
44+
45+
* Bugfix #5026: Delete Blobs when Space is deleted
46+
47+
Delete all blobs of a space when the space is deleted.
48+
49+
https://github.com/cs3org/reva/pull/5026
50+
51+
* Enhancement #5025: Allow wildcards in OCM domains
52+
53+
When verifiying domains, allow wildcards in the domain name. This will not work when using
54+
`verify-request-hostname`
55+
56+
https://github.com/cs3org/reva/pull/5025
57+
58+
* Enhancement #5023: Notification feature toggle
59+
60+
Adds a feature toggle for the notification settings.
61+
62+
https://github.com/cs3org/reva/pull/5023
63+
64+
* Enhancement #4990: Allow locking via ocm
65+
66+
Implement locking endpoints so files can be locked and unlocked via ocm.
67+
68+
https://github.com/cs3org/reva/pull/4990
69+
70+
* Enhancement #5032: Add SendEmailsEvent
71+
72+
Adds SendEmailsEvent that is used to trigger the sending of group emails.
73+
74+
https://github.com/cs3org/reva/pull/5032
75+

0 commit comments

Comments
 (0)