Skip to content

Commit 4a0faec

Browse files
committed
release-2.26.2
1 parent 4188019 commit 4a0faec

File tree

7 files changed

+159
-110
lines changed

7 files changed

+159
-110
lines changed

CHANGELOG.md

+69-49
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
Changelog for reva 2.26.2 (2024-10-28)
2+
=======================================
3+
4+
The following sections list the changes in reva 2.26.2 relevant to
5+
reva users. The changes are ordered by importance.
6+
7+
Summary
8+
-------
9+
10+
* Fix #4902: Fix quota calculation
11+
12+
Details
13+
-------
14+
15+
* Bugfix #4902: Fix quota calculation
16+
17+
Quota would show "exceeded" when remaining quota was 0 because total was 0.
18+
19+
https://github.com/cs3org/reva/pull/4902
20+
121
Changelog for reva 2.26.1 (2024-10-25)
222
=======================================
323

@@ -4934,34 +4954,6 @@ Details
49344954

49354955
https://github.com/cs3org/reva/pull/3083
49364956

4937-
Changelog for reva 2.7.1 (2022-07-15)
4938-
=======================================
4939-
4940-
The following sections list the changes in reva 2.7.1 relevant to
4941-
reva users. The changes are ordered by importance.
4942-
4943-
Summary
4944-
-------
4945-
4946-
* Fix #3080: Make dataproviders return more headers
4947-
* Enh #3046: Add user filter
4948-
4949-
Details
4950-
-------
4951-
4952-
* Bugfix #3080: Make dataproviders return more headers
4953-
4954-
Instead of ocdav doing an additional Stat request we now rely on the dataprovider to return the
4955-
necessary metadata information as headers.
4956-
4957-
https://github.com/owncloud/reva/issues/3080
4958-
4959-
* Enhancement #3046: Add user filter
4960-
4961-
This PR adds the ability to filter spaces by user-id
4962-
4963-
https://github.com/cs3org/reva/pull/3046
4964-
49654957
Changelog for reva 2.7.0 (2022-07-15)
49664958
=======================================
49674959

@@ -5094,6 +5086,34 @@ Details
50945086
https://github.com/owncloud/ocis/issues/3073
50955087
https://github.com/cs3org/reva/pull/2977
50965088

5089+
Changelog for reva 2.7.1 (2022-07-15)
5090+
=======================================
5091+
5092+
The following sections list the changes in reva 2.7.1 relevant to
5093+
reva users. The changes are ordered by importance.
5094+
5095+
Summary
5096+
-------
5097+
5098+
* Fix #3080: Make dataproviders return more headers
5099+
* Enh #3046: Add user filter
5100+
5101+
Details
5102+
-------
5103+
5104+
* Bugfix #3080: Make dataproviders return more headers
5105+
5106+
Instead of ocdav doing an additional Stat request we now rely on the dataprovider to return the
5107+
necessary metadata information as headers.
5108+
5109+
https://github.com/owncloud/reva/issues/3080
5110+
5111+
* Enhancement #3046: Add user filter
5112+
5113+
This PR adds the ability to filter spaces by user-id
5114+
5115+
https://github.com/cs3org/reva/pull/3046
5116+
50975117
Changelog for reva 2.6.1 (2022-06-27)
50985118
=======================================
50995119

@@ -5461,27 +5481,6 @@ Details
54615481

54625482
https://github.com/cs3org/reva/pull/2922
54635483

5464-
Changelog for reva 2.4.1 (2022-05-24)
5465-
=======================================
5466-
5467-
The following sections list the changes in reva 2.4.1 relevant to
5468-
reva users. The changes are ordered by importance.
5469-
5470-
Summary
5471-
-------
5472-
5473-
* Fix #2891: Add missing http status code
5474-
5475-
Details
5476-
-------
5477-
5478-
* Bugfix #2891: Add missing http status code
5479-
5480-
This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
5481-
pass it through.
5482-
5483-
https://github.com/cs3org/reva/pull/2891
5484-
54855484
Changelog for reva 2.4.0 (2022-05-24)
54865485
=======================================
54875486

@@ -5625,6 +5624,27 @@ Details
56255624

56265625
https://github.com/cs3org/reva/pull/2792
56275626

5627+
Changelog for reva 2.4.1 (2022-05-24)
5628+
=======================================
5629+
5630+
The following sections list the changes in reva 2.4.1 relevant to
5631+
reva users. The changes are ordered by importance.
5632+
5633+
Summary
5634+
-------
5635+
5636+
* Fix #2891: Add missing http status code
5637+
5638+
Details
5639+
-------
5640+
5641+
* Bugfix #2891: Add missing http status code
5642+
5643+
This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
5644+
pass it through.
5645+
5646+
https://github.com/cs3org/reva/pull/2891
5647+
56285648
Changelog for reva 2.3.1 (2022-05-08)
56295649
=======================================
56305650

RELEASE_DATE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-10-25
1+
2024-10-28

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.26.1
1+
2.26.2

changelog/NOTE.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
Changelog for reva 2.26.1 (2024-10-25)
1+
Changelog for reva 2.26.2 (2024-10-28)
22
=======================================
33

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

77
Summary
88
-------
99

10-
* Enh #4897: Fix remaining quota calculation
10+
* Fix #4902: Fix quota calculation
1111

1212
Details
1313
-------
1414

15-
* Enhancement #4897: Fix remaining quota calculation
15+
* Bugfix #4902: Fix quota calculation
1616

17-
Remaining quota should only be total - used and not take disk space into account.
17+
Quota would show "exceeded" when remaining quota was 0 because total was 0.
1818

19-
https://github.com/cs3org/reva/pull/4897
19+
https://github.com/cs3org/reva/pull/4902
2020

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
---
3+
title: "v2.26.2"
4+
linkTitle: "v2.26.2"
5+
weight: 40
6+
description: >
7+
Changelog for Reva v2.26.2 (2024-10-28)
8+
---
9+
10+
Changelog for reva 2.26.2 (2024-10-28)
11+
=======================================
12+
13+
The following sections list the changes in reva 2.26.2 relevant to
14+
reva users. The changes are ordered by importance.
15+
16+
Summary
17+
-------
18+
19+
* Fix #4902: Fix quota calculation
20+
21+
Details
22+
-------
23+
24+
* Bugfix #4902: Fix quota calculation
25+
26+
Quota would show "exceeded" when remaining quota was 0 because total was 0.
27+
28+
https://github.com/cs3org/reva/pull/4902
29+

0 commit comments

Comments
 (0)