-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: prepare release, bump version
- Loading branch information
Showing
9 changed files
with
151 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2024-11-07 | ||
2024-11-12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.26.4 | ||
2.26.5 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
changelog/unreleased/improve-posixfs.md → ...elog/2.26.5_2024-11-12/improve-posixfs.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,45 @@ | ||
Changelog for reva 2.26.4 (2024-11-07) | ||
Changelog for reva 2.26.5 (2024-11-12) | ||
======================================= | ||
|
||
The following sections list the changes in reva 2.26.4 relevant to | ||
The following sections list the changes in reva 2.26.5 relevant to | ||
reva users. The changes are ordered by importance. | ||
|
||
Summary | ||
------- | ||
|
||
* Fix #4917: Fix 0-byte file uploads | ||
* Fix #4918: Fix app templates | ||
* Fix #4926: Make etag always match content on downloads | ||
* Fix #4920: Return correct status codes for simple uploads | ||
* Fix #4924: Fix sync propagation | ||
* Fix #4916: Improve posixfs stability and performance | ||
|
||
Details | ||
------- | ||
|
||
* Bugfix #4917: Fix 0-byte file uploads | ||
* Bugfix #4926: Make etag always match content on downloads | ||
|
||
We fixed an issue where 0-byte files upload did not return the Location header. | ||
We added an openReaderfunc to the Download interface to give drivers a way to guarantee that the | ||
reader matches the etag returned in a previous GetMD call. | ||
|
||
https://github.com/owncloud/ocis/issues/10469 | ||
https://github.com/cs3org/reva/pull/4917 | ||
https://github.com/cs3org/reva/pull/4926 | ||
https://github.com/cs3org/reva/pull/4923 | ||
|
||
* Bugfix #4918: Fix app templates | ||
* Bugfix #4920: Return correct status codes for simple uploads | ||
|
||
We fixed the app templates by using the product name of the providerinfo instead of the provider | ||
name. | ||
Decomposedfs now returns the correct precondition failed status code when the etag does not | ||
match. This allows the jsoncs3 share managers optimistic locking to handle concurrent writes | ||
correctly | ||
|
||
https://github.com/cs3org/reva/pull/4918 | ||
https://github.com/cs3org/reva/pull/4920 | ||
|
||
* Bugfix #4924: Fix sync propagation | ||
|
||
Fixes the defers in the sync propagation. | ||
|
||
https://github.com/cs3org/reva/pull/4924 | ||
|
||
* Bugfix #4916: Improve posixfs stability and performance | ||
|
||
The posixfs storage driver saw a number of bugfixes and optimizations. | ||
|
||
https://github.com/cs3org/reva/pull/4916 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
|
||
--- | ||
title: "v2.26.5" | ||
linkTitle: "v2.26.5" | ||
weight: 40 | ||
description: > | ||
Changelog for Reva v2.26.5 (2024-11-12) | ||
--- | ||
|
||
Changelog for reva 2.26.5 (2024-11-12) | ||
======================================= | ||
|
||
The following sections list the changes in reva 2.26.5 relevant to | ||
reva users. The changes are ordered by importance. | ||
|
||
Summary | ||
------- | ||
|
||
* Fix #4926: Make etag always match content on downloads | ||
* Fix #4920: Return correct status codes for simple uploads | ||
* Fix #4924: Fix sync propagation | ||
* Fix #4916: Improve posixfs stability and performance | ||
|
||
Details | ||
------- | ||
|
||
* Bugfix #4926: Make etag always match content on downloads | ||
|
||
We added an openReaderfunc to the Download interface to give drivers a way to guarantee that the | ||
reader matches the etag returned in a previous GetMD call. | ||
|
||
https://github.com/cs3org/reva/pull/4926 | ||
https://github.com/cs3org/reva/pull/4923 | ||
|
||
* Bugfix #4920: Return correct status codes for simple uploads | ||
|
||
Decomposedfs now returns the correct precondition failed status code when the etag does not | ||
match. This allows the jsoncs3 share managers optimistic locking to handle concurrent writes | ||
correctly | ||
|
||
https://github.com/cs3org/reva/pull/4920 | ||
|
||
* Bugfix #4924: Fix sync propagation | ||
|
||
Fixes the defers in the sync propagation. | ||
|
||
https://github.com/cs3org/reva/pull/4924 | ||
|
||
* Bugfix #4916: Improve posixfs stability and performance | ||
|
||
The posixfs storage driver saw a number of bugfixes and optimizations. | ||
|
||
https://github.com/cs3org/reva/pull/4916 | ||
|