Skip to content

Commit 71b6998

Browse files
committed
chore: prepare release, bump version
1 parent f863e82 commit 71b6998

File tree

7 files changed

+102
-44
lines changed

7 files changed

+102
-44
lines changed

CHANGELOG.md

+50-21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
Changelog for reva 2.26.4 (2024-11-07)
2+
=======================================
3+
4+
The following sections list the changes in reva 2.26.4 relevant to
5+
reva users. The changes are ordered by importance.
6+
7+
Summary
8+
-------
9+
10+
* Fix #4917: Fix 0-byte file uploads
11+
* Fix #4918: Fix app templates
12+
13+
Details
14+
-------
15+
16+
* Bugfix #4917: Fix 0-byte file uploads
17+
18+
We fixed an issue where 0-byte files upload did not return the Location header.
19+
20+
https://github.com/owncloud/ocis/issues/10469
21+
https://github.com/cs3org/reva/pull/4917
22+
23+
* Bugfix #4918: Fix app templates
24+
25+
We fixed the app templates by using the product name of the providerinfo instead of the provider
26+
name.
27+
28+
https://github.com/cs3org/reva/pull/4918
29+
130
Changelog for reva 2.26.3 (2024-11-06)
231
=======================================
332

@@ -5519,27 +5548,6 @@ Details
55195548

55205549
https://github.com/cs3org/reva/pull/2922
55215550

5522-
Changelog for reva 2.4.1 (2022-05-24)
5523-
=======================================
5524-
5525-
The following sections list the changes in reva 2.4.1 relevant to
5526-
reva users. The changes are ordered by importance.
5527-
5528-
Summary
5529-
-------
5530-
5531-
* Fix #2891: Add missing http status code
5532-
5533-
Details
5534-
-------
5535-
5536-
* Bugfix #2891: Add missing http status code
5537-
5538-
This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
5539-
pass it through.
5540-
5541-
https://github.com/cs3org/reva/pull/2891
5542-
55435551
Changelog for reva 2.4.0 (2022-05-24)
55445552
=======================================
55455553

@@ -5683,6 +5691,27 @@ Details
56835691

56845692
https://github.com/cs3org/reva/pull/2792
56855693

5694+
Changelog for reva 2.4.1 (2022-05-24)
5695+
=======================================
5696+
5697+
The following sections list the changes in reva 2.4.1 relevant to
5698+
reva users. The changes are ordered by importance.
5699+
5700+
Summary
5701+
-------
5702+
5703+
* Fix #2891: Add missing http status code
5704+
5705+
Details
5706+
-------
5707+
5708+
* Bugfix #2891: Add missing http status code
5709+
5710+
This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
5711+
pass it through.
5712+
5713+
https://github.com/cs3org/reva/pull/2891
5714+
56865715
Changelog for reva 2.3.1 (2022-05-08)
56875716
=======================================
56885717

RELEASE_DATE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-11-06
1+
2024-11-07

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.26.3
1+
2.26.4

changelog/NOTE.md

+12-21
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,29 @@
1-
Changelog for reva 2.26.3 (2024-11-06)
1+
Changelog for reva 2.26.4 (2024-11-07)
22
=======================================
33

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

77
Summary
88
-------
99

10-
* Fix #4908: Add checksum to OCM storageprovider responses
11-
* Enh #4910: Bump cs3api
12-
* Enh #4909: Bump cs3api
13-
* Enh #4906: Bump cs3api
10+
* Fix #4917: Fix 0-byte file uploads
11+
* Fix #4918: Fix app templates
1412

1513
Details
1614
-------
1715

18-
* Bugfix #4908: Add checksum to OCM storageprovider responses
16+
* Bugfix #4917: Fix 0-byte file uploads
1917

20-
When the remote instance of the OCM storage provider returns file checksums in its PROPFIND
21-
responses we're now passing them through to in Stat responses. This allows e.g. the oCIS
22-
thumbnailer to work with ocm shares.
18+
We fixed an issue where 0-byte files upload did not return the Location header.
2319

24-
https://github.com/owncloud/ocis/issues/10272
25-
https://github.com/cs3org/reva/pull/4908
20+
https://github.com/owncloud/ocis/issues/10469
21+
https://github.com/cs3org/reva/pull/4917
2622

27-
* Enhancement #4910: Bump cs3api
23+
* Bugfix #4918: Fix app templates
2824

29-
https://github.com/cs3org/reva/pull/4910
25+
We fixed the app templates by using the product name of the providerinfo instead of the provider
26+
name.
3027

31-
* Enhancement #4909: Bump cs3api
32-
33-
https://github.com/cs3org/reva/pull/4909
34-
35-
* Enhancement #4906: Bump cs3api
36-
37-
https://github.com/cs3org/reva/pull/4906
28+
https://github.com/cs3org/reva/pull/4918
3829

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
---
3+
title: "v2.26.4"
4+
linkTitle: "v2.26.4"
5+
weight: 40
6+
description: >
7+
Changelog for Reva v2.26.4 (2024-11-07)
8+
---
9+
10+
Changelog for reva 2.26.4 (2024-11-07)
11+
=======================================
12+
13+
The following sections list the changes in reva 2.26.4 relevant to
14+
reva users. The changes are ordered by importance.
15+
16+
Summary
17+
-------
18+
19+
* Fix #4917: Fix 0-byte file uploads
20+
* Fix #4918: Fix app templates
21+
22+
Details
23+
-------
24+
25+
* Bugfix #4917: Fix 0-byte file uploads
26+
27+
We fixed an issue where 0-byte files upload did not return the Location header.
28+
29+
https://github.com/owncloud/ocis/issues/10469
30+
https://github.com/cs3org/reva/pull/4917
31+
32+
* Bugfix #4918: Fix app templates
33+
34+
We fixed the app templates by using the product name of the providerinfo instead of the provider
35+
name.
36+
37+
https://github.com/cs3org/reva/pull/4918
38+

0 commit comments

Comments
 (0)