Skip to content

Commit 0673197

Browse files
authored
Merge pull request #5046 from 2403905/release-2.27.2
[full-ci] release-2.27.2
2 parents ef95a0a + 6b4c2ab commit 0673197

File tree

6 files changed

+78
-75
lines changed

6 files changed

+78
-75
lines changed

CHANGELOG.md

+41-21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
Changelog for reva 2.27.2 (2025-01-17)
2+
=======================================
3+
4+
The following sections list the changes in reva 2.27.2 relevant to
5+
reva users. The changes are ordered by importance.
6+
7+
Summary
8+
-------
9+
10+
* Fix #5043: Fix SpaceMembershipExpired unmarshal
11+
12+
Details
13+
-------
14+
15+
* Bugfix #5043: Fix SpaceMembershipExpired unmarshal
16+
17+
SpaceMembershipExpired events can now be unmarshalled correctly
18+
19+
https://github.com/cs3org/reva/pull/5043
20+
121
Changelog for reva 2.27.1 (2025-01-09)
222
=======================================
323

@@ -5885,6 +5905,27 @@ Details
58855905

58865906
https://github.com/cs3org/reva/pull/2922
58875907

5908+
Changelog for reva 2.4.1 (2022-05-24)
5909+
=======================================
5910+
5911+
The following sections list the changes in reva 2.4.1 relevant to
5912+
reva users. The changes are ordered by importance.
5913+
5914+
Summary
5915+
-------
5916+
5917+
* Fix #2891: Add missing http status code
5918+
5919+
Details
5920+
-------
5921+
5922+
* Bugfix #2891: Add missing http status code
5923+
5924+
This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
5925+
pass it through.
5926+
5927+
https://github.com/cs3org/reva/pull/2891
5928+
58885929
Changelog for reva 2.4.0 (2022-05-24)
58895930
=======================================
58905931

@@ -6028,27 +6069,6 @@ Details
60286069

60296070
https://github.com/cs3org/reva/pull/2792
60306071

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-
60526072
Changelog for reva 2.3.1 (2022-05-08)
60536073
=======================================
60546074

RELEASE_DATE

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

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.27.1
1+
2.27.2

changelog/NOTE.md

+6-52
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,20 @@
1-
Changelog for reva 2.27.1 (2025-01-09)
1+
Changelog for reva 2.27.2 (2025-01-17)
22
=======================================
33

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

77
Summary
88
-------
99

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
10+
* Fix #5043: Fix SpaceMembershipExpired unmarshal
1711

1812
Details
1913
-------
2014

21-
* Bugfix #5033: Fix ocm wildcards
15+
* Bugfix #5043: Fix SpaceMembershipExpired unmarshal
2216

23-
Ocm wildcards were not working properly. We now overwrite the wildcard values with the actual
24-
domain.
17+
SpaceMembershipExpired events can now be unmarshalled correctly
2518

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
19+
https://github.com/cs3org/reva/pull/5043
6620

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
---
3+
title: "v2.27.2"
4+
linkTitle: "v2.27.2"
5+
weight: 40
6+
description: >
7+
Changelog for Reva v2.27.2 (2025-01-17)
8+
---
9+
10+
Changelog for reva 2.27.2 (2025-01-17)
11+
=======================================
12+
13+
The following sections list the changes in reva 2.27.2 relevant to
14+
reva users. The changes are ordered by importance.
15+
16+
Summary
17+
-------
18+
19+
* Fix #5043: Fix SpaceMembershipExpired unmarshal
20+
21+
Details
22+
-------
23+
24+
* Bugfix #5043: Fix SpaceMembershipExpired unmarshal
25+
26+
SpaceMembershipExpired events can now be unmarshalled correctly
27+
28+
https://github.com/cs3org/reva/pull/5043
29+

0 commit comments

Comments
 (0)