Releases: cs3org/reva
v3.6.3
Changelog for reva 3.6.3 (2026-04-07)
The following sections list the changes in reva 3.6.3 relevant to
reva users. The changes are ordered by importance.
Summary
- Fix #5570: Remove broken EOS token cache
Details
v3.5.1-eos53revad
Changelog for reva 3.5.1 (2026-02-12)
The following sections list the changes in reva 3.5.1 relevant to
reva users. The changes are ordered by importance.
Summary
- Fix #5482: Return 403 instead of 500 on no permissions
- Fix #5473: Do not require db_engine to be set
- Fix #5496: GetNsMatch in eosfs should return a cleaned path
- Fix #5490: Do not do getQuota as project owner for ownerless projects
- Fix #5492: Set proper service account context for project GetQuota
- Fix #5491: Do not clean namespace path
- Enh #5466: Clean up DAV PUT
- Enh #5470: Add indexes to share db for fields that may be queried
- Enh #5452: OCM Embedded shares
- Enh #5471: Extend integration tests using Reva CLI
- Enh #5476: OCM: support access_types and drop datatx protocol
- Enh #5489: Add processing endpoint for an embedded share
- Enh #5484: Remove share first from EOS, then db
- Enh #5462: Integration tests using Reva CLI
Details
-
Bugfix #5482: Return 403 instead of 500 on no permissions
-
Bugfix #5473: Do not require db_engine to be set
-
Bugfix #5496: GetNsMatch in eosfs should return a cleaned path
-
Bugfix #5490: Do not do getQuota as project owner for ownerless projects
-
Bugfix #5492: Set proper service account context for project GetQuota
-
Bugfix #5491: Do not clean namespace path
There was a bug in Reva that caused the namespace path to be cleaned. This is wrong: this path
should end in a/so that EOS trashbin paths do not match for projects (e.g.
/eos/project-i00should not be prefixed by/eos/project/).This bug caused deleted entries to still show up in the favorites list
-
Enhancement #5466: Clean up DAV PUT
- Fixed a "bug" where a variable was overwritten (though this had no impact) * Cleaned up a method
- Removed unused function
-
Enhancement #5470: Add indexes to share db for fields that may be queried
In a previous change, some indexes for fields that are queried had been replaced by a composite
index, which cannot be used for certain queries that we do. So, this PR brings back the
non-composite indexes. -
Enhancement #5452: OCM Embedded shares
This PR introduces OCM embedded shares
- Adds functionality to store embedded shares (where the shared data is embedded in the OCM
share payload) * Adds filters toListReceivedOCMSharescall and adapts to the new fields
SharedResourceTypeandRecipientType* Adds an endpoint to list embedded shares (using
the previously mentioned filters)
- Adds functionality to store embedded shares (where the shared data is embedded in the OCM
-
Enhancement #5471: Extend integration tests using Reva CLI
This PR extends the Reva CLI test suite by including tests for recycle bin, versions and grant
operations -
Enhancement #5476: OCM: support access_types and drop datatx protocol
This PR adapts the OCM implementation to v1.3. No new capabilities have been added yet.
-
Enhancement #5489: Add processing endpoint for an embedded share
- For now this only changes the state to accepted (or pending if you want to "unprocess" the
share) - Eventually we want the downloaded content to arrive in the target folder, the target is
just logged for now.
- For now this only changes the state to accepted (or pending if you want to "unprocess" the
-
Enhancement #5484: Remove share first from EOS, then db
When removing shares, remove permissions from storage before going to db, so that there can be
no lingering permissions on EOS -
Enhancement #5462: Integration tests using Reva CLI
This PR introduces a proof-of-concept for integration tests based on the reva CLI. The goal is
to extend these tests, so that they can be used by EOS to check if their changes break our
workflow.
v3.6.2
Changelog for reva 3.6.2 (2026-03-29)
The following sections list the changes in reva 3.6.2 relevant to
reva users. The changes are ordered by importance.
Summary
- Fix #5551: Hide orphaned shares
- Enh #5549: Add administrative function to list all projects
- Enh #5546: Ignore files not found in archiver
- Enh #5538: Cleanup config
- Enh #5557: Add quota cache
Details
-
Bugfix #5551: Hide orphaned shares
-
Enhancement #5549: Add administrative function to list all projects
Added ListAllProjects function to the SQL projects manager. The function supports optional
filtering by status and owner. -
Enhancement #5546: Ignore files not found in archiver
-
Enhancement #5538: Cleanup config
-
Enhancement #5557: Add quota cache
Since EOS at the moment takes a long time to respond to
GetQuotarequests, we have implemented
a cache for the quota results. The cache is warmed up on init, where the cache is populated from a
singleGetQuotacall that obtains all user quotas.
v3.6.1
Changelog for reva 3.6.1 (2026-03-10)
The following sections list the changes in reva 3.6.1 relevant to
reva users. The changes are ordered by importance.
Summary
- Fix #5521: Fix issue where permissions is on subdir
- Fix #5524: Fix inverted logic in pathToSpaceID
- Fix #5520: Fix issues with sharing for the cephmount driver
- Enh #5519: Support additional gids in cephmount fs driver
- Enh #5525: Support getting quota from path ancestors
- Enh #5529: Improves the GetQuota call
- Enh #5527: Make ceph version with local plugins
- Enh #5523: Add status field to projects table
- Enh #5518: Clean up how space IDs are calculated
Details
-
Bugfix #5521: Fix issue where permissions is on subdir
- This PR fixes a bug where the permissions are on a subdirectory and the admin mount fails.
-
Bugfix #5524: Fix inverted logic in pathToSpaceID
Fixed a bug where the condition for falling back to the mount_path when no proper space depth was
set was inverted. -
Bugfix #5520: Fix issues with sharing for the cephmount driver
This PR includes two fixes * ListVersions now returns an empty list. * The root directory is
appended to the CephVolumePath. -
Enhancement #5519: Support additional gids in cephmount fs driver
When accessing the underlying Ceph mount, the linux thread only contained the uid/gid of the
user. Now it also contaisn the additional gids of the user, which allows to access files that are
only accessible by group permissions. -
Enhancement #5525: Support getting quota from path ancestors
The previous code supported to obtained quota only from the path itself, but in some cases, the
path may not contain the quota information, but its ancestor may contain the quota
information. -
Enhancement #5529: Improves the GetQuota call
The ceph.dir.rbytes exists at every level and should be checked at the level where the quota is
found -
Enhancement #5527: Make ceph version with local plugins
Add the option to build the ceph version of reva with local plugins
-
Enhancement #5523: Add status field to projects table
A new status field has been added to the projects table with possible values: creating, active,
and archived. The default value is 'active'. ListStorageSpaces now accepts a status
parameter to filter projects by their status. A new method UpdateProjectStatus allows
changing the status of a project. -
Enhancement #5518: Clean up how space IDs are calculated
Instead of having hardcoded paths, this is now configurable through a
space_depth
parameter in the storage provider
v3.6.0
Changelog for reva 3.6.0 (2026-02-20)
The following sections list the changes in reva 3.6.0 relevant to
reva users. The changes are ordered by importance.
Summary
- Fix #5451: Handle special characters in file names correctly
- Fix #5511: Quota should be retrieved in monitoring key=value format
- Enh #5481: Add support for reva-cli tests on EOS
- Enh #5475: Support project-trashbins in EOS
- Enh #5472: Use uid instead of username of eos remote-user
- Enh #5474: Update EOS gRPC bindings
- Enh #5513: Refactor EOS driver / FS for Reva
- Enh #5503: Cephmount add root dir config option
Details
-
Bugfix #5451: Handle special characters in file names correctly
- Fixed PROPFIND response when listing a folder named with special charactrers
-
Bugfix #5511: Quota should be retrieved in monitoring key=value format
The quota command now uses the
-mflag to retrieve quota information in monitoring key=value
format, ensuring consistent and parseable output. -
Enhancement #5481: Add support for reva-cli tests on EOS
-
Enhancement #5475: Support project-trashbins in EOS
-
Enhancement #5472: Use uid instead of username of eos remote-user
This brings back the functionality to download versions of files in a project space
-
Enhancement #5474: Update EOS gRPC bindings
This supports the new trashbin, based on a "recycle id" for projects
-
Enhancement #5513: Refactor EOS driver / FS for Reva
This also includes writing a README for the driver
-
Enhancement #5503: Cephmount add root dir config option
- The
root_dirconfig option is there to append a path on the current path that should be
mounted by reva
- The
v3.5.1-1
Changelog for reva 3.5.1 (2026-02-12)
The following sections list the changes in reva 3.5.1 relevant to
reva users. The changes are ordered by importance.
Summary
- Fix #5482: Return 403 instead of 500 on no permissions
- Fix #5473: Do not require db_engine to be set
- Fix #5496: GetNsMatch in eosfs should return a cleaned path
- Fix #5490: Do not do getQuota as project owner for ownerless projects
- Fix #5492: Set proper service account context for project GetQuota
- Fix #5491: Do not clean namespace path
- Enh #5466: Clean up DAV PUT
- Enh #5470: Add indexes to share db for fields that may be queried
- Enh #5452: OCM Embedded shares
- Enh #5471: Extend integration tests using Reva CLI
- Enh #5476: OCM: support access_types and drop datatx protocol
- Enh #5489: Add processing endpoint for an embedded share
- Enh #5484: Remove share first from EOS, then db
- Enh #5462: Integration tests using Reva CLI
Details
-
Bugfix #5482: Return 403 instead of 500 on no permissions
-
Bugfix #5473: Do not require db_engine to be set
-
Bugfix #5496: GetNsMatch in eosfs should return a cleaned path
-
Bugfix #5490: Do not do getQuota as project owner for ownerless projects
-
Bugfix #5492: Set proper service account context for project GetQuota
-
Bugfix #5491: Do not clean namespace path
There was a bug in Reva that caused the namespace path to be cleaned. This is wrong: this path
should end in a/so that EOS trashbin paths do not match for projects (e.g.
/eos/project-i00should not be prefixed by/eos/project/).This bug caused deleted entries to still show up in the favorites list
-
Enhancement #5466: Clean up DAV PUT
- Fixed a "bug" where a variable was overwritten (though this had no impact) * Cleaned up a method
- Removed unused function
-
Enhancement #5470: Add indexes to share db for fields that may be queried
In a previous change, some indexes for fields that are queried had been replaced by a composite
index, which cannot be used for certain queries that we do. So, this PR brings back the
non-composite indexes. -
Enhancement #5452: OCM Embedded shares
This PR introduces OCM embedded shares
- Adds functionality to store embedded shares (where the shared data is embedded in the OCM
share payload) * Adds filters toListReceivedOCMSharescall and adapts to the new fields
SharedResourceTypeandRecipientType* Adds an endpoint to list embedded shares (using
the previously mentioned filters)
- Adds functionality to store embedded shares (where the shared data is embedded in the OCM
-
Enhancement #5471: Extend integration tests using Reva CLI
This PR extends the Reva CLI test suite by including tests for recycle bin, versions and grant
operations -
Enhancement #5476: OCM: support access_types and drop datatx protocol
This PR adapts the OCM implementation to v1.3. No new capabilities have been added yet.
-
Enhancement #5489: Add processing endpoint for an embedded share
- For now this only changes the state to accepted (or pending if you want to "unprocess" the
share) - Eventually we want the downloaded content to arrive in the target folder, the target is
just logged for now.
- For now this only changes the state to accepted (or pending if you want to "unprocess" the
-
Enhancement #5484: Remove share first from EOS, then db
When removing shares, remove permissions from storage before going to db, so that there can be
no lingering permissions on EOS -
Enhancement #5462: Integration tests using Reva CLI
This PR introduces a proof-of-concept for integration tests based on the reva CLI. The goal is
to extend these tests, so that they can be used by EOS to check if their changes break our
workflow.
v3.5.1
Changelog for reva 3.5.1 (2026-02-12)
The following sections list the changes in reva 3.5.1 relevant to
reva users. The changes are ordered by importance.
Summary
- Fix #5482: Return 403 instead of 500 on no permissions
- Fix #5473: Do not require db_engine to be set
- Fix #5496: GetNsMatch in eosfs should return a cleaned path
- Fix #5490: Do not do getQuota as project owner for ownerless projects
- Fix #5492: Set proper service account context for project GetQuota
- Fix #5491: Do not clean namespace path
- Enh #5466: Clean up DAV PUT
- Enh #5470: Add indexes to share db for fields that may be queried
- Enh #5452: OCM Embedded shares
- Enh #5471: Extend integration tests using Reva CLI
- Enh #5476: OCM: support access_types and drop datatx protocol
- Enh #5489: Add processing endpoint for an embedded share
- Enh #5484: Remove share first from EOS, then db
- Enh #5462: Integration tests using Reva CLI
Details
-
Bugfix #5482: Return 403 instead of 500 on no permissions
-
Bugfix #5473: Do not require db_engine to be set
-
Bugfix #5496: GetNsMatch in eosfs should return a cleaned path
-
Bugfix #5490: Do not do getQuota as project owner for ownerless projects
-
Bugfix #5492: Set proper service account context for project GetQuota
-
Bugfix #5491: Do not clean namespace path
There was a bug in Reva that caused the namespace path to be cleaned. This is wrong: this path
should end in a/so that EOS trashbin paths do not match for projects (e.g.
/eos/project-i00should not be prefixed by/eos/project/).This bug caused deleted entries to still show up in the favorites list
-
Enhancement #5466: Clean up DAV PUT
- Fixed a "bug" where a variable was overwritten (though this had no impact) * Cleaned up a method
- Removed unused function
-
Enhancement #5470: Add indexes to share db for fields that may be queried
In a previous change, some indexes for fields that are queried had been replaced by a composite
index, which cannot be used for certain queries that we do. So, this PR brings back the
non-composite indexes. -
Enhancement #5452: OCM Embedded shares
This PR introduces OCM embedded shares
- Adds functionality to store embedded shares (where the shared data is embedded in the OCM
share payload) * Adds filters toListReceivedOCMSharescall and adapts to the new fields
SharedResourceTypeandRecipientType* Adds an endpoint to list embedded shares (using
the previously mentioned filters)
- Adds functionality to store embedded shares (where the shared data is embedded in the OCM
-
Enhancement #5471: Extend integration tests using Reva CLI
This PR extends the Reva CLI test suite by including tests for recycle bin, versions and grant
operations -
Enhancement #5476: OCM: support access_types and drop datatx protocol
This PR adapts the OCM implementation to v1.3. No new capabilities have been added yet.
-
Enhancement #5489: Add processing endpoint for an embedded share
- For now this only changes the state to accepted (or pending if you want to "unprocess" the
share) - Eventually we want the downloaded content to arrive in the target folder, the target is
just logged for now.
- For now this only changes the state to accepted (or pending if you want to "unprocess" the
-
Enhancement #5484: Remove share first from EOS, then db
When removing shares, remove permissions from storage before going to db, so that there can be
no lingering permissions on EOS -
Enhancement #5462: Integration tests using Reva CLI
This PR introduces a proof-of-concept for integration tests based on the reva CLI. The goal is
to extend these tests, so that they can be used by EOS to check if their changes break our
workflow.
v3.5.0
Changelog for reva 3.5.0 (2026-01-09)
The following sections list the changes in reva 3.5.0 relevant to
reva users. The changes are ordered by importance.
Summary
- Fix #5449: Fix database sharedconfig parsing
- Fix #5464: Make MOVE work in public link
- Fix #5446: Make notify_uploads_extra_recipients work in libregraph
- Fix #5463: Fix permission editing for public links
- Fix #5404: Fix localhome virtual namespace path handling for spaces
- Enh #5429: Cephmount: supports setting posix acls
- Enh #5433: Make chunking_parallel_upload_disabled configurable
- Enh #5450: Clean up ListWithRegex log
- Enh #5447: Make notification trigger always use
items - Enh #5445: Support funcs in templates
- Enh #5402: Refactoring of the GORM model for shares
- Enh #5428: Refactor permissions
Details
-
Bugfix #5449: Fix database sharedconfig parsing
-
Bugfix #5464: Make MOVE work in public link
-
Bugfix #5446: Make notify_uploads_extra_recipients work in libregraph
-
Bugfix #5463: Fix permission editing for public links
A bug was introduced during the refactoring of the permission system
(#5428). This has now been fixed. -
Bugfix #5404: Fix localhome virtual namespace path handling for spaces
Added optional VirtualHomeTemplate config to localfs driver, enabling localhome to
correctly handle paths when exposing user homes through a virtual namespace (e.g.,
/home/) while storing files in a flat per-user layout on disk.The wrap() function uses a clean switch statement with named predicates to handle five path
transformation patterns:- Exact match: /home/einstein -> / - Full path: /home/einstein/file -> /file - Parent path:
/home -> / (when virtual home is /home/einstein) - Gateway-stripped parent: /home/file ->
/file (gateway omits username) - Gateway-stripped username: /einstein/file -> /file
(WebDAV "home" alias)
The last two cases handle gateway routing edge cases where prefixes are stripped differently
depending on whether the WebDAV layer uses space IDs or the "home" alias for URL construction.The normalize() function adds the virtual home prefix only to the Path field of ResourceInfo
(e.g., /file -> /home/einstein/file), enabling PathToSpaceID() to derive the correct space
identifier. The OpaqueId field remains storage-relative (e.g., fileid-einstein%2Ffile)
to ensure resource IDs can be properly decoded.The localhome wrapper now correctly passes VirtualHomeTemplate through to localfs.
When VirtualHomeTemplate is empty (default), behavior is unchanged, ensuring backward
compatibility with EOS and existing deployments. - Exact match: /home/einstein -> / - Full path: /home/einstein/file -> /file - Parent path:
-
Enhancement #5429: Cephmount: supports setting posix acls
-
Enhancement #5433: Make chunking_parallel_upload_disabled configurable
-
Enhancement #5450: Clean up ListWithRegex log
-
Enhancement #5447: Make notification trigger always use
items -
Enhancement #5445: Support funcs in templates
-
Enhancement #5402: Refactoring of the GORM model for shares
With this PR we introduce new constraints and rename some fields for better consistency:
- Types used by OCM structures only are prefixed with
Ocm, andAccessMethodandProtocol
were consolidated intoOcmProtocol* ItemType is used in OCM shares as well * The
(FileIdPrefix, ItemSource)tuple is now(Instance, Inode)inOcmShare, and it was
removed fromOcmReceivedShareas unused * Unique index constraints have been created for
regularSharesand forOcmShareson(instance, inode, shareWith, deletedAt)* The
unique indexes have been renamed with au_prefix for consistency: this affected
u_shareid_user,u_link_token. Thei_share_withwas dropped as redundant. *Alias
andHiddenwere added inOcmReceivedShare
- Types used by OCM structures only are prefixed with
-
Enhancement #5428: Refactor permissions
Permissions are now, at least partially, handled and exposed within a single package (which
was important for cernboxcop), with conversions between the different types of permissions
v3.4.2
Changelog for reva 3.4.2 (2025-12-17)
The following sections list the changes in reva 3.4.2 relevant to
reva users. The changes are ordered by importance.