Skip to content

Commit

Permalink
[full-ci] release-2.19.2
Browse files Browse the repository at this point in the history
  • Loading branch information
2403905 committed Mar 13, 2024
1 parent 16d783d commit e1931d8
Show file tree
Hide file tree
Showing 15 changed files with 255 additions and 30 deletions.
82 changes: 82 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,85 @@
Changelog for reva 2.19.2 (2024-03-13)
=======================================

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

Summary
-------

* Fix #4557: Fix ceph build
* Fix #4570: Fix sharing invite on virtual drive
* Fix #4559: Fix graph drive invite
* Fix #4518: Fix an error when lock/unlock a file
* Fix #4566: Fix public link previews
* Fix #4561: Fix Stat() by Path on re-created resource
* Enh #4556: Allow tracing requests by giving util functions a context
* Enh #4545: Extend service account permissions
* Enh #4564: Send file locked/unlocked events

Details
-------

* Bugfix #4557: Fix ceph build

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

* Bugfix #4570: Fix sharing invite on virtual drive

We fixed the issue when sharing of virtual drive with other users was allowed

https://github.com/owncloud/ocis/issues/8495
https://github.com/cs3org/reva/pull/4570

* Bugfix #4559: Fix graph drive invite

We fixed the issue when sharing of personal drive is allowed via graph

https://github.com/owncloud/ocis/issues/8494
https://github.com/cs3org/reva/pull/4559

* Bugfix #4518: Fix an error when lock/unlock a file

We fixed a bug when anonymous user with viewer role in public link of a folder can lock/unlock a
file inside it

https://github.com/owncloud/ocis/issues/7785
https://github.com/cs3org/reva/pull/4518

* Bugfix #4566: Fix public link previews

Fixes previews for public links

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

* Bugfix #4561: Fix Stat() by Path on re-created resource

We fixed bug that caused Stat Requests using a Path reference to a mount point in the sharejail to
not resolve correctly, when a share using the same mount point to an already deleted resource
was still existing.

https://github.com/owncloud/ocis/issues/7895
https://github.com/cs3org/reva/pull/4561

* Enhancement #4556: Allow tracing requests by giving util functions a context

We deprecated GetServiceUserContext with GetServiceUserContextWithContext and GetUser
with GetUserWithContext to allow passing in a trace context.

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

* Enhancement #4545: Extend service account permissions

Adds CreateContainer permisson and improves cs3 storage pkg

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

* Enhancement #4564: Send file locked/unlocked events

Emit an event when a file is locked or unlocked

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

Changelog for reva 2.19.1 (2024-02-29)
=======================================

Expand Down
2 changes: 1 addition & 1 deletion RELEASE_DATE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-02-29
2024-03-13
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.19.1
2.19.2
File renamed without changes.
File renamed without changes.
File renamed without changes.
78 changes: 65 additions & 13 deletions changelog/NOTE.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,82 @@
Changelog for reva 2.19.1 (2024-02-29)
Changelog for reva 2.19.2 (2024-03-13)
=======================================

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

Summary
-------

* Fix #4534: Fix remove/update share permissions
* Fix #4539: Fix a typo
* Fix #4557: Fix ceph build
* Fix #4570: Fix sharing invite on virtual drive
* Fix #4559: Fix graph drive invite
* Fix #4518: Fix an error when lock/unlock a file
* Fix #4566: Fix public link previews
* Fix #4561: Fix Stat() by Path on re-created resource
* Enh #4556: Allow tracing requests by giving util functions a context
* Enh #4545: Extend service account permissions
* Enh #4564: Send file locked/unlocked events

Details
-------

* Bugfix #4534: Fix remove/update share permissions
* Bugfix #4557: Fix ceph build

This is a workaround that should prevent removing or changing the share permissions when the
file is locked. These limitations have to be removed after the wopi server will be able to unlock
the file properly. These limitations are not spread on the files inside the shared folder.
https://github.com/cs3org/reva/pull/4557

https://github.com/owncloud/ocis/issues/8273
https://github.com/cs3org/reva/pull/4534
* Bugfix #4570: Fix sharing invite on virtual drive

* Bugfix #4539: Fix a typo
We fixed the issue when sharing of virtual drive with other users was allowed

We fixed a typo
https://github.com/owncloud/ocis/issues/8495
https://github.com/cs3org/reva/pull/4570

https://github.com/cs3org/reva/pull/4539
* Bugfix #4559: Fix graph drive invite

We fixed the issue when sharing of personal drive is allowed via graph

https://github.com/owncloud/ocis/issues/8494
https://github.com/cs3org/reva/pull/4559

* Bugfix #4518: Fix an error when lock/unlock a file

We fixed a bug when anonymous user with viewer role in public link of a folder can lock/unlock a
file inside it

https://github.com/owncloud/ocis/issues/7785
https://github.com/cs3org/reva/pull/4518

* Bugfix #4566: Fix public link previews

Fixes previews for public links

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

* Bugfix #4561: Fix Stat() by Path on re-created resource

We fixed bug that caused Stat Requests using a Path reference to a mount point in the sharejail to
not resolve correctly, when a share using the same mount point to an already deleted resource
was still existing.

https://github.com/owncloud/ocis/issues/7895
https://github.com/cs3org/reva/pull/4561

* Enhancement #4556: Allow tracing requests by giving util functions a context

We deprecated GetServiceUserContext with GetServiceUserContextWithContext and GetUser
with GetUserWithContext to allow passing in a trace context.

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

* Enhancement #4545: Extend service account permissions

Adds CreateContainer permisson and improves cs3 storage pkg

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

* Enhancement #4564: Send file locked/unlocked events

Emit an event when a file is locked or unlocked

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

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

---
title: "v2.19.2"
linkTitle: "v2.19.2"
weight: 40
description: >
Changelog for Reva v2.19.2 (2024-03-13)
---

Changelog for reva 2.19.2 (2024-03-13)
=======================================

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

Summary
-------

* Fix #4557: Fix ceph build
* Fix #4570: Fix sharing invite on virtual drive
* Fix #4559: Fix graph drive invite
* Fix #4518: Fix an error when lock/unlock a file
* Fix #4566: Fix public link previews
* Fix #4561: Fix Stat() by Path on re-created resource
* Enh #4556: Allow tracing requests by giving util functions a context
* Enh #4545: Extend service account permissions
* Enh #4564: Send file locked/unlocked events

Details
-------

* Bugfix #4557: Fix ceph build

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

* Bugfix #4570: Fix sharing invite on virtual drive

We fixed the issue when sharing of virtual drive with other users was allowed

https://github.com/owncloud/ocis/issues/8495
https://github.com/cs3org/reva/pull/4570

* Bugfix #4559: Fix graph drive invite

We fixed the issue when sharing of personal drive is allowed via graph

https://github.com/owncloud/ocis/issues/8494
https://github.com/cs3org/reva/pull/4559

* Bugfix #4518: Fix an error when lock/unlock a file

We fixed a bug when anonymous user with viewer role in public link of a folder can lock/unlock a
file inside it

https://github.com/owncloud/ocis/issues/7785
https://github.com/cs3org/reva/pull/4518

* Bugfix #4566: Fix public link previews

Fixes previews for public links

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

* Bugfix #4561: Fix Stat() by Path on re-created resource

We fixed bug that caused Stat Requests using a Path reference to a mount point in the sharejail to
not resolve correctly, when a share using the same mount point to an already deleted resource
was still existing.

https://github.com/owncloud/ocis/issues/7895
https://github.com/cs3org/reva/pull/4561

* Enhancement #4556: Allow tracing requests by giving util functions a context

We deprecated GetServiceUserContext with GetServiceUserContextWithContext and GetUser
with GetUserWithContext to allow passing in a trace context.

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

* Enhancement #4545: Extend service account permissions

Adds CreateContainer permisson and improves cs3 storage pkg

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

* Enhancement #4564: Send file locked/unlocked events

Emit an event when a file is locked or unlocked

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

Loading

0 comments on commit e1931d8

Please sign in to comment.