Skip to content

Commit bab4ee7

Browse files
committed
release-2.25.0
1 parent c33c803 commit bab4ee7

19 files changed

+387
-31
lines changed

CHANGELOG.md

+144-21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,126 @@
1+
Changelog for reva 2.25.0 (2024-09-30)
2+
=======================================
3+
4+
The following sections list the changes in reva 2.25.0 relevant to
5+
reva users. The changes are ordered by importance.
6+
7+
Summary
8+
-------
9+
10+
* Fix #4854: Added ShareUpdate activity
11+
* Fix #4865: Better response codes for app new endpoint
12+
* Fix #4858: Better response codes for app new endpoint
13+
* Fix #4867: Fix remaining space calculation for S3 blobstore
14+
* Fix #4852: Populate public link user correctly
15+
* Fix #4859: Fixed the collaboration service registration
16+
* Fix #4835: Fix sharejail stat id
17+
* Fix #4856: Fix time conversion
18+
* Fix #4851: Use gateway selector in sciencemesh
19+
* Fix #4850: Write upload session info atomically
20+
* Enh #4866: Unit test the json ocm invite manager
21+
* Enh #4847: Add IsVersion to UploadReadyEvent
22+
* Enh #4868: Improve metadata client errors
23+
* Enh #4848: Add trashbin support to posixfs alongside other improvements
24+
25+
Details
26+
-------
27+
28+
* Bugfix #4854: Added ShareUpdate activity
29+
30+
Added the ShareUpdate activity in the space context.
31+
32+
https://github.com/owncloud/ocis/issues/10011
33+
https://github.com/cs3org/reva/pull/4854
34+
35+
* Bugfix #4865: Better response codes for app new endpoint
36+
37+
We fixed the response codes for the app new endpoint. Permission denied is now backing the
38+
request.
39+
40+
https://github.com/cs3org/reva/pull/4865
41+
42+
* Bugfix #4858: Better response codes for app new endpoint
43+
44+
We fixed the response codes for the app new endpoint.
45+
46+
https://github.com/cs3org/reva/pull/4858
47+
48+
* Bugfix #4867: Fix remaining space calculation for S3 blobstore
49+
50+
The calculation of the remaining space in the S3 blobstore was incorrectly using the remaining
51+
space of the local disk instead.
52+
53+
https://github.com/cs3org/reva/pull/4867
54+
55+
* Bugfix #4852: Populate public link user correctly
56+
57+
When authenticating via public link, always add the `public` user instead of the link owner
58+
59+
https://github.com/cs3org/reva/pull/4852
60+
61+
* Bugfix #4859: Fixed the collaboration service registration
62+
63+
Fixed an issue when the collaboration service registers apps also for binary and unknown mime
64+
types.
65+
66+
https://github.com/owncloud/ocis/issues/10086
67+
https://github.com/cs3org/reva/pull/4859
68+
69+
* Bugfix #4835: Fix sharejail stat id
70+
71+
Stating a share jail mountpoint now returns the same resourceid as in the directory listing of
72+
the share jail root.
73+
74+
https://github.com/owncloud/ocis/issues/9933
75+
https://github.com/cs3org/reva/pull/4835
76+
77+
* Bugfix #4856: Fix time conversion
78+
79+
We fixed a nil pointer in a time conversion
80+
81+
https://github.com/cs3org/reva/pull/4856
82+
83+
* Bugfix #4851: Use gateway selector in sciencemesh
84+
85+
We now use a selector to get fresh ip addresses when running ocis in a kubernetes clustern.
86+
87+
https://github.com/cs3org/reva/pull/4851
88+
89+
* Bugfix #4850: Write upload session info atomically
90+
91+
We now use a lock and atomic write on upload session metadata to prevent empty reads. A virus scan
92+
event might cause the file to be truncated and then a finished event might try to read the file,
93+
just getting an empty string.
94+
95+
https://github.com/cs3org/reva/pull/4850
96+
97+
* Enhancement #4866: Unit test the json ocm invite manager
98+
99+
We added unit tests for the json ocm invite manager
100+
101+
https://github.com/cs3org/reva/pull/4866
102+
103+
* Enhancement #4847: Add IsVersion to UploadReadyEvent
104+
105+
Adds an IsVersion flag indicating that this upload is a version of an existing file
106+
107+
https://github.com/cs3org/reva/pull/4847
108+
109+
* Enhancement #4868: Improve metadata client errors
110+
111+
We now return a more descripive error message when the metadata client cannot create a space
112+
because it already exists.
113+
114+
https://github.com/cs3org/reva/pull/4868
115+
116+
* Enhancement #4848: Add trashbin support to posixfs alongside other improvements
117+
118+
We added support for trashbins to posixfs. Posixfs also saw a number of other improvement,
119+
bugfixes and optimizations.
120+
121+
https://github.com/cs3org/reva/pull/4848
122+
https://github.com/cs3org/reva/pull/4779
123+
1124
Changelog for reva 2.24.1 (2024-09-11)
2125
=======================================
3126

@@ -5183,6 +5306,27 @@ Details
51835306

51845307
https://github.com/cs3org/reva/pull/2922
51855308

5309+
Changelog for reva 2.4.1 (2022-05-24)
5310+
=======================================
5311+
5312+
The following sections list the changes in reva 2.4.1 relevant to
5313+
reva users. The changes are ordered by importance.
5314+
5315+
Summary
5316+
-------
5317+
5318+
* Fix #2891: Add missing http status code
5319+
5320+
Details
5321+
-------
5322+
5323+
* Bugfix #2891: Add missing http status code
5324+
5325+
This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
5326+
pass it through.
5327+
5328+
https://github.com/cs3org/reva/pull/2891
5329+
51865330
Changelog for reva 2.4.0 (2022-05-24)
51875331
=======================================
51885332

@@ -5326,27 +5470,6 @@ Details
53265470

53275471
https://github.com/cs3org/reva/pull/2792
53285472

5329-
Changelog for reva 2.4.1 (2022-05-24)
5330-
=======================================
5331-
5332-
The following sections list the changes in reva 2.4.1 relevant to
5333-
reva users. The changes are ordered by importance.
5334-
5335-
Summary
5336-
-------
5337-
5338-
* Fix #2891: Add missing http status code
5339-
5340-
Details
5341-
-------
5342-
5343-
* Bugfix #2891: Add missing http status code
5344-
5345-
This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
5346-
pass it through.
5347-
5348-
https://github.com/cs3org/reva/pull/2891
5349-
53505473
Changelog for reva 2.3.1 (2022-05-08)
53515474
=======================================
53525475

RELEASE_DATE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-09-11
1+
2024-09-30

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.24.1
1+
2.25.0

changelog/NOTE.md

+109-8
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,123 @@
1-
Changelog for reva 2.24.1 (2024-09-11)
1+
Changelog for reva 2.25.0 (2024-09-30)
22
=======================================
33

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

77
Summary
88
-------
99

10-
* Fix #4843: Allow update of ocm shares
10+
* Fix #4854: Added ShareUpdate activity
11+
* Fix #4865: Better response codes for app new endpoint
12+
* Fix #4858: Better response codes for app new endpoint
13+
* Fix #4867: Fix remaining space calculation for S3 blobstore
14+
* Fix #4852: Populate public link user correctly
15+
* Fix #4859: Fixed the collaboration service registration
16+
* Fix #4835: Fix sharejail stat id
17+
* Fix #4856: Fix time conversion
18+
* Fix #4851: Use gateway selector in sciencemesh
19+
* Fix #4850: Write upload session info atomically
20+
* Enh #4866: Unit test the json ocm invite manager
21+
* Enh #4847: Add IsVersion to UploadReadyEvent
22+
* Enh #4868: Improve metadata client errors
23+
* Enh #4848: Add trashbin support to posixfs alongside other improvements
1124

1225
Details
1326
-------
1427

15-
* Bugfix #4843: Allow update of ocm shares
28+
* Bugfix #4854: Added ShareUpdate activity
1629

17-
We fixed a bug that prevented ocm shares to be updated or removed.
30+
Added the ShareUpdate activity in the space context.
1831

19-
https://github.com/owncloud/ocis/issues/9926
20-
https://github.com/cs3org/reva/pull/4843/
21-
https://github.com/cs3org/reva/pull/4840/
32+
https://github.com/owncloud/ocis/issues/10011
33+
https://github.com/cs3org/reva/pull/4854
34+
35+
* Bugfix #4865: Better response codes for app new endpoint
36+
37+
We fixed the response codes for the app new endpoint. Permission denied is now backing the
38+
request.
39+
40+
https://github.com/cs3org/reva/pull/4865
41+
42+
* Bugfix #4858: Better response codes for app new endpoint
43+
44+
We fixed the response codes for the app new endpoint.
45+
46+
https://github.com/cs3org/reva/pull/4858
47+
48+
* Bugfix #4867: Fix remaining space calculation for S3 blobstore
49+
50+
The calculation of the remaining space in the S3 blobstore was incorrectly using the remaining
51+
space of the local disk instead.
52+
53+
https://github.com/cs3org/reva/pull/4867
54+
55+
* Bugfix #4852: Populate public link user correctly
56+
57+
When authenticating via public link, always add the `public` user instead of the link owner
58+
59+
https://github.com/cs3org/reva/pull/4852
60+
61+
* Bugfix #4859: Fixed the collaboration service registration
62+
63+
Fixed an issue when the collaboration service registers apps also for binary and unknown mime
64+
types.
65+
66+
https://github.com/owncloud/ocis/issues/10086
67+
https://github.com/cs3org/reva/pull/4859
68+
69+
* Bugfix #4835: Fix sharejail stat id
70+
71+
Stating a share jail mountpoint now returns the same resourceid as in the directory listing of
72+
the share jail root.
73+
74+
https://github.com/owncloud/ocis/issues/9933
75+
https://github.com/cs3org/reva/pull/4835
76+
77+
* Bugfix #4856: Fix time conversion
78+
79+
We fixed a nil pointer in a time conversion
80+
81+
https://github.com/cs3org/reva/pull/4856
82+
83+
* Bugfix #4851: Use gateway selector in sciencemesh
84+
85+
We now use a selector to get fresh ip addresses when running ocis in a kubernetes clustern.
86+
87+
https://github.com/cs3org/reva/pull/4851
88+
89+
* Bugfix #4850: Write upload session info atomically
90+
91+
We now use a lock and atomic write on upload session metadata to prevent empty reads. A virus scan
92+
event might cause the file to be truncated and then a finished event might try to read the file,
93+
just getting an empty string.
94+
95+
https://github.com/cs3org/reva/pull/4850
96+
97+
* Enhancement #4866: Unit test the json ocm invite manager
98+
99+
We added unit tests for the json ocm invite manager
100+
101+
https://github.com/cs3org/reva/pull/4866
102+
103+
* Enhancement #4847: Add IsVersion to UploadReadyEvent
104+
105+
Adds an IsVersion flag indicating that this upload is a version of an existing file
106+
107+
https://github.com/cs3org/reva/pull/4847
108+
109+
* Enhancement #4868: Improve metadata client errors
110+
111+
We now return a more descripive error message when the metadata client cannot create a space
112+
because it already exists.
113+
114+
https://github.com/cs3org/reva/pull/4868
115+
116+
* Enhancement #4848: Add trashbin support to posixfs alongside other improvements
117+
118+
We added support for trashbins to posixfs. Posixfs also saw a number of other improvement,
119+
bugfixes and optimizations.
120+
121+
https://github.com/cs3org/reva/pull/4848
122+
https://github.com/cs3org/reva/pull/4779
22123

0 commit comments

Comments
 (0)