-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump version, prepare changelog
- Loading branch information
Showing
11 changed files
with
195 additions
and
11 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 @@ | ||
2023-11-30 | ||
2024-03-22 |
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.16.3 | ||
2.16.4 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,23 +1,66 @@ | ||
Changelog for reva 2.16.3 (2023-11-30) | ||
Changelog for reva 2.16.4 (2024-03-22) | ||
======================================= | ||
|
||
The following sections list the changes in reva 2.16.3 relevant to | ||
The following sections list the changes in reva 2.16.4 relevant to | ||
reva users. The changes are ordered by importance. | ||
|
||
Summary | ||
------- | ||
|
||
* Enh #4377: Handle trashbin file listings concurrently | ||
* Fix #4398: Fix ceph build | ||
* Fix #4396: Allow an empty credentials chain in the auth middleware | ||
* Fix #4423: Fix disconnected traces | ||
* Fix #4590: Fix uploading via a public link | ||
* Fix #4470: Keep failed processing status | ||
* Enh #4397: Introduce UploadSessionLister interface | ||
|
||
Details | ||
------- | ||
|
||
* Enhancement #4377: Handle trashbin file listings concurrently | ||
* Bugfix #4398: Fix ceph build | ||
|
||
We now use a concurrent walker to list files in the trashbin. This improves performance when | ||
listing files in the trashbin. | ||
Fix ceph build as already fixed in edge | ||
|
||
https://github.com/owncloud/ocis/issues/7844 | ||
https://github.com/cs3org/reva/pull/4377 | ||
https://github.com/cs3org/reva/pull/4374 | ||
https://github.com/cs3org/reva/pull/4398 | ||
https://github.com/cs3org/reva/pull/4147 | ||
|
||
* Bugfix #4396: Allow an empty credentials chain in the auth middleware | ||
|
||
When running with ocis, all external http-authentication is handled by the proxy service. So | ||
the reva auth middleware should not try to do any basic or bearer auth. | ||
|
||
https://github.com/owncloud/ocis/issues/6692 | ||
https://github.com/cs3org/reva/pull/4396 | ||
https://github.com/cs3org/reva/pull/4241 | ||
|
||
* Bugfix #4423: Fix disconnected traces | ||
|
||
We fixed a problem where the appctx logger was using a new traceid instead of picking up the one | ||
from the trace parent. | ||
|
||
https://github.com/cs3org/reva/pull/4423 | ||
|
||
* Bugfix #4590: Fix uploading via a public link | ||
|
||
Fix http error when uploading via a public link | ||
|
||
https://github.com/owncloud/ocis/issues/8658 | ||
https://github.com/owncloud/ocis/issues/8629 | ||
https://github.com/cs3org/reva/pull/4590 | ||
|
||
* Bugfix #4470: Keep failed processing status | ||
|
||
We now keep the postprocessing status when a blob could not be copied to the blobstore. | ||
|
||
https://github.com/cs3org/reva/pull/4470 | ||
https://github.com/cs3org/reva/pull/4449 | ||
|
||
* Enhancement #4397: Introduce UploadSessionLister interface | ||
|
||
We introduced a new UploadSessionLister interface that allows better control of upload | ||
sessions. Upload sessions include the processing state and can be used to filter and purge the | ||
list of currently ongoing upload sessions. | ||
|
||
https://github.com/cs3org/reva/pull/4397 | ||
https://github.com/cs3org/reva/pull/4375 | ||
|
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,75 @@ | ||
|
||
--- | ||
title: "v2.16.4" | ||
linkTitle: "v2.16.4" | ||
weight: 40 | ||
description: > | ||
Changelog for Reva v2.16.4 (2024-03-22) | ||
--- | ||
|
||
Changelog for reva 2.16.4 (2024-03-22) | ||
======================================= | ||
|
||
The following sections list the changes in reva 2.16.4 relevant to | ||
reva users. The changes are ordered by importance. | ||
|
||
Summary | ||
------- | ||
|
||
* Fix #4398: Fix ceph build | ||
* Fix #4396: Allow an empty credentials chain in the auth middleware | ||
* Fix #4423: Fix disconnected traces | ||
* Fix #4590: Fix uploading via a public link | ||
* Fix #4470: Keep failed processing status | ||
* Enh #4397: Introduce UploadSessionLister interface | ||
|
||
Details | ||
------- | ||
|
||
* Bugfix #4398: Fix ceph build | ||
|
||
Fix ceph build as already fixed in edge | ||
|
||
https://github.com/cs3org/reva/pull/4398 | ||
https://github.com/cs3org/reva/pull/4147 | ||
|
||
* Bugfix #4396: Allow an empty credentials chain in the auth middleware | ||
|
||
When running with ocis, all external http-authentication is handled by the proxy service. So | ||
the reva auth middleware should not try to do any basic or bearer auth. | ||
|
||
https://github.com/owncloud/ocis/issues/6692 | ||
https://github.com/cs3org/reva/pull/4396 | ||
https://github.com/cs3org/reva/pull/4241 | ||
|
||
* Bugfix #4423: Fix disconnected traces | ||
|
||
We fixed a problem where the appctx logger was using a new traceid instead of picking up the one | ||
from the trace parent. | ||
|
||
https://github.com/cs3org/reva/pull/4423 | ||
|
||
* Bugfix #4590: Fix uploading via a public link | ||
|
||
Fix http error when uploading via a public link | ||
|
||
https://github.com/owncloud/ocis/issues/8658 | ||
https://github.com/owncloud/ocis/issues/8629 | ||
https://github.com/cs3org/reva/pull/4590 | ||
|
||
* Bugfix #4470: Keep failed processing status | ||
|
||
We now keep the postprocessing status when a blob could not be copied to the blobstore. | ||
|
||
https://github.com/cs3org/reva/pull/4470 | ||
https://github.com/cs3org/reva/pull/4449 | ||
|
||
* Enhancement #4397: Introduce UploadSessionLister interface | ||
|
||
We introduced a new UploadSessionLister interface that allows better control of upload | ||
sessions. Upload sessions include the processing state and can be used to filter and purge the | ||
list of currently ongoing upload sessions. | ||
|
||
https://github.com/cs3org/reva/pull/4397 | ||
https://github.com/cs3org/reva/pull/4375 | ||
|