Releases: linux-system-roles/kernel_settings
Version 1.1.15
[1.1.15] - 2023-04-27
Other Changes
- test: check generated files for ansible_managed, fingerprint
- ci: Add commitlint GitHub action to ensure conventional commits with feedback
Version 1.1.14
[1.1.14] - 2023-04-13
Other Changes
- ansible-lint - use changed_when even if using conditional (#143)
Version 1.1.13
Version 1.1.12
[1.1.12] - 2023-01-25
New Features
- none
Bug Fixes
- Cleanup non-inclusive words.
Other Changes
- none
Version 1.1.11
Version 1.1.10
[1.1.10] - 2022-08-03
New Features
- none
Bug Fixes
- Set the kernel_settings_reboot_required when reboot needed (#93)
Previously the role would only set kernel_settings_reboot_required
if the user did not specify kernel_settings_reboot_ok: true.
The role will now set kernel_settings_reboot_required whenever
the system needs a reboot, and rely on the handler to clear the flag
if the user has set kernel_settings_reboot_ok: true.
Other Changes
- Add "Publish role to Galaxy" to github action changelog_to_tag.yml (#91)
Fix a bash bug in changelog_to_tag.yml, which unexpectedly expanded "*".
-
changelog_to_tag action - support other than "master" for the main branch name, as well (#92)
-
Use GITHUB_REF_NAME as name of push branch; fix error in branch detection [citest skip] (#94)
We need to get the name of the branch to which CHANGELOG.md was pushed.
For now, it looks as though GITHUB_REF_NAME is that name. But don't
trust it - first, check that it is main or master. If not, then use
a couple of other methods to determine what is the push branch.
Signed-off-by: Rich Megginson rmeggins@redhat.com
Version 1.1.9
[1.1.9] - 2022-07-10
New Features
- none
Bug Fixes
- none
Other Changes
- make all tests work with gather_facts: false (#82)
Ensure tests work when using ANSIBLE_GATHERING=explicit
- make min_ansible_version a string in meta/main.yml (#83)
The Ansible developers say that min_ansible_version in meta/main.yml
must be a string value like "2.9", not a float value like 2.9.
- Add CHANGELOG.md (#84)
Add tests::reboot tag to tests/tests_{change,simple}_settings.yml for CI. (#80)
Add tests::reboot tag to tests/tests_{change,simple}_settings.yml for CI. (#80)
[citest skip] bump tox-lsr version to 2.11.0; remove py37; add py310 (#81)
tox-lsr version 2.11.0 has support for collection-requirements.yml,
runqemu improvements, and support for python 3.10
python 3.7 is not used on any supported platform, so remove it
Signed-off-by: Rich Megginson rmeggins@redhat.com
support gather_facts: false; support setup-snapshot.yml (#79)
support gather_facts: false; support setup-snapshot.yml (#79)
Some users use gather_facts: false in their playbooks. This changes
the role to work in that case, by gathering only the facts it requires
to run.
CI testing can be sped up by creating a snapshot image pre-installed
with packages. tests/setup-snapshot.yml can be used by a CI system
to do this.