Skip to content

Commit bddf9f0

Browse files
authored
Merge pull request #4988 from kobergj/release-2.26.8
Release 2.26.8
2 parents 17f3395 + 77eecf5 commit bddf9f0

13 files changed

+248
-59
lines changed

CHANGELOG.md

+116-49
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,70 @@
1+
Changelog for reva 2.26.8 (2024-12-04)
2+
=======================================
3+
4+
The following sections list the changes in reva 2.26.8 relevant to
5+
reva users. The changes are ordered by importance.
6+
7+
Summary
8+
-------
9+
10+
* Fix #4983: Delete stale shares in the jsoncs3 share manager
11+
* Fix #4963: Fix name and displayName in an ocm
12+
* Fix #4968: Jsoncs3 cache fixes
13+
* Fix #4928: Propagate lock in PROPPATCH
14+
* Fix #4971: Use manager to list shares
15+
* Enh #4978: We added more trace spans in decomposedfs
16+
* Enh #4921: Polish propagation related code
17+
18+
Details
19+
-------
20+
21+
* Bugfix #4983: Delete stale shares in the jsoncs3 share manager
22+
23+
The jsoncs3 share manager now properly deletes all references to removed shares and shares
24+
that belong to a space that was deleted
25+
26+
https://github.com/cs3org/reva/pull/4983
27+
https://github.com/cs3org/reva/pull/4975
28+
29+
* Bugfix #4963: Fix name and displayName in an ocm
30+
31+
Fixed name and displayName in an ocm PROPFIND response
32+
33+
https://github.com/owncloud/ocis/issues/10582
34+
https://github.com/cs3org/reva/pull/4963
35+
36+
* Bugfix #4968: Jsoncs3 cache fixes
37+
38+
The jsoncs3 share manager now retries persisting if the file already existed and picks up the
39+
etag of the upload response in all cases.
40+
41+
https://github.com/cs3org/reva/pull/4968
42+
https://github.com/cs3org/reva/pull/4532
43+
44+
* Bugfix #4928: Propagate lock in PROPPATCH
45+
46+
Clients using locking (ie. Windows) could not create/copy files over webdav as file seemed to
47+
be locked.
48+
49+
https://github.com/cs3org/reva/pull/4928
50+
51+
* Bugfix #4971: Use manager to list shares
52+
53+
When updating a received share the usershareprovider now uses the share manager directly to
54+
list received shares instead of going through the gateway again.
55+
56+
https://github.com/cs3org/reva/pull/4971
57+
58+
* Enhancement #4978: We added more trace spans in decomposedfs
59+
60+
https://github.com/cs3org/reva/pull/4978
61+
62+
* Enhancement #4921: Polish propagation related code
63+
64+
We polished some corner cases for propagation that reduce log messages in normal operation.
65+
66+
https://github.com/cs3org/reva/pull/4921
67+
168
Changelog for reva 2.26.7 (2024-11-20)
269
=======================================
370

@@ -5180,34 +5247,6 @@ Details
51805247

51815248
https://github.com/cs3org/reva/pull/3083
51825249

5183-
Changelog for reva 2.7.1 (2022-07-15)
5184-
=======================================
5185-
5186-
The following sections list the changes in reva 2.7.1 relevant to
5187-
reva users. The changes are ordered by importance.
5188-
5189-
Summary
5190-
-------
5191-
5192-
* Fix #3080: Make dataproviders return more headers
5193-
* Enh #3046: Add user filter
5194-
5195-
Details
5196-
-------
5197-
5198-
* Bugfix #3080: Make dataproviders return more headers
5199-
5200-
Instead of ocdav doing an additional Stat request we now rely on the dataprovider to return the
5201-
necessary metadata information as headers.
5202-
5203-
https://github.com/owncloud/reva/issues/3080
5204-
5205-
* Enhancement #3046: Add user filter
5206-
5207-
This PR adds the ability to filter spaces by user-id
5208-
5209-
https://github.com/cs3org/reva/pull/3046
5210-
52115250
Changelog for reva 2.7.0 (2022-07-15)
52125251
=======================================
52135252

@@ -5340,6 +5379,34 @@ Details
53405379
https://github.com/owncloud/ocis/issues/3073
53415380
https://github.com/cs3org/reva/pull/2977
53425381

5382+
Changelog for reva 2.7.1 (2022-07-15)
5383+
=======================================
5384+
5385+
The following sections list the changes in reva 2.7.1 relevant to
5386+
reva users. The changes are ordered by importance.
5387+
5388+
Summary
5389+
-------
5390+
5391+
* Fix #3080: Make dataproviders return more headers
5392+
* Enh #3046: Add user filter
5393+
5394+
Details
5395+
-------
5396+
5397+
* Bugfix #3080: Make dataproviders return more headers
5398+
5399+
Instead of ocdav doing an additional Stat request we now rely on the dataprovider to return the
5400+
necessary metadata information as headers.
5401+
5402+
https://github.com/owncloud/reva/issues/3080
5403+
5404+
* Enhancement #3046: Add user filter
5405+
5406+
This PR adds the ability to filter spaces by user-id
5407+
5408+
https://github.com/cs3org/reva/pull/3046
5409+
53435410
Changelog for reva 2.6.1 (2022-06-27)
53445411
=======================================
53455412

@@ -5707,27 +5774,6 @@ Details
57075774

57085775
https://github.com/cs3org/reva/pull/2922
57095776

5710-
Changelog for reva 2.4.1 (2022-05-24)
5711-
=======================================
5712-
5713-
The following sections list the changes in reva 2.4.1 relevant to
5714-
reva users. The changes are ordered by importance.
5715-
5716-
Summary
5717-
-------
5718-
5719-
* Fix #2891: Add missing http status code
5720-
5721-
Details
5722-
-------
5723-
5724-
* Bugfix #2891: Add missing http status code
5725-
5726-
This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
5727-
pass it through.
5728-
5729-
https://github.com/cs3org/reva/pull/2891
5730-
57315777
Changelog for reva 2.4.0 (2022-05-24)
57325778
=======================================
57335779

@@ -5871,6 +5917,27 @@ Details
58715917

58725918
https://github.com/cs3org/reva/pull/2792
58735919

5920+
Changelog for reva 2.4.1 (2022-05-24)
5921+
=======================================
5922+
5923+
The following sections list the changes in reva 2.4.1 relevant to
5924+
reva users. The changes are ordered by importance.
5925+
5926+
Summary
5927+
-------
5928+
5929+
* Fix #2891: Add missing http status code
5930+
5931+
Details
5932+
-------
5933+
5934+
* Bugfix #2891: Add missing http status code
5935+
5936+
This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
5937+
pass it through.
5938+
5939+
https://github.com/cs3org/reva/pull/2891
5940+
58745941
Changelog for reva 2.3.1 (2022-05-08)
58755942
=======================================
58765943

RELEASE_DATE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-11-20
1+
2024-12-04

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.26.7
1+
2.26.8
File renamed without changes.

changelog/NOTE.md

+53-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,67 @@
1-
Changelog for reva 2.26.7 (2024-11-20)
1+
Changelog for reva 2.26.8 (2024-12-04)
22
=======================================
33

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

77
Summary
88
-------
99

10-
* Fix #4964: Fix a wrong error code when approvider creates a new file
10+
* Fix #4983: Delete stale shares in the jsoncs3 share manager
11+
* Fix #4963: Fix name and displayName in an ocm
12+
* Fix #4968: Jsoncs3 cache fixes
13+
* Fix #4928: Propagate lock in PROPPATCH
14+
* Fix #4971: Use manager to list shares
15+
* Enh #4978: We added more trace spans in decomposedfs
16+
* Enh #4921: Polish propagation related code
1117

1218
Details
1319
-------
1420

15-
* Bugfix #4964: Fix a wrong error code when approvider creates a new file
21+
* Bugfix #4983: Delete stale shares in the jsoncs3 share manager
1622

17-
We fixed a problem where the approvider would return a 500 error instead of 403 when trying to
18-
create a new file in a read-only share.
23+
The jsoncs3 share manager now properly deletes all references to removed shares and shares
24+
that belong to a space that was deleted
1925

20-
https://github.com/cs3org/reva/pull/4964
26+
https://github.com/cs3org/reva/pull/4983
27+
https://github.com/cs3org/reva/pull/4975
28+
29+
* Bugfix #4963: Fix name and displayName in an ocm
30+
31+
Fixed name and displayName in an ocm PROPFIND response
32+
33+
https://github.com/owncloud/ocis/issues/10582
34+
https://github.com/cs3org/reva/pull/4963
35+
36+
* Bugfix #4968: Jsoncs3 cache fixes
37+
38+
The jsoncs3 share manager now retries persisting if the file already existed and picks up the
39+
etag of the upload response in all cases.
40+
41+
https://github.com/cs3org/reva/pull/4968
42+
https://github.com/cs3org/reva/pull/4532
43+
44+
* Bugfix #4928: Propagate lock in PROPPATCH
45+
46+
Clients using locking (ie. Windows) could not create/copy files over webdav as file seemed to
47+
be locked.
48+
49+
https://github.com/cs3org/reva/pull/4928
50+
51+
* Bugfix #4971: Use manager to list shares
52+
53+
When updating a received share the usershareprovider now uses the share manager directly to
54+
list received shares instead of going through the gateway again.
55+
56+
https://github.com/cs3org/reva/pull/4971
57+
58+
* Enhancement #4978: We added more trace spans in decomposedfs
59+
60+
https://github.com/cs3org/reva/pull/4978
61+
62+
* Enhancement #4921: Polish propagation related code
63+
64+
We polished some corner cases for propagation that reduce log messages in normal operation.
65+
66+
https://github.com/cs3org/reva/pull/4921
2167

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
2+
---
3+
title: "v2.26.8"
4+
linkTitle: "v2.26.8"
5+
weight: 40
6+
description: >
7+
Changelog for Reva v2.26.8 (2024-12-04)
8+
---
9+
10+
Changelog for reva 2.26.8 (2024-12-04)
11+
=======================================
12+
13+
The following sections list the changes in reva 2.26.8 relevant to
14+
reva users. The changes are ordered by importance.
15+
16+
Summary
17+
-------
18+
19+
* Fix #4983: Delete stale shares in the jsoncs3 share manager
20+
* Fix #4963: Fix name and displayName in an ocm
21+
* Fix #4968: Jsoncs3 cache fixes
22+
* Fix #4928: Propagate lock in PROPPATCH
23+
* Fix #4971: Use manager to list shares
24+
* Enh #4978: We added more trace spans in decomposedfs
25+
* Enh #4921: Polish propagation related code
26+
27+
Details
28+
-------
29+
30+
* Bugfix #4983: Delete stale shares in the jsoncs3 share manager
31+
32+
The jsoncs3 share manager now properly deletes all references to removed shares and shares
33+
that belong to a space that was deleted
34+
35+
https://github.com/cs3org/reva/pull/4983
36+
https://github.com/cs3org/reva/pull/4975
37+
38+
* Bugfix #4963: Fix name and displayName in an ocm
39+
40+
Fixed name and displayName in an ocm PROPFIND response
41+
42+
https://github.com/owncloud/ocis/issues/10582
43+
https://github.com/cs3org/reva/pull/4963
44+
45+
* Bugfix #4968: Jsoncs3 cache fixes
46+
47+
The jsoncs3 share manager now retries persisting if the file already existed and picks up the
48+
etag of the upload response in all cases.
49+
50+
https://github.com/cs3org/reva/pull/4968
51+
https://github.com/cs3org/reva/pull/4532
52+
53+
* Bugfix #4928: Propagate lock in PROPPATCH
54+
55+
Clients using locking (ie. Windows) could not create/copy files over webdav as file seemed to
56+
be locked.
57+
58+
https://github.com/cs3org/reva/pull/4928
59+
60+
* Bugfix #4971: Use manager to list shares
61+
62+
When updating a received share the usershareprovider now uses the share manager directly to
63+
list received shares instead of going through the gateway again.
64+
65+
https://github.com/cs3org/reva/pull/4971
66+
67+
* Enhancement #4978: We added more trace spans in decomposedfs
68+
69+
https://github.com/cs3org/reva/pull/4978
70+
71+
* Enhancement #4921: Polish propagation related code
72+
73+
We polished some corner cases for propagation that reduce log messages in normal operation.
74+
75+
https://github.com/cs3org/reva/pull/4921
76+

tools/prepare-release/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func main() {
5454
}
5555

5656
// also the build is okay
57-
cmd := exec.Command("make", "all")
57+
cmd := exec.Command("make", "gen-doc")
5858
run(cmd)
5959

6060
fmt.Printf("Generating new release: version=%s\n", *version)

0 commit comments

Comments
 (0)