-
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.
Merge pull request #4988 from kobergj/release-2.26.8
Release 2.26.8
- Loading branch information
Showing
13 changed files
with
248 additions
and
59 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-20 | ||
2024-12-04 |
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.7 | ||
2.26.8 |
File renamed without changes.
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,21 +1,67 @@ | ||
Changelog for reva 2.26.7 (2024-11-20) | ||
Changelog for reva 2.26.8 (2024-12-04) | ||
======================================= | ||
|
||
The following sections list the changes in reva 2.26.7 relevant to | ||
The following sections list the changes in reva 2.26.8 relevant to | ||
reva users. The changes are ordered by importance. | ||
|
||
Summary | ||
------- | ||
|
||
* Fix #4964: Fix a wrong error code when approvider creates a new file | ||
* Fix #4983: Delete stale shares in the jsoncs3 share manager | ||
* Fix #4963: Fix name and displayName in an ocm | ||
* Fix #4968: Jsoncs3 cache fixes | ||
* Fix #4928: Propagate lock in PROPPATCH | ||
* Fix #4971: Use manager to list shares | ||
* Enh #4978: We added more trace spans in decomposedfs | ||
* Enh #4921: Polish propagation related code | ||
|
||
Details | ||
------- | ||
|
||
* Bugfix #4964: Fix a wrong error code when approvider creates a new file | ||
* Bugfix #4983: Delete stale shares in the jsoncs3 share manager | ||
|
||
We fixed a problem where the approvider would return a 500 error instead of 403 when trying to | ||
create a new file in a read-only share. | ||
The jsoncs3 share manager now properly deletes all references to removed shares and shares | ||
that belong to a space that was deleted | ||
|
||
https://github.com/cs3org/reva/pull/4964 | ||
https://github.com/cs3org/reva/pull/4983 | ||
https://github.com/cs3org/reva/pull/4975 | ||
|
||
* Bugfix #4963: Fix name and displayName in an ocm | ||
|
||
Fixed name and displayName in an ocm PROPFIND response | ||
|
||
https://github.com/owncloud/ocis/issues/10582 | ||
https://github.com/cs3org/reva/pull/4963 | ||
|
||
* Bugfix #4968: Jsoncs3 cache fixes | ||
|
||
The jsoncs3 share manager now retries persisting if the file already existed and picks up the | ||
etag of the upload response in all cases. | ||
|
||
https://github.com/cs3org/reva/pull/4968 | ||
https://github.com/cs3org/reva/pull/4532 | ||
|
||
* Bugfix #4928: Propagate lock in PROPPATCH | ||
|
||
Clients using locking (ie. Windows) could not create/copy files over webdav as file seemed to | ||
be locked. | ||
|
||
https://github.com/cs3org/reva/pull/4928 | ||
|
||
* Bugfix #4971: Use manager to list shares | ||
|
||
When updating a received share the usershareprovider now uses the share manager directly to | ||
list received shares instead of going through the gateway again. | ||
|
||
https://github.com/cs3org/reva/pull/4971 | ||
|
||
* Enhancement #4978: We added more trace spans in decomposedfs | ||
|
||
https://github.com/cs3org/reva/pull/4978 | ||
|
||
* Enhancement #4921: Polish propagation related code | ||
|
||
We polished some corner cases for propagation that reduce log messages in normal operation. | ||
|
||
https://github.com/cs3org/reva/pull/4921 | ||
|
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,76 @@ | ||
|
||
--- | ||
title: "v2.26.8" | ||
linkTitle: "v2.26.8" | ||
weight: 40 | ||
description: > | ||
Changelog for Reva v2.26.8 (2024-12-04) | ||
--- | ||
|
||
Changelog for reva 2.26.8 (2024-12-04) | ||
======================================= | ||
|
||
The following sections list the changes in reva 2.26.8 relevant to | ||
reva users. The changes are ordered by importance. | ||
|
||
Summary | ||
------- | ||
|
||
* Fix #4983: Delete stale shares in the jsoncs3 share manager | ||
* Fix #4963: Fix name and displayName in an ocm | ||
* Fix #4968: Jsoncs3 cache fixes | ||
* Fix #4928: Propagate lock in PROPPATCH | ||
* Fix #4971: Use manager to list shares | ||
* Enh #4978: We added more trace spans in decomposedfs | ||
* Enh #4921: Polish propagation related code | ||
|
||
Details | ||
------- | ||
|
||
* Bugfix #4983: Delete stale shares in the jsoncs3 share manager | ||
|
||
The jsoncs3 share manager now properly deletes all references to removed shares and shares | ||
that belong to a space that was deleted | ||
|
||
https://github.com/cs3org/reva/pull/4983 | ||
https://github.com/cs3org/reva/pull/4975 | ||
|
||
* Bugfix #4963: Fix name and displayName in an ocm | ||
|
||
Fixed name and displayName in an ocm PROPFIND response | ||
|
||
https://github.com/owncloud/ocis/issues/10582 | ||
https://github.com/cs3org/reva/pull/4963 | ||
|
||
* Bugfix #4968: Jsoncs3 cache fixes | ||
|
||
The jsoncs3 share manager now retries persisting if the file already existed and picks up the | ||
etag of the upload response in all cases. | ||
|
||
https://github.com/cs3org/reva/pull/4968 | ||
https://github.com/cs3org/reva/pull/4532 | ||
|
||
* Bugfix #4928: Propagate lock in PROPPATCH | ||
|
||
Clients using locking (ie. Windows) could not create/copy files over webdav as file seemed to | ||
be locked. | ||
|
||
https://github.com/cs3org/reva/pull/4928 | ||
|
||
* Bugfix #4971: Use manager to list shares | ||
|
||
When updating a received share the usershareprovider now uses the share manager directly to | ||
list received shares instead of going through the gateway again. | ||
|
||
https://github.com/cs3org/reva/pull/4971 | ||
|
||
* Enhancement #4978: We added more trace spans in decomposedfs | ||
|
||
https://github.com/cs3org/reva/pull/4978 | ||
|
||
* Enhancement #4921: Polish propagation related code | ||
|
||
We polished some corner cases for propagation that reduce log messages in normal operation. | ||
|
||
https://github.com/cs3org/reva/pull/4921 | ||
|
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