Skip to content

Commit 2243617

Browse files
committed
Preparing version 3.3.3
1 parent 9215c52 commit 2243617

File tree

10 files changed

+143
-13
lines changed

10 files changed

+143
-13
lines changed

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,53 @@
1+
Changelog for reva 3.3.3 (2025-11-07)
2+
=======================================
3+
4+
The following sections list the changes in reva 3.3.3 relevant to
5+
reva users. The changes are ordered by importance.
6+
7+
Summary
8+
-------
9+
10+
* Fix #5393: Correct content-length when downloading versions
11+
* Fix #5380: Nilpointer in getPermissionsByCs3Reference
12+
* Fix #5388: Error code not checked correctly in eosclient
13+
* Fix #5392: Fixed permissions for upload-only links
14+
* Enh #5394: Fixed some logging going to stderr
15+
16+
Details
17+
-------
18+
19+
* Bugfix #5393: Correct content-length when downloading versions
20+
21+
This fix corrects a bug introduced with the implementation of range requests, in
22+
https://github.com/cs3org/reva/pull/5367, where the content-length header was not
23+
populated correctly when downloading versions of a file, resulting in 0b.
24+
25+
https://github.com/cs3org/reva/pull/5393
26+
27+
* Bugfix #5380: Nilpointer in getPermissionsByCs3Reference
28+
29+
Fix for potential nilpointer: when an err is returned, the status can be nil
30+
31+
https://github.com/cs3org/reva/pull/5380
32+
33+
* Bugfix #5388: Error code not checked correctly in eosclient
34+
35+
Eosclient was returning an error when it actually succeeded
36+
37+
https://github.com/cs3org/reva/pull/5388
38+
39+
* Bugfix #5392: Fixed permissions for upload-only links
40+
41+
Pending a proper refactoring of the permissions model, this PR fixes the bug unveiled after
42+
merging #5364. Cf. also Jira CERNBOX-4127.
43+
44+
https://github.com/cs3org/reva/pull/5392
45+
46+
* Enhancement #5394: Fixed some logging going to stderr
47+
48+
https://github.com/cs3org/reva/pull/5394
49+
50+
151
Changelog for reva 3.3.1 (2025-10-21)
252
=======================================
353

RELEASE_DATE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-10-21
1+
2025-11-07

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.1
1+
3.3.3
File renamed without changes.
File renamed without changes.
File renamed without changes.

changelog/NOTE.md

Lines changed: 32 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,50 @@
1-
Changelog for reva 3.3.1 (2025-10-21)
1+
Changelog for reva 3.3.3 (2025-11-07)
22
=======================================
33

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

77
Summary
88
-------
99

10-
* Fix #5376: Deny access shares should not be returned in SharedWithMe call
11-
* Fix #5375: Fix parsing of OCM Address in case of more than one "@" present
10+
* Fix #5393: Correct content-length when downloading versions
11+
* Fix #5380: Nilpointer in getPermissionsByCs3Reference
12+
* Fix #5388: Error code not checked correctly in eosclient
13+
* Fix #5392: Fixed permissions for upload-only links
14+
* Enh #5394: Fixed some logging going to stderr
1215

1316
Details
1417
-------
1518

16-
* Bugfix #5376: Deny access shares should not be returned in SharedWithMe call
19+
* Bugfix #5393: Correct content-length when downloading versions
1720

18-
- SharedWithMe no longer returns deny access shares
21+
This fix corrects a bug introduced with the implementation of range requests, in
22+
https://github.com/cs3org/reva/pull/5367, where the content-length header was not
23+
populated correctly when downloading versions of a file, resulting in 0b.
1924

20-
https://github.com/cs3org/reva/pull/5376
25+
https://github.com/cs3org/reva/pull/5393
2126

22-
* Bugfix #5375: Fix parsing of OCM Address in case of more than one "@" present
27+
* Bugfix #5380: Nilpointer in getPermissionsByCs3Reference
2328

24-
I've fixed the behavior for parsing a long-standing annoyance for users who had OCM Address
25-
like "mahdi-baghbani@it-department@azadehafzar.io".
29+
Fix for potential nilpointer: when an err is returned, the status can be nil
2630

27-
https://github.com/cs3org/reva/pull/5375
31+
https://github.com/cs3org/reva/pull/5380
32+
33+
* Bugfix #5388: Error code not checked correctly in eosclient
34+
35+
Eosclient was returning an error when it actually succeeded
36+
37+
https://github.com/cs3org/reva/pull/5388
38+
39+
* Bugfix #5392: Fixed permissions for upload-only links
40+
41+
Pending a proper refactoring of the permissions model, this PR fixes the bug unveiled after
42+
merging #5364. Cf. also Jira CERNBOX-4127.
43+
44+
https://github.com/cs3org/reva/pull/5392
45+
46+
* Enhancement #5394: Fixed some logging going to stderr
47+
48+
https://github.com/cs3org/reva/pull/5394
2849

2950

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
2+
---
3+
title: "v3.3.3"
4+
linkTitle: "v3.3.3"
5+
weight: 999667
6+
description: >
7+
Changelog for Reva v3.3.3 (2025-11-07)
8+
---
9+
10+
Changelog for reva 3.3.3 (2025-11-07)
11+
=======================================
12+
13+
The following sections list the changes in reva 3.3.3 relevant to
14+
reva users. The changes are ordered by importance.
15+
16+
Summary
17+
-------
18+
19+
* Fix #5393: Correct content-length when downloading versions
20+
* Fix #5380: Nilpointer in getPermissionsByCs3Reference
21+
* Fix #5388: Error code not checked correctly in eosclient
22+
* Fix #5392: Fixed permissions for upload-only links
23+
* Enh #5394: Fixed some logging going to stderr
24+
25+
Details
26+
-------
27+
28+
* Bugfix #5393: Correct content-length when downloading versions
29+
30+
This fix corrects a bug introduced with the implementation of range requests, in
31+
https://github.com/cs3org/reva/pull/5367, where the content-length header was not
32+
populated correctly when downloading versions of a file, resulting in 0b.
33+
34+
https://github.com/cs3org/reva/pull/5393
35+
36+
* Bugfix #5380: Nilpointer in getPermissionsByCs3Reference
37+
38+
Fix for potential nilpointer: when an err is returned, the status can be nil
39+
40+
https://github.com/cs3org/reva/pull/5380
41+
42+
* Bugfix #5388: Error code not checked correctly in eosclient
43+
44+
Eosclient was returning an error when it actually succeeded
45+
46+
https://github.com/cs3org/reva/pull/5388
47+
48+
* Bugfix #5392: Fixed permissions for upload-only links
49+
50+
Pending a proper refactoring of the permissions model, this PR fixes the bug unveiled after
51+
merging #5364. Cf. also Jira CERNBOX-4127.
52+
53+
https://github.com/cs3org/reva/pull/5392
54+
55+
* Enhancement #5394: Fixed some logging going to stderr
56+
57+
https://github.com/cs3org/reva/pull/5394
58+
59+

0 commit comments

Comments
 (0)