diff --git a/.changeset/tidy-flies-cheer.md b/.changeset/tidy-flies-cheer.md index d8c3780821..78de902e63 100644 --- a/.changeset/tidy-flies-cheer.md +++ b/.changeset/tidy-flies-cheer.md @@ -2,4 +2,6 @@ '@backstage/config': patch --- -Handle a case when boolean configuration parameters are given a string type of 'true' or 'false'. This happens particularly when such parameters are used with environmental substitution as environment variables are always strings. +Adds the ability to coerce values to their boolean representatives. +Values such as `"true"` `1` `on` and `y` will become `true` when using `getBoolean` and the opposites `false`. +This happens particularly when such parameters are used with environmental substitution as environment variables are always strings.