Skip to content

Commit 2387674

Browse files
authored
Merge pull request #4860 from 2403905/release-2.19.8
release-2.19.8
2 parents f9a75a1 + 8d725e2 commit 2387674

File tree

9 files changed

+201
-89
lines changed

9 files changed

+201
-89
lines changed

CHANGELOG.md

+69-28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
1+
Changelog for reva 2.19.8 (2024-09-23)
2+
=======================================
3+
4+
The following sections list the changes in reva 2.19.8 relevant to
5+
reva users. The changes are ordered by importance.
6+
7+
Summary
8+
-------
9+
10+
* Fix #4761: Quotes in dav Content-Disposition header
11+
* Fix #4853: Write upload session info atomically
12+
* Enh #4701: Extend service account permissions
13+
14+
Details
15+
-------
16+
17+
* Bugfix #4761: Quotes in dav Content-Disposition header
18+
19+
We've fixed the the quotes in the dav `Content-Disposition` header. They caused an issue where
20+
certain browsers would decode the quotes and falsely prepend them to the filename.
21+
22+
https://github.com/owncloud/web/issues/11031
23+
https://github.com/owncloud/web/issues/11169
24+
https://github.com/cs3org/reva/pull/4761
25+
26+
* Bugfix #4853: Write upload session info atomically
27+
28+
We now use a lock and atomic write on upload session metadata to prevent empty reads. A virus scan
29+
event might cause the file to be truncated and then a finished event might try to read the file,
30+
just getting an empty string.
31+
32+
Backport of https://github.com/cs3org/reva/pull/4850
33+
34+
https://github.com/cs3org/reva/pull/4853
35+
36+
* Enhancement #4701: Extend service account permissions
37+
38+
Adds AddGrant permisson
39+
40+
https://github.com/cs3org/reva/pull/4701
41+
142
Changelog for reva 2.19.7 (2024-05-13)
243
=======================================
344

@@ -3958,6 +3999,34 @@ Details
39583999

39594000
https://github.com/cs3org/reva/pull/3083
39604001

4002+
Changelog for reva 2.7.1 (2022-07-15)
4003+
=======================================
4004+
4005+
The following sections list the changes in reva 2.7.1 relevant to
4006+
reva users. The changes are ordered by importance.
4007+
4008+
Summary
4009+
-------
4010+
4011+
* Fix #3080: Make dataproviders return more headers
4012+
* Enh #3046: Add user filter
4013+
4014+
Details
4015+
-------
4016+
4017+
* Bugfix #3080: Make dataproviders return more headers
4018+
4019+
Instead of ocdav doing an additional Stat request we now rely on the dataprovider to return the
4020+
necessary metadata information as headers.
4021+
4022+
https://github.com/owncloud/reva/issues/3080
4023+
4024+
* Enhancement #3046: Add user filter
4025+
4026+
This PR adds the ability to filter spaces by user-id
4027+
4028+
https://github.com/cs3org/reva/pull/3046
4029+
39614030
Changelog for reva 2.7.0 (2022-07-15)
39624031
=======================================
39634032

@@ -4090,34 +4159,6 @@ Details
40904159
https://github.com/owncloud/ocis/issues/3073
40914160
https://github.com/cs3org/reva/pull/2977
40924161

4093-
Changelog for reva 2.7.1 (2022-07-15)
4094-
=======================================
4095-
4096-
The following sections list the changes in reva 2.7.1 relevant to
4097-
reva users. The changes are ordered by importance.
4098-
4099-
Summary
4100-
-------
4101-
4102-
* Fix #3080: Make dataproviders return more headers
4103-
* Enh #3046: Add user filter
4104-
4105-
Details
4106-
-------
4107-
4108-
* Bugfix #3080: Make dataproviders return more headers
4109-
4110-
Instead of ocdav doing an additional Stat request we now rely on the dataprovider to return the
4111-
necessary metadata information as headers.
4112-
4113-
https://github.com/owncloud/reva/issues/3080
4114-
4115-
* Enhancement #3046: Add user filter
4116-
4117-
This PR adds the ability to filter spaces by user-id
4118-
4119-
https://github.com/cs3org/reva/pull/3046
4120-
41214162
Changelog for reva 2.6.1 (2022-06-27)
41224163
=======================================
41234164

RELEASE_DATE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-05-13
1+
2024-09-23

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.19.7
1+
2.19.8

changelog/NOTE.md

+27-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,41 @@
1-
Changelog for reva 2.19.7 (2024-05-13)
1+
Changelog for reva 2.19.8 (2024-09-23)
22
=======================================
33

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

77
Summary
88
-------
99

10-
* Enh #4673: Add virus filter to list uploads sessions
10+
* Fix #4761: Quotes in dav Content-Disposition header
11+
* Fix #4853: Write upload session info atomically
12+
* Enh #4701: Extend service account permissions
1113

1214
Details
1315
-------
1416

15-
* Enhancement #4673: Add virus filter to list uploads sessions
17+
* Bugfix #4761: Quotes in dav Content-Disposition header
1618

17-
Adds a filter for filtering for infected uploads
19+
We've fixed the the quotes in the dav `Content-Disposition` header. They caused an issue where
20+
certain browsers would decode the quotes and falsely prepend them to the filename.
1821

19-
https://github.com/cs3org/reva/pull/4673
22+
https://github.com/owncloud/web/issues/11031
23+
https://github.com/owncloud/web/issues/11169
24+
https://github.com/cs3org/reva/pull/4761
25+
26+
* Bugfix #4853: Write upload session info atomically
27+
28+
We now use a lock and atomic write on upload session metadata to prevent empty reads. A virus scan
29+
event might cause the file to be truncated and then a finished event might try to read the file,
30+
just getting an empty string.
31+
32+
Backport of https://github.com/cs3org/reva/pull/4850
33+
34+
https://github.com/cs3org/reva/pull/4853
35+
36+
* Enhancement #4701: Extend service account permissions
37+
38+
Adds AddGrant permisson
39+
40+
https://github.com/cs3org/reva/pull/4701
2041

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
2+
---
3+
title: "v2.19.8"
4+
linkTitle: "v2.19.8"
5+
weight: 40
6+
description: >
7+
Changelog for Reva v2.19.8 (2024-09-23)
8+
---
9+
10+
Changelog for reva 2.19.8 (2024-09-23)
11+
=======================================
12+
13+
The following sections list the changes in reva 2.19.8 relevant to
14+
reva users. The changes are ordered by importance.
15+
16+
Summary
17+
-------
18+
19+
* Fix #4761: Quotes in dav Content-Disposition header
20+
* Fix #4853: Write upload session info atomically
21+
* Enh #4701: Extend service account permissions
22+
23+
Details
24+
-------
25+
26+
* Bugfix #4761: Quotes in dav Content-Disposition header
27+
28+
We've fixed the the quotes in the dav `Content-Disposition` header. They caused an issue where
29+
certain browsers would decode the quotes and falsely prepend them to the filename.
30+
31+
https://github.com/owncloud/web/issues/11031
32+
https://github.com/owncloud/web/issues/11169
33+
https://github.com/cs3org/reva/pull/4761
34+
35+
* Bugfix #4853: Write upload session info atomically
36+
37+
We now use a lock and atomic write on upload session metadata to prevent empty reads. A virus scan
38+
event might cause the file to be truncated and then a finished event might try to read the file,
39+
just getting an empty string.
40+
41+
Backport of https://github.com/cs3org/reva/pull/4850
42+
43+
https://github.com/cs3org/reva/pull/4853
44+
45+
* Enhancement #4701: Extend service account permissions
46+
47+
Adds AddGrant permisson
48+
49+
https://github.com/cs3org/reva/pull/4701
50+

0 commit comments

Comments
 (0)