From d818b201b3e4126bc9d3a43748b6db24b178e971 Mon Sep 17 00:00:00 2001 From: Fabio Greco <29181278+feteu@users.noreply.github.com> Date: Sat, 5 Jul 2025 10:46:55 +0200 Subject: [PATCH 1/4] Update missing host key checking argument in docs/ansible_detailed.rst The arguments ansible_ssh_host_key_checking and ansible_host_key_checking were missing in the documentation, while being introduced with the commit "https://github.com/moreati/mitogen/commit/57498453249c4c938fb9c3e6c45b9051f7e5ed47" --- docs/ansible_detailed.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/ansible_detailed.rst b/docs/ansible_detailed.rst index 703e9b4b..06aa4955 100644 --- a/docs/ansible_detailed.rst +++ b/docs/ansible_detailed.rst @@ -1018,6 +1018,8 @@ Like the :ans:conn:`ssh` except connection delegation is supported. * ``ansible_ssh_private_key_file`` * ``ansible_ssh_pass``, ``ansible_ssh_password``, ``ansible_password`` (default: assume passwordless) +* ``ansible_ssh_host_key_checking``, ``ansible_host_key_checking`` (default: + :data:`True`) * ``ssh_args``, ``ssh_common_args``, ``ssh_extra_args`` * ``mitogen_mask_remote_name``: if :data:`True`, mask the identity of the Ansible controller process on remote machines. To simplify diagnostics, From 573303ac7336febb8e27edf253c507e998b66130 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Mon, 14 Jul 2025 23:13:25 +0100 Subject: [PATCH 2/4] CI: Switch to archived Debian 10 (buster) apt repository The Debian project recently removed this EOL version from the live mirrors. --- docs/changelog.rst | 2 ++ tests/ansible/hosts/group_vars/debian10.yml | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 tests/ansible/hosts/group_vars/debian10.yml diff --git a/docs/changelog.rst b/docs/changelog.rst index 2593fbd2..fbe95aab 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -32,6 +32,8 @@ Running Ansible 12 + Mitogen will currently print a deprecation warning Ansible + Mitogen will still work for now. Mitogen is considering alternatives to strategy plugins under :gh:issue:`1278`. +* :gh:issue:`1303` CI: Switch to archived Debian 10 (buster) apt repository + v0.3.25a3 (2025-07-02) ---------------------- diff --git a/tests/ansible/hosts/group_vars/debian10.yml b/tests/ansible/hosts/group_vars/debian10.yml new file mode 100644 index 00000000..c6c0a268 --- /dev/null +++ b/tests/ansible/hosts/group_vars/debian10.yml @@ -0,0 +1,4 @@ +package_manager_repos: + - dest: /etc/apt/sources.list + content: | + deb http://archive.debian.org/debian buster main contrib non-free From 2ae35c8a15d8f778510d47ef58f1f5b834eb1e2b Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Mon, 21 Jul 2025 21:45:24 +0100 Subject: [PATCH 3/4] Prepare v0.3.25b1 --- docs/changelog.rst | 4 ++++ mitogen/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index fbe95aab..3f475e60 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -32,6 +32,10 @@ Running Ansible 12 + Mitogen will currently print a deprecation warning Ansible + Mitogen will still work for now. Mitogen is considering alternatives to strategy plugins under :gh:issue:`1278`. + +v0.3.25b1 (2025-07-21) +---------------------- + * :gh:issue:`1303` CI: Switch to archived Debian 10 (buster) apt repository diff --git a/mitogen/__init__.py b/mitogen/__init__.py index baa59b45..4c142e64 100644 --- a/mitogen/__init__.py +++ b/mitogen/__init__.py @@ -35,7 +35,7 @@ be expected. On the slave, it is built dynamically during startup. #: Library version as a tuple. -__version__ = (0, 3, 25, 'dev') +__version__ = (0, 3, 25, 'b', 1) #: This is :data:`False` in slave contexts. Previously it was used to prevent From fa22aa1c8eedb410830f1815a7d77b47b9333c5a Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Mon, 21 Jul 2025 21:46:06 +0100 Subject: [PATCH 4/4] Resume 0.3.25dev --- mitogen/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 4c142e64..baa59b45 100644 --- a/mitogen/__init__.py +++ b/mitogen/__init__.py @@ -35,7 +35,7 @@ be expected. On the slave, it is built dynamically during startup. #: Library version as a tuple. -__version__ = (0, 3, 25, 'b', 1) +__version__ = (0, 3, 25, 'dev') #: This is :data:`False` in slave contexts. Previously it was used to prevent