From d59cdd5469acde28ab0e845f0b2dc63e815efa6e Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Wed, 19 Aug 2020 11:13:09 +0200 Subject: [PATCH] Add changelog --- changelog/unreleased/.keep | 0 changelog/unreleased/refactor-naming.md | 8 ++++++++ changelog/unreleased/switch-to-uuids.md | 7 +++++++ 3 files changed, 15 insertions(+) create mode 100644 changelog/unreleased/.keep create mode 100644 changelog/unreleased/refactor-naming.md create mode 100644 changelog/unreleased/switch-to-uuids.md diff --git a/changelog/unreleased/.keep b/changelog/unreleased/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/changelog/unreleased/refactor-naming.md b/changelog/unreleased/refactor-naming.md new file mode 100644 index 0000000000..e9799bdc65 --- /dev/null +++ b/changelog/unreleased/refactor-naming.md @@ -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 diff --git a/changelog/unreleased/switch-to-uuids.md b/changelog/unreleased/switch-to-uuids.md new file mode 100644 index 0000000000..cde19c7cd1 --- /dev/null +++ b/changelog/unreleased/switch-to-uuids.md @@ -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