From df22e07cb75f94093a6a06aa87273c5cd4f873d2 Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Mon, 26 Jun 2023 15:46:49 +0200 Subject: [PATCH] Add changelog for recent yaml 1.2 change Fixes: #6510 --- changelog/unreleased/config-yaml-1-2.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 changelog/unreleased/config-yaml-1-2.md diff --git a/changelog/unreleased/config-yaml-1-2.md b/changelog/unreleased/config-yaml-1-2.md new file mode 100644 index 0000000000..17078f87c8 --- /dev/null +++ b/changelog/unreleased/config-yaml-1-2.md @@ -0,0 +1,13 @@ +Change: YAML configuration files are restricted to yaml-1.2 + +For parsing YAML based configuration files we utilize the gookit/config module. +That module has dropped support for older variants of the YAML format. It now +only supports the YAML 1.2 syntax. +If you're using yaml configuration files, please make sure to update your files +accordingly. The most significant change likely is that only the string `true` +and `false` (including `TRUE`,`True`, `FALSE` and `False`) are now parsed as +booleans. `Yes`, `On` and other values are not longer considered valid values +for booleans. + +https://github.com/owncloud/ocis/issues/6510 +https://github.com/owncloud/ocis/pull/6493