Skip to content

Commit c8de5eb

Browse files
committed
docs(changelog): version 1.1.2 [citest skip]
Update changelog and .README.html for version 1.1.2 Signed-off-by: Rich Megginson <rmeggins@redhat.com>
1 parent 9538870 commit c8de5eb

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

.README.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff 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>
244244
when 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
250258
setting with the given <code>name</code> - the name must be

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
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

0 commit comments

Comments
 (0)