Skip to content

Commit 61c8267

Browse files
authored
Merge pull request #1190 from moreati/test-port-keyword
Prepare v0.3.17 and some washup tests
2 parents 6da2c6a + d2db3c3 commit 61c8267

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

docs/changelog.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,20 @@ To avail of fixes in an unreleased version, please download a ZIP file
2121
In progress (unreleased)
2222
------------------------
2323

24+
25+
26+
v0.3.17 (2024-11-07)
27+
--------------------
28+
2429
* :gh:issue:`1182` CI: Fix incorrect world readable/writable file permissions
2530
on SSH key ``mitogen__has_sudo_pubkey.key`` during Ansible tests.
2631
* :gh:issue:`1083` :mod:`ansible_mitogen`: Templated SSH private key file
2732
(e.g. ``ansible_private_key_file``).
2833
* :gh:issue:`1083` :mod:`ansible_mitogen`: Templated SSH host key checking
2934
(e.g. ``ansible_host_key_checking``, ``ansible_ssh_host_key_checking``).
35+
* :gh:issue:`1083` :mod:`ansible_mitogen`: Templated host address
36+
(e.g. ``ansible_host``, ``ansible_ssh_host``)
37+
* :gh:issue:`1184` Test templated SSH host key checking in task vars
3038

3139

3240
v0.3.16 (2024-11-05)

mitogen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636

3737
#: Library version as a tuple.
38-
__version__ = (0, 3, 17, 'dev')
38+
__version__ = (0, 3, 18, 'dev')
3939

4040

4141
#: This is :data:`False` in slave contexts. Previously it was used to prevent

tests/ansible/integration/ssh/templated_by_play_taskvar.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
gather_facts: false
44
vars:
55
ansible_host: "{{ hostvars[groups['test-targets'][0]].host | default('localhost') }}"
6+
ansible_host_key_checking: "{{ 'false' | trim }}"
67
ansible_password: "{{ 'has_sudo_nopw_password' | trim }}"
78
ansible_port: "{{ hostvars[groups['test-targets'][0]].ansible_port | default(22) }}"
89
ansible_ssh_executable: "{{ 'ssh' | trim }}"
@@ -18,6 +19,7 @@
1819
gather_facts: false
1920
vars:
2021
ansible_host: "{{ hostvars[groups['test-targets'][0]].host | default('localhost') }}"
22+
ansible_host_key_checking: "{{ 'false' | trim }}"
2123
ansible_private_key_file: "{{ git_basedir }}/tests/data/docker/mitogen__has_sudo_pubkey.key"
2224
ansible_port: "{{ hostvars[groups['test-targets'][0]].ansible_port | default(22) }}"
2325
ansible_ssh_executable: "{{ 'ssh' | trim }}"

0 commit comments

Comments
 (0)