Releases: linux-system-roles/nbde_client
Version 1.2.12
Version 1.2.11
Version 1.2.10
[1.2.10] - 2023-01-23
New Features
- none
Bug Fixes
- Fix nbde_client error handling (#101)
Other Changes
- none
Version 1.2.9
Version 1.2.8
[1.2.8] - 2022-11-29
New Features
- none
Bug Fixes
- use fedora.linux_system_roles.nbde_server for tests (#86)
use fedora.linux_system_roles.nbde_server for tests instead of git
cloning the repo. Use the tests/collection-requirements.yml
so
the test infrastructure will install the collection.
Other Changes
- none
Version 1.2.7
[1.2.7] - 2022-11-01
New Features
- none
Bug Fixes
skip clevis askpass systemd unit for RHEL 8.2 and 8.3
- use no_log: true where secrets might be revealed
Other Changes
- fix test tmp files (#80)
tests - use generated temp directory for all controller files
If you run multiple tests in parallel, some of the tests could overwrite
or remove files in use by other tests on the controller. Use a
temp directory for controller files.
- test support for CentOS Stream 9
Version 1.2.6
[1.2.6] - 2022-07-28
New Features
- none
Bug Fixes
- Sets needed spacing for appended rd.neednet parameter (#68)
- Sets proper spacing for parameter rd.neednet=1 so that it is correctly appended to kernel cmdline, changes = to += for adding rd.neednet parameter
Other Changes
-
changelog_to_tag action - support other than "master" for the main branch name, as well (#75)
-
Use GITHUB_REF_NAME as name of push branch; fix error in branch detection [citest skip] (#76)
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 [email protected]
Version 1.2.5
[1.2.5] - 2022-07-19
New Features
- none
Bug Fixes
- none
Other Changes
- make all tests work with gather_facts: false (#69)
Ensure tests work when using ANSIBLE_GATHERING=explicit
- make min_ansible_version a string in meta/main.yml (#70)
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 (#71)
bump tox-lsr version to 2.11.0; remove py37; add py310 (#67)
[citest skip] bump tox-lsr version to 2.11.0; remove py37; add py310 (#67)
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 [email protected]
support gather_facts: false; support setup-snapshot.yml (#66)
support gather_facts: false; support setup-snapshot.yml (#66)
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.