Add changelog for recent yaml 1.2 change

Fixes: #6510
This commit is contained in:
Ralf Haferkamp
2023-06-26 15:46:49 +02:00
parent cd304b4df8
commit df22e07cb7

View File

@@ -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