Skip to content

Commit

Permalink
chore: bump version, prepare changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
micbar committed Mar 22, 2024
1 parent fd7b1a4 commit edc7102
Show file tree
Hide file tree
Showing 11 changed files with 195 additions and 11 deletions.
66 changes: 66 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,69 @@
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

Changelog for reva 2.16.3 (2023-11-30)
=======================================

Expand Down
2 changes: 1 addition & 1 deletion RELEASE_DATE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2023-11-30
2024-03-22
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.16.3
2.16.4
61 changes: 52 additions & 9 deletions changelog/NOTE.md
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

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

0 comments on commit edc7102

Please sign in to comment.