Skip to content

Commit

Permalink
docs(changelog): version 1.4.0 [citest skip]
Browse files Browse the repository at this point in the history
Update changelog and .README.html for version 1.4.0

Signed-off-by: Rich Megginson <[email protected]>
  • Loading branch information
richm committed Aug 1, 2024
1 parent 5b657ca commit 59a8073
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
23 changes: 17 additions & 6 deletions .README.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<style type="text/css">code{white-space: pre;}</style>
<style type="text/css">
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span { line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
Expand All @@ -70,7 +70,7 @@
}
@media print {
pre > code.sourceCode { white-space: pre-wrap; }
pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
pre > code.sourceCode > span { display: inline-block; text-indent: -5em; padding-left: 5em; }
}
pre.numberSource code
{ counter-reset: source-line 0; }
Expand Down Expand Up @@ -206,6 +206,17 @@ <h1 id="role-variables">Role Variables</h1>
there are no other tasks in the playbook that require reboot, you can
set this value to <code>true</code> and this role will handle the reboot
for you, when needed.</p>
<ul>
<li><code>crypto_policies_transactional_update_reboot_ok</code></li>
</ul>
<p>This variable is used to handle reboots required by transactional
updates. If a transactional update requires a reboot, the role will
proceed with the reboot if
<code>crypto_policies_transactional_update_reboot_ok</code> is set to
<code>true</code>. If set to <code>false</code>, the role will notify
the user that a reboot is required, allowing for custom handling of the
reboot requirement. If this variable is not set, the role will fail to
ensure the reboot requirement is not overlooked.</p>
<h2 id="variables-exported-by-the-role">Variables Exported by the
Role</h2>
<ul>
Expand Down Expand Up @@ -245,10 +256,10 @@ <h1 id="example-playbook">Example Playbook</h1>
class="sourceCode yaml"><code class="sourceCode yaml"><span id="cb2-1"><a href="#cb2-1" aria-hidden="true" tabindex="-1"></a><span class="kw">-</span><span class="at"> </span><span class="fu">name</span><span class="kw">:</span><span class="at"> Manage crypto policies</span></span>
<span id="cb2-2"><a href="#cb2-2" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">hosts</span><span class="kw">:</span><span class="at"> all</span></span>
<span id="cb2-3"><a href="#cb2-3" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">roles</span><span class="kw">:</span></span>
<span id="cb2-4"><a href="#cb2-4" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">role</span><span class="kw">:</span><span class="at"> linux-system-roles.crypto_policies</span></span>
<span id="cb2-5"><a href="#cb2-5" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">vars</span><span class="kw">:</span></span>
<span id="cb2-6"><a href="#cb2-6" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">crypto_policies_policy</span><span class="kw">:</span><span class="at"> </span><span class="st">&quot;DEFAULT:NO-SHA1&quot;</span></span>
<span id="cb2-7"><a href="#cb2-7" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">crypto_policies_reload</span><span class="kw">:</span><span class="at"> </span><span class="ch">false</span></span></code></pre></div>
<span id="cb2-4"><a href="#cb2-4" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="kw">-</span><span class="at"> </span><span class="fu">role</span><span class="kw">:</span><span class="at"> linux-system-roles.crypto_policies</span></span>
<span id="cb2-5"><a href="#cb2-5" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">vars</span><span class="kw">:</span></span>
<span id="cb2-6"><a href="#cb2-6" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">crypto_policies_policy</span><span class="kw">:</span><span class="at"> </span><span class="st">&quot;DEFAULT:NO-SHA1&quot;</span></span>
<span id="cb2-7"><a href="#cb2-7" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">crypto_policies_reload</span><span class="kw">:</span><span class="at"> </span><span class="ch">false</span></span></code></pre></div>
<h1 id="rpm-ostree">rpm-ostree</h1>
<p>See README-ostree.md</p>
<h1 id="license">License</h1>
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Changelog
=========

[1.4.0] - 2024-08-01
--------------------

### New Features

- Handle reboot for transactional update systems (#121)

### Other Changes

- ci: Add tft plan and workflow (#120)
- ci: Update fmf plan to add a separate job to prepare managed nodes (#122)
- ci: Bump sclorg/testing-farm-as-github-action from 2 to 3 (#123)

[1.3.5] - 2024-07-02
--------------------

Expand Down

0 comments on commit 59a8073

Please sign in to comment.