-
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 branch 'upsmaster' into spaces
- Loading branch information
Showing
11 changed files
with
165 additions
and
93 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
* @labkode @glpatcern @diocas | ||
* @labkode @glpatcern @diocas @jessejeens |
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,7 @@ | ||
Bugfix: make ACL operations work over gRPC | ||
|
||
This change solves two issues: | ||
* AddACL would fail, because the current implementation of AddACL in the EOS gRPC client always sets msg.Recursive = true. This causes issues on the EOS side, because it will try running a recursive find on a file, which fails. | ||
* RemoveACL would fail, because it tried matching ACL rules with a uid to ACL rules with a username. This PR changes this approach to use an approach similar to what is used in the binary client: just set the rule that you want to have deleted with no permissions. | ||
|
||
https://github.com/cs3org/reva/pull/4898 |
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,6 @@ | ||
Enhancement: do not read eos user ACLs any longer | ||
|
||
This PR drops the compatibility code to read eos user ACLs | ||
in the eos binary client, and aligns it to the GRPC client. | ||
|
||
https://github.com/cs3org/reva/pull/4892 |
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,3 @@ | ||
Enhancement: Favourites for eos/grpc | ||
|
||
https://github.com/cs3org/reva/pull/4863 |
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,8 @@ | ||
Bugfix: no certs in EOS HTTP client | ||
|
||
Omit HTTPS cert in EOS HTTP Client, as this causes authentication issues on EOS < 5.2.28. | ||
When EOS receives a certificate, it will look for this cert in the gridmap file. | ||
If it is not found there, the whole authn flow is aborted and the user is mapped to nobody. | ||
|
||
|
||
https://github.com/cs3org/reva/pull/4894 |
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,8 @@ | ||
Bugfix: broken PROPFIND perms on gRPC | ||
|
||
When using the EOS gRPC stack, the permissions returned by PROPFIND | ||
on a folder in a project were erroneous because ACL permissions were | ||
being ignored. This stems from a bug in grpcMDResponseToFileInfo, | ||
where the SysACL attribute of the FileInfo struct was not being populated. | ||
|
||
See: https://github.com/cs3org/reva/pull/4901 |
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,3 @@ | ||
Bugfix: fix nilpointer error in RollbackToVersion | ||
|
||
https://github.com/cs3org/reva/pull/4896 |
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,5 @@ | ||
Bugfix: PurgeDate in ListDeletedEntries was ignored | ||
|
||
The date range that can be passed to ListDeletedEntries was not taken into account due to a bug in reva: the Purgedate argument was set, which only works for PURGE requests, and not for LIST requests. Instead, the Listflag argument must be used. Additionally, there was a bug in the loop that is used to iterate over all days in the date range. | ||
|
||
https://github.com/cs3org/reva/pull/4905 |
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
Oops, something went wrong.