File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed
Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -243,8 +243,16 @@ <h2 id="bootloader_settings">bootloader_settings</h2>
243243< li > < code > name</ code > - The name of the setting. Omit < code > name</ code >
244244when using < code > replaced</ code > .</ li >
245245< li > < code > value</ code > - The value for the setting. You must omit
246- < code > value</ code > if the setting has no value, e.g.
247- < code > quiet</ code > .</ li >
246+ < code > value</ code > if the setting has no value, e.g. < code > quiet</ code > .
247+ < strong > NOTE</ strong > - a value must not be < a
248+ href ="https://yaml.org/type/bool.html "> YAML bool type</ a > . One situation
249+ where this might be a problem is using < code > value: on</ code > or other
250+ YAML < code > bool</ code > typed value. You must quote these values, or
251+ otherwise pass them as a value of < code > str</ code > type e.g.
252+ < code > value: "on"</ code > . The same applies to < code > null</ code > values.
253+ If you specify a value, it must not be < code > null</ code > - values such
254+ as < code > value:</ code > or < code > value: ~</ code > or
255+ < code > value: null</ code > are not allowed and will raise an error.</ li >
248256< li > < code > state</ code > - < code > present</ code > (default) or
249257< code > absent</ code > . The value < code > absent</ code > means to remove a
250258setting with the given < code > name</ code > - the name must be
Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ [ 1.1.2] - 2025-08-01
5+ --------------------
6+
7+ ### Bug Fixes
8+
9+ - fix: boolean values and null values are not allowed (#153 )
10+ - fix: Fix Python 2.7.5 compatibility by using msg= in fail_json() calls (#154 )
11+
412[ 1.1.1] - 2025-07-15
513--------------------
614
You can’t perform that action at this time.
0 commit comments