Skip to content

Commit

Permalink
chore: prepare release, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
micbar committed Nov 12, 2024
1 parent 66d7b44 commit 37c97fe
Show file tree
Hide file tree
Showing 9 changed files with 151 additions and 36 deletions.
87 changes: 66 additions & 21 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,48 @@
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

Changelog for reva 2.26.4 (2024-11-07)
=======================================

Expand Down Expand Up @@ -5548,6 +5593,27 @@ Details

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

Changelog for reva 2.4.1 (2022-05-24)
=======================================

The following sections list the changes in reva 2.4.1 relevant to
reva users. The changes are ordered by importance.

Summary
-------

* Fix #2891: Add missing http status code

Details
-------

* Bugfix #2891: Add missing http status code

This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
pass it through.

https://github.com/cs3org/reva/pull/2891

Changelog for reva 2.4.0 (2022-05-24)
=======================================

Expand Down Expand Up @@ -5691,27 +5757,6 @@ Details

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

Changelog for reva 2.4.1 (2022-05-24)
=======================================

The following sections list the changes in reva 2.4.1 relevant to
reva users. The changes are ordered by importance.

Summary
-------

* Fix #2891: Add missing http status code

Details
-------

* Bugfix #2891: Add missing http status code

This Fix adds a missing status code to the InsufficientStorage error in reva, to allow tus to
pass it through.

https://github.com/cs3org/reva/pull/2891

Changelog for reva 2.3.1 (2022-05-08)
=======================================

Expand Down
2 changes: 1 addition & 1 deletion RELEASE_DATE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-11-07
2024-11-12
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.26.4
2.26.5
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Enhancement: Improve posixfs stability and performance
Bugfix: Improve posixfs stability and performance

The posixfs storage driver saw a number of bugfixes and optimizations.

Expand Down
40 changes: 28 additions & 12 deletions changelog/NOTE.md
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

54 changes: 54 additions & 0 deletions docs/content/en/docs/changelog/2.26.5/_index.md
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

0 comments on commit 37c97fe

Please sign in to comment.