Skip to content

Commit 432edfb

Browse files
committed
chore: prepare release, bump version
1 parent 6d80139 commit 432edfb

File tree

10 files changed

+144
-67
lines changed

10 files changed

+144
-67
lines changed

CHANGELOG.md

+66-21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
Changelog for reva 2.27.0 (2024-12-12)
2+
=======================================
3+
4+
The following sections list the changes in reva 2.27.0 relevant to
5+
reva users. The changes are ordered by importance.
6+
7+
Summary
8+
-------
9+
10+
* Fix #4985: Drop unneeded session locks
11+
* Fix #5000: Fix ceph build
12+
* Fix #4989: Deleting OCM share also updates storageprovider
13+
* Enh #4998: Emit event when an ocm share is received
14+
* Enh #4996: Get rid of some cases of unstructured logging
15+
16+
Details
17+
-------
18+
19+
* Bugfix #4985: Drop unneeded session locks
20+
21+
We no longer lock session metadada files, as they are already written atomically.
22+
23+
https://github.com/cs3org/reva/pull/4985
24+
25+
* Bugfix #5000: Fix ceph build
26+
27+
https://github.com/cs3org/reva/pull/5000
28+
29+
* Bugfix #4989: Deleting OCM share also updates storageprovider
30+
31+
When remvoving an OCM share we're now also removing the related grant from the storage
32+
provider.
33+
34+
https://github.com/owncloud/ocis/issues/10262
35+
https://github.com/cs3org/reva/pull/4989
36+
37+
* Enhancement #4998: Emit event when an ocm share is received
38+
39+
https://github.com/owncloud/ocis/issues/10718
40+
https://github.com/cs3org/reva/pull/4998
41+
42+
* Enhancement #4996: Get rid of some cases of unstructured logging
43+
44+
https://github.com/cs3org/reva/pull/4996
45+
146
Changelog for reva 2.26.8 (2024-12-04)
247
=======================================
348

@@ -5774,6 +5819,27 @@ Details
57745819

57755820
https://github.com/cs3org/reva/pull/2922
57765821

5822+
Changelog for reva 2.4.1 (2022-05-24)
5823+
=======================================
5824+
5825+
The following sections list the changes in reva 2.4.1 relevant to
5826+
reva users. The changes are ordered by importance.
5827+
5828+
Summary
5829+
-------
5830+
5831+
* Fix #2891: Add missing http status code
5832+
5833+
Details
5834+
-------
5835+
5836+
* Bugfix #2891: Add missing http status code
5837+
5838+
This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
5839+
pass it through.
5840+
5841+
https://github.com/cs3org/reva/pull/2891
5842+
57775843
Changelog for reva 2.4.0 (2022-05-24)
57785844
=======================================
57795845

@@ -5917,27 +5983,6 @@ Details
59175983

59185984
https://github.com/cs3org/reva/pull/2792
59195985

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-
59415986
Changelog for reva 2.3.1 (2022-05-08)
59425987
=======================================
59435988

RELEASE_DATE

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

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.26.8
1+
2.27.0

changelog/NOTE.md

+22-44
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,45 @@
1-
Changelog for reva 2.26.8 (2024-12-04)
1+
Changelog for reva 2.27.0 (2024-12-12)
22
=======================================
33

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

77
Summary
88
-------
99

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
10+
* Fix #4985: Drop unneeded session locks
11+
* Fix #5000: Fix ceph build
12+
* Fix #4989: Deleting OCM share also updates storageprovider
13+
* Enh #4998: Emit event when an ocm share is received
14+
* Enh #4996: Get rid of some cases of unstructured logging
1715

1816
Details
1917
-------
2018

21-
* Bugfix #4983: Delete stale shares in the jsoncs3 share manager
19+
* Bugfix #4985: Drop unneeded session locks
2220

23-
The jsoncs3 share manager now properly deletes all references to removed shares and shares
24-
that belong to a space that was deleted
21+
We no longer lock session metadada files, as they are already written atomically.
2522

26-
https://github.com/cs3org/reva/pull/4983
27-
https://github.com/cs3org/reva/pull/4975
23+
https://github.com/cs3org/reva/pull/4985
2824

29-
* Bugfix #4963: Fix name and displayName in an ocm
25+
* Bugfix #5000: Fix ceph build
3026

31-
Fixed name and displayName in an ocm PROPFIND response
27+
https://github.com/cs3org/reva/pull/5000
3228

33-
https://github.com/owncloud/ocis/issues/10582
34-
https://github.com/cs3org/reva/pull/4963
29+
* Bugfix #4989: Deleting OCM share also updates storageprovider
3530

36-
* Bugfix #4968: Jsoncs3 cache fixes
31+
When remvoving an OCM share we're now also removing the related grant from the storage
32+
provider.
3733

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.
34+
https://github.com/owncloud/ocis/issues/10262
35+
https://github.com/cs3org/reva/pull/4989
4036

41-
https://github.com/cs3org/reva/pull/4968
42-
https://github.com/cs3org/reva/pull/4532
37+
* Enhancement #4998: Emit event when an ocm share is received
4338

44-
* Bugfix #4928: Propagate lock in PROPPATCH
39+
https://github.com/owncloud/ocis/issues/10718
40+
https://github.com/cs3org/reva/pull/4998
4541

46-
Clients using locking (ie. Windows) could not create/copy files over webdav as file seemed to
47-
be locked.
42+
* Enhancement #4996: Get rid of some cases of unstructured logging
4843

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
44+
https://github.com/cs3org/reva/pull/4996
6745

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
2+
---
3+
title: "v2.27.0"
4+
linkTitle: "v2.27.0"
5+
weight: 40
6+
description: >
7+
Changelog for Reva v2.27.0 (2024-12-12)
8+
---
9+
10+
Changelog for reva 2.27.0 (2024-12-12)
11+
=======================================
12+
13+
The following sections list the changes in reva 2.27.0 relevant to
14+
reva users. The changes are ordered by importance.
15+
16+
Summary
17+
-------
18+
19+
* Fix #4985: Drop unneeded session locks
20+
* Fix #5000: Fix ceph build
21+
* Fix #4989: Deleting OCM share also updates storageprovider
22+
* Enh #4998: Emit event when an ocm share is received
23+
* Enh #4996: Get rid of some cases of unstructured logging
24+
25+
Details
26+
-------
27+
28+
* Bugfix #4985: Drop unneeded session locks
29+
30+
We no longer lock session metadada files, as they are already written atomically.
31+
32+
https://github.com/cs3org/reva/pull/4985
33+
34+
* Bugfix #5000: Fix ceph build
35+
36+
https://github.com/cs3org/reva/pull/5000
37+
38+
* Bugfix #4989: Deleting OCM share also updates storageprovider
39+
40+
When remvoving an OCM share we're now also removing the related grant from the storage
41+
provider.
42+
43+
https://github.com/owncloud/ocis/issues/10262
44+
https://github.com/cs3org/reva/pull/4989
45+
46+
* Enhancement #4998: Emit event when an ocm share is received
47+
48+
https://github.com/owncloud/ocis/issues/10718
49+
https://github.com/cs3org/reva/pull/4998
50+
51+
* Enhancement #4996: Get rid of some cases of unstructured logging
52+
53+
https://github.com/cs3org/reva/pull/4996
54+

0 commit comments

Comments
 (0)