Add changelog

This commit is contained in:
Benedikt Kulmann
2020-08-19 11:13:09 +02:00
parent 0e8be0e195
commit d59cdd5469
3 changed files with 15 additions and 0 deletions

View File

View File

@@ -0,0 +1,8 @@
Change: Rename endpoints and message types
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`.
https://github.com/owncloud/ocis-settings/issues/36
https://github.com/owncloud/ocis-settings/issues/32
https://github.com/owncloud/ocis-settings/pull/46

View File

@@ -0,0 +1,7 @@
Change: Use UUIDs instead of alphanumeric identifiers
`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.
https://github.com/owncloud/ocis-settings/pull/46