Skip to content

v1.9.0

Compare
Choose a tag to compare
@cs3org-bot cs3org-bot released this 23 Jun 14:47
· 1125 commits to master since this release

Changelog for reva 1.9.0 (2021-06-23)

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

Summary

  • Fix #1815: Drone CI - patch the 'store-dev-release' job to fix malformed requests
  • Fix #1765: 'golang:alpine' as base image & CGO_ENABLED just for the CLI
  • Chg #1721: Absolute and relative references
  • Enh #1810: Add arbitrary metadata support to EOS
  • Enh #1774: Add user ID cache warmup to EOS storage driver
  • Enh #1471: EOEGrpc progress. Logging discipline and error handling
  • Enh #1811: Harden public shares signing
  • Enh #1793: Remove the user id from the trashbin key
  • Enh #1795: Increase trashbin restore API compatibility
  • Enh #1516: Use UidNumber and GidNumber fields in User objects
  • Enh #1820: Tag v1.9.0

Details

  • Bugfix #1815: Drone CI - patch the 'store-dev-release' job to fix malformed requests

    Replace the backquotes that were used for the date component of the URL with the
    POSIX-confirmant command substitution '$()'.

    #1815

  • Bugfix #1765: 'golang:alpine' as base image & CGO_ENABLED just for the CLI

    Some of the dependencies used by revad need CGO to be enabled in order to work. We also need to
    install the 'mime-types' in alpine to correctly detect them on the storage-providers.

    The CGO_ENABLED=0 flag was added to the docker build flags so that it will produce a static
    build. This allows usage of the 'scratch' image for reduction of the docker image size (e.g. the
    reva cli).

    #1765
    #1766
    #1797

  • Change #1721: Absolute and relative references

    We unified the Reference_Id end Reference_Path types to a combined Reference that
    contains both: - a resource_id property that can identify a node using a storage_id and an
    opaque_id - a path property that can be used to represent absolute paths as well as paths
    relative to the id based properties. While this is a breaking change it allows passing both:
    absolute as well as relative references.

    #1721

  • Enhancement #1810: Add arbitrary metadata support to EOS

    #1810

  • Enhancement #1774: Add user ID cache warmup to EOS storage driver

    #1774

  • Enhancement #1471: EOEGrpc progress. Logging discipline and error handling

    #1471

  • Enhancement #1811: Harden public shares signing

    Makes golangci-lint happy as well

    #1811

  • Enhancement #1793: Remove the user id from the trashbin key

    We don't want to use the users uuid outside of the backend so I removed the id from the trashbin
    file key.

    #1793

  • Enhancement #1795: Increase trashbin restore API compatibility

    • The precondition were not checked before doing a trashbin restore in the ownCloud dav API.
      Without the checks the API would behave differently compared to the oC10 API. * The restore
      response was missing HTTP headers like ETag * Update the name when restoring the file from
      trashbin to a new target name

    #1795

  • Enhancement #1516: Use UidNumber and GidNumber fields in User objects

    Update instances where CS3API's User objects are created and used to use GidNumber, and
    UidNumber fields instead of storing them in Opaque map.

    #1516

  • Enhancement #1820: Tag v1.9.0

    Bump release number to v1.9.0 as it contains breaking changes related to changing the
    reference type.

    #1820