Skip to content

Commit

Permalink
v1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ishank011 committed Jul 13, 2021
1 parent 35fb557 commit 4cf9aac
Show file tree
Hide file tree
Showing 9 changed files with 120 additions and 143 deletions.
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,47 @@
Changelog for reva 1.10.0 (2021-07-13)
=======================================

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

Summary
-------

* Fix #1883: Pass directories with trailing slashes to eosclient.GenerateToken
* Fix #1878: Improve the webdav error handling in the trashbin
* Fix #1884: Do not send body on failed range request
* Enh #1744: Add support for lightweight user types

Details
-------

* Bugfix #1883: Pass directories with trailing slashes to eosclient.GenerateToken

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

* Bugfix #1878: Improve the webdav error handling in the trashbin

The trashbin handles errors better now on the webdav endpoint.

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

* Bugfix #1884: Do not send body on failed range request

Instead of send the error in the body of a 416 response we log it. This prevents the go reverse
proxy from choking on it and turning it into a 502 Bad Gateway response.

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

* Enhancement #1744: Add support for lightweight user types

This PR adds support for assigning and consuming user type when setting/reading users. On top
of that, support for lightweight users is added. These users have to be restricted to accessing
only shares received by them, which is accomplished by expanding the existing RBAC scope.

https://github.com/cs3org/reva/pull/1744
https://github.com/cs3org/cs3apis/pull/120


Changelog for reva 1.9.1 (2021-07-09)
=======================================

Expand Down
2 changes: 1 addition & 1 deletion RELEASE_DATE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2021-07-09
2021-07-13
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.1
1.10.0
File renamed without changes.
File renamed without changes.
162 changes: 21 additions & 141 deletions changelog/NOTE.md
Original file line number Diff line number Diff line change
@@ -1,164 +1,44 @@
Changelog for reva 1.9.1 (2021-07-09)
Changelog for reva 1.10.0 (2021-07-13)
=======================================

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

Summary
-------

* Fix #1843: Correct Dockerfile path for the reva CLI and alpine3.13 as builder
* Fix #1835: Cleanup owncloudsql driver
* Fix #1868: Minor fixes to the grpc/http plugin: checksum, url escaping
* Fix #1885: Fix template in eoshomewrapper to use context user rather than resource
* Fix #1833: Properly handle name collisions for deletes in the owncloud driver
* Fix #1874: Use the original file mtime during upload
* Fix #1854: Add the uid/gid to the url for eos
* Fix #1848: Fill in missing gid/uid number with nobody
* Fix #1831: Make the ocm-provider endpoint in the ocmd service unprotected
* Fix #1808: Use empty array in OCS Notifications endpoints
* Fix #1825: Raise max grpc message size
* Fix #1828: Send a proper XML header with error messages
* Chg #1828: Remove the oidc provider in order to upgrad mattn/go-sqlite3 to v1.14.7
* Enh #1834: Add API key to Mentix GOCDB connector
* Enh #1855: Minor optimization in parsing EOS ACLs
* Enh #1873: Update the EOS image tag to be for revad-eos image
* Enh #1802: Introduce list spaces
* Enh #1849: Add readonly interceptor
* Enh #1875: Simplify resource comparison
* Enh #1827: Support trashbin sub paths in the recycle API
* Fix #1883: Pass directories with trailing slashes to eosclient.GenerateToken
* Fix #1878: Improve the webdav error handling in the trashbin
* Fix #1884: Do not send body on failed range request
* Enh #1744: Add support for lightweight user types

Details
-------

* Bugfix #1843: Correct Dockerfile path for the reva CLI and alpine3.13 as builder
* Bugfix #1883: Pass directories with trailing slashes to eosclient.GenerateToken

This was introduced on https://github.com/cs3org/reva/commit/117adad while porting the
configuration on .drone.yml to starlark.
https://github.com/cs3org/reva/pull/1883

Force golang:alpine3.13 as base image to prevent errors from Make when running on Docker
<20.10 as it happens on Drone
ref.https://gitlab.alpinelinux.org/alpine/aports/-/issues/12396
* Bugfix #1878: Improve the webdav error handling in the trashbin

https://github.com/cs3org/reva/pull/1843
https://github.com/cs3org/reva/pull/1844
https://github.com/cs3org/reva/pull/1847
The trashbin handles errors better now on the webdav endpoint.

* Bugfix #1835: Cleanup owncloudsql driver
https://github.com/cs3org/reva/pull/1878

Use `owncloudsql` string when returning errors and removed copyMD as it does not need to copy
metadata from files.
* Bugfix #1884: Do not send body on failed range request

https://github.com/cs3org/reva/pull/1835
Instead of send the error in the body of a 416 response we log it. This prevents the go reverse
proxy from choking on it and turning it into a 502 Bad Gateway response.

* Bugfix #1868: Minor fixes to the grpc/http plugin: checksum, url escaping
https://github.com/cs3org/reva/pull/1884

https://github.com/cs3org/reva/pull/1868
* Enhancement #1744: Add support for lightweight user types

* Bugfix #1885: Fix template in eoshomewrapper to use context user rather than resource
This PR adds support for assigning and consuming user type when setting/reading users. On top
of that, support for lightweight users is added. These users have to be restricted to accessing
only shares received by them, which is accomplished by expanding the existing RBAC scope.

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

* Bugfix #1833: Properly handle name collisions for deletes in the owncloud driver

In the owncloud storage driver when we delete a file we append the deletion time to the file name.
If two fast consecutive deletes happened, the deletion time would be the same and if the two
files had the same name we ended up with only one file in the trashbin.

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

* Bugfix #1874: Use the original file mtime during upload

The decomposedfs was not using the original file mtime during uploads.

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

* Bugfix #1854: Add the uid/gid to the url for eos

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

* Bugfix #1848: Fill in missing gid/uid number with nobody

When an LDAP server does not provide numeric uid or gid properties for a user we now fall back to a
configurable `nobody` id (default 99).

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

* Bugfix #1831: Make the ocm-provider endpoint in the ocmd service unprotected

https://github.com/cs3org/reva/issues/1751
https://github.com/cs3org/reva/pull/1831

* Bugfix #1808: Use empty array in OCS Notifications endpoints

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

* Bugfix #1825: Raise max grpc message size

As a workaround for listing larger folder we raised the `MaxCallRecvMsgSize` to 10MB. This
should be enough for ~15k files. The proper fix is implementing ListContainerStream in the
gateway, but we needed a way to test the web ui with larger collections.

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

* Bugfix #1828: Send a proper XML header with error messages

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

* Change #1828: Remove the oidc provider in order to upgrad mattn/go-sqlite3 to v1.14.7

In order to upgrade mattn/go-sqlite3 to v1.14.7, the odic provider service is removed, which
is possible because it is not used anymore

https://github.com/cs3org/reva/pull/1828
https://github.com/owncloud/ocis/pull/2209

* Enhancement #1834: Add API key to Mentix GOCDB connector

The PI (programmatic interface) of the GOCDB will soon require an API key; this PR adds the
ability to configure this key in Mentix.

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

* Enhancement #1855: Minor optimization in parsing EOS ACLs

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

* Enhancement #1873: Update the EOS image tag to be for revad-eos image

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

* Enhancement #1802: Introduce list spaces

The ListStorageSpaces call now allows listing all user homes and shared resources using a
storage space id. The gateway will forward requests to a specific storage provider when a
filter by id is given. Otherwise it will query all storage providers. Results will be
deduplicated. Currently, only the decomposed fs storage driver implements the necessary
logic to demonstrate the implmentation. A new `/dav/spaces` WebDAV endpoint to directly
access a storage space is introduced in a separate PR.

https://github.com/cs3org/reva/pull/1802
https://github.com/cs3org/reva/pull/1803

* Enhancement #1849: Add readonly interceptor

The readonly interceptor could be used to configure a storageprovider in readonly mode. This
could be handy in some migration scenarios.

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

* Enhancement #1875: Simplify resource comparison

We replaced ResourceEqual with ResourceIDEqual where possible.

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

* Enhancement #1827: Support trashbin sub paths in the recycle API

The recycle API could only act on the root items of the trashbin. Meaning if you delete a deep
tree, you couldn't restore just one file from that tree but you had to restore the whole tree. Now
listing, restoring and purging work also for sub paths in the trashbin.

https://github.com/cs3org/reva/pull/1827
https://github.com/cs3org/reva/pull/1744
https://github.com/cs3org/cs3apis/pull/120


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

---
title: "v1.10.0"
linkTitle: "v1.10.0"
weight: 40
description: >
Changelog for Reva v1.10.0 (2021-07-13)
---

Changelog for reva 1.10.0 (2021-07-13)
=======================================

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

Summary
-------

* Fix #1883: Pass directories with trailing slashes to eosclient.GenerateToken
* Fix #1878: Improve the webdav error handling in the trashbin
* Fix #1884: Do not send body on failed range request
* Enh #1744: Add support for lightweight user types

Details
-------

* Bugfix #1883: Pass directories with trailing slashes to eosclient.GenerateToken

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

* Bugfix #1878: Improve the webdav error handling in the trashbin

The trashbin handles errors better now on the webdav endpoint.

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

* Bugfix #1884: Do not send body on failed range request

Instead of send the error in the body of a 416 response we log it. This prevents the go reverse
proxy from choking on it and turning it into a 502 Bad Gateway response.

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

* Enhancement #1744: Add support for lightweight user types

This PR adds support for assigning and consuming user type when setting/reading users. On top
of that, support for lightweight users is added. These users have to be restricted to accessing
only shares received by them, which is accomplished by expanding the existing RBAC scope.

https://github.com/cs3org/reva/pull/1744
https://github.com/cs3org/cs3apis/pull/120


0 comments on commit 4cf9aac

Please sign in to comment.