forked from cs3org/reva
-
Notifications
You must be signed in to change notification settings - Fork 0
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 cs3org#4966 from 2403905/release-2.26.7
release-2.26.7
- Loading branch information
Showing
7 changed files
with
156 additions
and
175 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-19 | ||
2024-11-20 |
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.6 | ||
2.26.7 |
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,92 +1,21 @@ | ||
Changelog for reva 2.26.6 (2024-11-19) | ||
Changelog for reva 2.26.7 (2024-11-20) | ||
======================================= | ||
|
||
The following sections list the changes in reva 2.26.6 relevant to | ||
The following sections list the changes in reva 2.26.7 relevant to | ||
reva users. The changes are ordered by importance. | ||
|
||
Summary | ||
------- | ||
|
||
* Fix #4955: Allow small clock skew in reva token validation | ||
* Fix #4929: Fix flaky posixfs integration tests | ||
* Fix #4953: Avoid gateway panics | ||
* Fix #4959: Fix missing file touched event | ||
* Fix #4933: Fix federated sharing when using an external identity provider | ||
* Fix #4935: Enable datatx log | ||
* Fix #4936: Do not delete mlock files | ||
* Fix #4954: Prevent a panic when logging an error | ||
* Fix #4956: Improve posixfs error handling and logging | ||
* Fix #4951: Pass the initialized logger down the stack | ||
* Fix #4964: Fix a wrong error code when approvider creates a new file | ||
|
||
Details | ||
------- | ||
|
||
* Bugfix #4955: Allow small clock skew in reva token validation | ||
* Bugfix #4964: Fix a wrong error code when approvider creates a new file | ||
|
||
Allow for a small clock skew (3 seconds by default) when validating reva tokens as the different | ||
services might be running on different machines. | ||
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. | ||
|
||
https://github.com/cs3org/reva/issues/4952 | ||
https://github.com/cs3org/reva/pull/4955 | ||
https://github.com/cs3org/reva/pull/4964 | ||
|
||
* Bugfix #4929: Fix flaky posixfs integration tests | ||
|
||
We fixed a problem with the posixfs integration tests where the in-memory id cache sometimes | ||
hadn't caught up with the cleanup between test runs leading to flaky failures. | ||
|
||
https://github.com/cs3org/reva/pull/4929 | ||
|
||
* Bugfix #4953: Avoid gateway panics | ||
|
||
The gateway would panic if there is a missing user in the context. Now it errors instead. | ||
|
||
https://github.com/cs3org/reva/issues/4953 | ||
|
||
* Bugfix #4959: Fix missing file touched event | ||
|
||
We have fixed an issue where the `file touched` event was not being triggered when an office | ||
document was created. | ||
|
||
https://github.com/owncloud/ocis/issues/8950 | ||
https://github.com/cs3org/reva/pull/4959 | ||
|
||
* Bugfix #4933: Fix federated sharing when using an external identity provider | ||
|
||
We fixes and issue that caused federated sharing to fail when the identity provider url did not | ||
match the federation provider url. | ||
|
||
https://github.com/cs3org/reva/pull/4933 | ||
|
||
* Bugfix #4935: Enable datatx log | ||
|
||
We now pass a properly initialized logger to the datatx implementations, allowing the tus | ||
handler to log with the same level as the rest of reva. | ||
|
||
https://github.com/cs3org/reva/pull/4935 | ||
|
||
* Bugfix #4936: Do not delete mlock files | ||
|
||
To prevent stale NFS file handles we no longer delete empty mlock files after updating the | ||
metadata. | ||
|
||
https://github.com/cs3org/reva/pull/4936 | ||
https://github.com/cs3org/reva/pull/4924 | ||
|
||
* Bugfix #4954: Prevent a panic when logging an error | ||
|
||
We fixed a panic when constructing a path failed to get the parent for a node. | ||
|
||
https://github.com/cs3org/reva/pull/4954 | ||
|
||
* Bugfix #4956: Improve posixfs error handling and logging | ||
|
||
We improved error handling and logging in the posixfs storage driver. | ||
|
||
https://github.com/cs3org/reva/pull/4956 | ||
|
||
* Bugfix #4951: Pass the initialized logger down the stack | ||
|
||
We now make the initialized logger available to grpc services and storage drivers, which | ||
allows for easier and more uniform logging. | ||
|
||
https://github.com/cs3org/reva/pull/4951 |
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,30 @@ | ||
|
||
--- | ||
title: "v2.26.7" | ||
linkTitle: "v2.26.7" | ||
weight: 40 | ||
description: > | ||
Changelog for Reva v2.26.7 (2024-11-20) | ||
--- | ||
|
||
Changelog for reva 2.26.7 (2024-11-20) | ||
======================================= | ||
|
||
The following sections list the changes in reva 2.26.7 relevant to | ||
reva users. The changes are ordered by importance. | ||
|
||
Summary | ||
------- | ||
|
||
* Fix #4964: Fix a wrong error code when approvider creates a new file | ||
|
||
Details | ||
------- | ||
|
||
* Bugfix #4964: Fix a wrong error code when approvider creates a new file | ||
|
||
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. | ||
|
||
https://github.com/cs3org/reva/pull/4964 | ||
|
Oops, something went wrong.