Skip to content

Commit

Permalink
prepare relase, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
micbar committed May 17, 2023
1 parent de5cc4a commit c560d42
Show file tree
Hide file tree
Showing 16 changed files with 309 additions and 39 deletions.
141 changes: 120 additions & 21 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,102 @@
Changelog for reva 2.13.3 (2023-05-17)
=======================================

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

Summary
-------

* Fix #3890: Bring back public link sharing of project space roots
* Fix #3888: We fixed a bug that unnecessarily fetched all members of a group
* Fix #3886: Decomposedfs no longer deadlocks when cache is disabled
* Fix #3892: Fix public links
* Fix #3876: Remove go-micro/store/redis specific workaround
* Fix #3889: Update space root mtime when changing space metadata
* Fix #3836: Fix spaceID in the decomposedFS
* Fix #3867: Restore last version after positive result
* Fix #3849: Prevent sharing space roots and personal spaces
* Enh #3865: Remove unneccessary code from gateway
* Enh #3895: Add missing expiry date to shares

Details
-------

* Bugfix #3890: Bring back public link sharing of project space roots

We reenabled sharing of project space roots

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

* Bugfix #3888: We fixed a bug that unnecessarily fetched all members of a group

Adding or removing groups to spaces is now done without retrieving all group members

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

* Bugfix #3886: Decomposedfs no longer deadlocks when cache is disabled

We now pass a Reader for the locked file to lower level functions so metadata can be read without
aquiring a new file lock.

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

* Bugfix #3892: Fix public links

Public links would not work when not send on the root level. Reason was wrong path matching. Also
fixes a critical bug that was unfound before

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

* Bugfix #3876: Remove go-micro/store/redis specific workaround

We submitted an upstream fix for an issue in the go-micro/store redis plugin. Which allowed us
to remove a redis specific workaround from the reva storage cache implementation.

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

* Bugfix #3889: Update space root mtime when changing space metadata

We fixed a problem where space mtimes were not updated when their metadata changed, resulting
in changes not being picked up by other services like search.

https://github.com/owncloud/ocis/issues/6289
https://github.com/cs3org/reva/pull/3889

* Bugfix #3836: Fix spaceID in the decomposedFS

We returned the wrong spaceID within ``storageSpaceFromNode``. This was fixed and the
storageprovider ID handling refactored.

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

* Bugfix #3867: Restore last version after positive result

We fixed a bug in the copy routine that prevented restoring of a previous version after
post-processing (e.g. virus scanning)

https://github.com/owncloud/enterprise/issues/5709
https://github.com/cs3org/reva/pull/3867

* Bugfix #3849: Prevent sharing space roots and personal spaces

We fixed a problem where sharing space roots or adding members to a personal space was possible.

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

* Enhancement #3865: Remove unneccessary code from gateway

Delete unused removeReference code from gateway

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

* Enhancement #3895: Add missing expiry date to shares

We have added expiry dates to the shares

https://github.com/owncloud/ocis/issues/5442
https://github.com/cs3org/reva/pull/3895

Changelog for reva 2.13.2 (2023-05-08)
=======================================

Expand Down Expand Up @@ -2276,27 +2375,6 @@ 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 @@ -2440,6 +2518,27 @@ 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 @@
2023-05-08
2023-05-17
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.13.2
2.13.3
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
95 changes: 79 additions & 16 deletions changelog/NOTE.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,99 @@
Changelog for reva 2.13.2 (2023-05-08)
Changelog for reva 2.13.3 (2023-05-17)
=======================================

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

Summary
-------

* Fix #3845: Fix propagation
* Fix #3856: Fix response code
* Fix #3857: Fix trashbin purge
* Fix #3890: Bring back public link sharing of project space roots
* Fix #3888: We fixed a bug that unnecessarily fetched all members of a group
* Fix #3886: Decomposedfs no longer deadlocks when cache is disabled
* Fix #3892: Fix public links
* Fix #3876: Remove go-micro/store/redis specific workaround
* Fix #3889: Update space root mtime when changing space metadata
* Fix #3836: Fix spaceID in the decomposedFS
* Fix #3867: Restore last version after positive result
* Fix #3849: Prevent sharing space roots and personal spaces
* Enh #3865: Remove unneccessary code from gateway
* Enh #3895: Add missing expiry date to shares

Details
-------

* Bugfix #3845: Fix propagation
* Bugfix #3890: Bring back public link sharing of project space roots

Fix propagation in concurrency scenarios
We reenabled sharing of project space roots

https://github.com/cs3org/reva/pull/3845
https://github.com/cs3org/reva/pull/3890

* Bugfix #3856: Fix response code
* Bugfix #3888: We fixed a bug that unnecessarily fetched all members of a group

The DeleteStorageSpace method response code has been changed
Adding or removing groups to spaces is now done without retrieving all group members

https://github.com/cs3org/reva/pull/3856
https://github.com/cs3org/reva/pull/3888

* Bugfix #3857: Fix trashbin purge
* Bugfix #3886: Decomposedfs no longer deadlocks when cache is disabled

We have fixed a nil-pointer-exception, when purging files from the trashbin that do not have a
parent (any more)
We now pass a Reader for the locked file to lower level functions so metadata can be read without
aquiring a new file lock.

https://github.com/owncloud/ocis/issues/6245
https://github.com/cs3org/reva/pull/3857
https://github.com/cs3org/reva/pull/3886

* Bugfix #3892: Fix public links

Public links would not work when not send on the root level. Reason was wrong path matching. Also
fixes a critical bug that was unfound before

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

* Bugfix #3876: Remove go-micro/store/redis specific workaround

We submitted an upstream fix for an issue in the go-micro/store redis plugin. Which allowed us
to remove a redis specific workaround from the reva storage cache implementation.

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

* Bugfix #3889: Update space root mtime when changing space metadata

We fixed a problem where space mtimes were not updated when their metadata changed, resulting
in changes not being picked up by other services like search.

https://github.com/owncloud/ocis/issues/6289
https://github.com/cs3org/reva/pull/3889

* Bugfix #3836: Fix spaceID in the decomposedFS

We returned the wrong spaceID within ``storageSpaceFromNode``. This was fixed and the
storageprovider ID handling refactored.

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

* Bugfix #3867: Restore last version after positive result

We fixed a bug in the copy routine that prevented restoring of a previous version after
post-processing (e.g. virus scanning)

https://github.com/owncloud/enterprise/issues/5709
https://github.com/cs3org/reva/pull/3867

* Bugfix #3849: Prevent sharing space roots and personal spaces

We fixed a problem where sharing space roots or adding members to a personal space was possible.

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

* Enhancement #3865: Remove unneccessary code from gateway

Delete unused removeReference code from gateway

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

* Enhancement #3895: Add missing expiry date to shares

We have added expiry dates to the shares

https://github.com/owncloud/ocis/issues/5442
https://github.com/cs3org/reva/pull/3895

108 changes: 108 additions & 0 deletions docs/content/en/docs/changelog/2.13.3/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@

---
title: "v2.13.3"
linkTitle: "v2.13.3"
weight: 40
description: >
Changelog for Reva v2.13.3 (2023-05-17)
---

Changelog for reva 2.13.3 (2023-05-17)
=======================================

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

Summary
-------

* Fix #3890: Bring back public link sharing of project space roots
* Fix #3888: We fixed a bug that unnecessarily fetched all members of a group
* Fix #3886: Decomposedfs no longer deadlocks when cache is disabled
* Fix #3892: Fix public links
* Fix #3876: Remove go-micro/store/redis specific workaround
* Fix #3889: Update space root mtime when changing space metadata
* Fix #3836: Fix spaceID in the decomposedFS
* Fix #3867: Restore last version after positive result
* Fix #3849: Prevent sharing space roots and personal spaces
* Enh #3865: Remove unneccessary code from gateway
* Enh #3895: Add missing expiry date to shares

Details
-------

* Bugfix #3890: Bring back public link sharing of project space roots

We reenabled sharing of project space roots

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

* Bugfix #3888: We fixed a bug that unnecessarily fetched all members of a group

Adding or removing groups to spaces is now done without retrieving all group members

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

* Bugfix #3886: Decomposedfs no longer deadlocks when cache is disabled

We now pass a Reader for the locked file to lower level functions so metadata can be read without
aquiring a new file lock.

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

* Bugfix #3892: Fix public links

Public links would not work when not send on the root level. Reason was wrong path matching. Also
fixes a critical bug that was unfound before

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

* Bugfix #3876: Remove go-micro/store/redis specific workaround

We submitted an upstream fix for an issue in the go-micro/store redis plugin. Which allowed us
to remove a redis specific workaround from the reva storage cache implementation.

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

* Bugfix #3889: Update space root mtime when changing space metadata

We fixed a problem where space mtimes were not updated when their metadata changed, resulting
in changes not being picked up by other services like search.

https://github.com/owncloud/ocis/issues/6289
https://github.com/cs3org/reva/pull/3889

* Bugfix #3836: Fix spaceID in the decomposedFS

We returned the wrong spaceID within ``storageSpaceFromNode``. This was fixed and the
storageprovider ID handling refactored.

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

* Bugfix #3867: Restore last version after positive result

We fixed a bug in the copy routine that prevented restoring of a previous version after
post-processing (e.g. virus scanning)

https://github.com/owncloud/enterprise/issues/5709
https://github.com/cs3org/reva/pull/3867

* Bugfix #3849: Prevent sharing space roots and personal spaces

We fixed a problem where sharing space roots or adding members to a personal space was possible.

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

* Enhancement #3865: Remove unneccessary code from gateway

Delete unused removeReference code from gateway

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

* Enhancement #3895: Add missing expiry date to shares

We have added expiry dates to the shares

https://github.com/owncloud/ocis/issues/5442
https://github.com/cs3org/reva/pull/3895

0 comments on commit c560d42

Please sign in to comment.