Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .README.html
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,16 @@ <h2 id="bootloader_settings">bootloader_settings</h2>
<li><code>name</code> - The name of the setting. Omit <code>name</code>
when using <code>replaced</code>.</li>
<li><code>value</code> - The value for the setting. You must omit
<code>value</code> if the setting has no value, e.g.
<code>quiet</code>.</li>
<code>value</code> if the setting has no value, e.g. <code>quiet</code>.
<strong>NOTE</strong> - a value must not be <a
href="https://yaml.org/type/bool.html">YAML bool type</a>. One situation
where this might be a problem is using <code>value: on</code> or other
YAML <code>bool</code> typed value. You must quote these values, or
otherwise pass them as a value of <code>str</code> type e.g.
<code>value: "on"</code>. The same applies to <code>null</code> values.
If you specify a value, it must not be <code>null</code> - values such
as <code>value:</code> or <code>value: ~</code> or
<code>value: null</code> are not allowed and will raise an error.</li>
<li><code>state</code> - <code>present</code> (default) or
<code>absent</code>. The value <code>absent</code> means to remove a
setting with the given <code>name</code> - the name must be
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

[1.1.2] - 2025-08-01
--------------------

### Bug Fixes

- fix: boolean values and null values are not allowed (#153)
- fix: Fix Python 2.7.5 compatibility by using msg= in fail_json() calls (#154)

[1.1.1] - 2025-07-15
--------------------

Expand Down
Loading