Skip to content
This repository has been archived by the owner on Jan 27, 2021. It is now read-only.

0.2.0

Compare
Choose a tag to compare
@kulmann kulmann released this 21 Aug 06:10
· 95 commits to master since this release

Changes in 0.2.0

Summary

  • Change - Add role service: #110
  • Change - Rename endpoints and message types: #36
  • Change - Use UUIDs instead of alphanumeric identifiers: #46

Details

  • Change - Add role service: #110

    We added service endpoints for registering roles and maintaining permissions.

    owncloud/product#110
    https://github.com/owncloud/ocis-settings/issues/10
    #47

  • Change - Rename endpoints and message types: #36

    We decided to rename endpoints and message types to be less verbose. Specifically,
    SettingsBundle became Bundle, Setting (inside a bundle) kept its name and
    SettingsValue became Value.

    #36
    #32
    #46

  • Change - Use UUIDs instead of alphanumeric identifiers: #46

    Bundles, Settings and Values were identified by a set of alphanumeric identifiers so
    far. We switched to UUIDs in order to achieve a flat file hierarchy on disk. Referencing the
    respective entities by their alphanumeric identifiers (as used in UI code) is still
    supported.

    #46