Skip to content

Commit 7853b0d

Browse files
committed
docs(changelog): version 1.10.0 [citest skip]
Update changelog and .README.html for version 1.10.0 Signed-off-by: Rich Megginson <[email protected]>
1 parent 95f5db6 commit 7853b0d

File tree

2 files changed

+43
-4
lines changed

2 files changed

+43
-4
lines changed

.README.html

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@
5858
</style>
5959
<style type="text/css">code{white-space: pre;}</style>
6060
<style type="text/css">
61+
html { -webkit-text-size-adjust: 100%; }
6162
pre > code.sourceCode { white-space: pre; position: relative; }
62-
pre > code.sourceCode > span { line-height: 1.25; }
63+
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
6364
pre > code.sourceCode > span:empty { height: 1.2em; }
6465
.sourceCode { overflow: visible; }
6566
code.sourceCode > span { color: inherit; text-decoration: inherit; }
@@ -70,7 +71,7 @@
7071
}
7172
@media print {
7273
pre > code.sourceCode { white-space: pre-wrap; }
73-
pre > code.sourceCode > span { display: inline-block; text-indent: -5em; padding-left: 5em; }
74+
pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
7475
}
7576
pre.numberSource code
7677
{ counter-reset: source-line 0; }
@@ -247,7 +248,7 @@ <h1 id="role-variables">Role Variables</h1>
247248
<span id="cb2-66"><a href="#cb2-66" aria-hidden="true" tabindex="-1"></a><span class="co"># are not covered by the predefined settings provided by this role.</span></span>
248249
<span id="cb2-67"><a href="#cb2-67" aria-hidden="true" tabindex="-1"></a><span class="co"># &#39;timesync_chrony_custom_settings&#39; allows to define a list of custom settings</span></span>
249250
<span id="cb2-68"><a href="#cb2-68" aria-hidden="true" tabindex="-1"></a><span class="co"># for the chrony.conf file, by providing a list of settings. As an example,</span></span>
250-
<span id="cb2-69"><a href="#cb2-69" aria-hidden="true" tabindex="-1"></a><span class="co"># for debugging, one might need to log mesurements, statistics and tracking.</span></span>
251+
<span id="cb2-69"><a href="#cb2-69" aria-hidden="true" tabindex="-1"></a><span class="co"># for debugging, one might need to log measurements, statistics and tracking.</span></span>
251252
<span id="cb2-70"><a href="#cb2-70" aria-hidden="true" tabindex="-1"></a><span class="co"># This information is usually stored in the /var/log/chrony directory. For</span></span>
252253
<span id="cb2-71"><a href="#cb2-71" aria-hidden="true" tabindex="-1"></a><span class="co"># that, one needs to define two different settings (logdir and log), as</span></span>
253254
<span id="cb2-72"><a href="#cb2-72" aria-hidden="true" tabindex="-1"></a><span class="co"># follows:</span></span>
@@ -262,7 +263,19 @@ <h1 id="role-variables">Role Variables</h1>
262263
<span id="cb2-81"><a href="#cb2-81" aria-hidden="true" tabindex="-1"></a><span class="co"># for custom handling of the reboot requirement. If this variable is not set,</span></span>
263264
<span id="cb2-82"><a href="#cb2-82" aria-hidden="true" tabindex="-1"></a><span class="co"># the role will fail to ensure the reboot requirement is not overlooked.</span></span>
264265
<span id="cb2-83"><a href="#cb2-83" aria-hidden="true" tabindex="-1"></a><span class="co"># For non-transactional update systems, this variable is ignored.</span></span>
265-
<span id="cb2-84"><a href="#cb2-84" aria-hidden="true" tabindex="-1"></a><span class="fu">timesync_transactional_update_reboot_ok</span><span class="kw">:</span><span class="at"> </span><span class="ch">true</span></span></code></pre></div>
266+
<span id="cb2-84"><a href="#cb2-84" aria-hidden="true" tabindex="-1"></a><span class="fu">timesync_transactional_update_reboot_ok</span><span class="kw">:</span><span class="at"> </span><span class="ch">true</span></span>
267+
<span id="cb2-85"><a href="#cb2-85" aria-hidden="true" tabindex="-1"></a></span>
268+
<span id="cb2-86"><a href="#cb2-86" aria-hidden="true" tabindex="-1"></a><span class="co"># This option is useful on systems where IPv6 or IPv4 are disabled.</span></span>
269+
<span id="cb2-87"><a href="#cb2-87" aria-hidden="true" tabindex="-1"></a><span class="co"># chronyd will work on a IPv6-disabled host without -4, but it logs error messages</span></span>
270+
<span id="cb2-88"><a href="#cb2-88" aria-hidden="true" tabindex="-1"></a><span class="co"># when binding to the IPv6 sockets fails. Adding the -4 option disables those sockets</span></span>
271+
<span id="cb2-89"><a href="#cb2-89" aria-hidden="true" tabindex="-1"></a><span class="co"># and there are no error messages. It&#39;s also useful to prevent the client from using</span></span>
272+
<span id="cb2-90"><a href="#cb2-90" aria-hidden="true" tabindex="-1"></a><span class="co"># IPv6 servers when IPv4 is known to work better (e.g. IPv6 over a tunnel).</span></span>
273+
<span id="cb2-91"><a href="#cb2-91" aria-hidden="true" tabindex="-1"></a><span class="co"># Corresponds to the `-4` and `-6` OPTIONS for chronyd and ntpd. Values are:</span></span>
274+
<span id="cb2-92"><a href="#cb2-92" aria-hidden="true" tabindex="-1"></a><span class="co"># * IPv4 - use only IPv4</span></span>
275+
<span id="cb2-93"><a href="#cb2-93" aria-hidden="true" tabindex="-1"></a><span class="co"># * IPv6 - use only IPv6</span></span>
276+
<span id="cb2-94"><a href="#cb2-94" aria-hidden="true" tabindex="-1"></a><span class="co"># * all - use both IPv4 and IPv6</span></span>
277+
<span id="cb2-95"><a href="#cb2-95" aria-hidden="true" tabindex="-1"></a><span class="co"># Default is all</span></span>
278+
<span id="cb2-96"><a href="#cb2-96" aria-hidden="true" tabindex="-1"></a><span class="fu">timesync_ntp_ip_family</span><span class="kw">:</span><span class="at"> all</span></span></code></pre></div>
266279
<h1 id="example-playbooks">Example Playbooks</h1>
267280
<p>Install and configure ntp to synchronize the system clock with three
268281
NTP servers:</p>

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,32 @@
11
Changelog
22
=========
33

4+
[1.10.0] - 2025-04-23
5+
--------------------
6+
7+
### New Features
8+
9+
- feat: add support for timesync_ntp_ip_family (#277)
10+
11+
### Bug Fixes
12+
13+
- fix: add default seccomp filters for el9/10 (#279)
14+
15+
### Other Changes
16+
17+
- ci: Check spelling with codespell (#267)
18+
- ci: ansible-plugin-scan is disabled for now (#268)
19+
- ci: bump ansible-lint to v25; provide collection requirements for ansible-lint (#271)
20+
- ci: Add test plan that runs CI tests and customize it for each role (#273)
21+
- ci: In test plans, prefix all relate variables with SR_ (#274)
22+
- ci: Create inventory for wrapper test with inventory_hostname (#275)
23+
- ci: Fix bug with ARTIFACTS_URL after prefixing with SR_ (#276)
24+
- ci: several changes related to new qemu test, ansible-lint, python versions, ubuntu versions (#281)
25+
- refactor: make OracleLinux vars files symlinks to RedHat vars files (#283)
26+
- ci: use tox-lsr 3.6.0; improve qemu test logging (#284)
27+
- ci: skip storage scsi, nvme tests in github qemu ci (#285)
28+
- test: ensure tests cleanup and restore the system state (#286)
29+
430
[1.9.2] - 2025-01-09
531
--------------------
632

0 commit comments

Comments
 (0)