From 53b6bf0292e662e171e75611cf0393f6ae86d0f2 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Mon, 20 Jan 2025 19:40:45 +0000 Subject: [PATCH 1/3] docs: Add changelog, credits for connection_loader__get fixes refs #1215 --- docs/changelog.rst | 3 +++ docs/contributors.rst | 2 ++ 2 files changed, 5 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index cc20a482..62e8362e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -24,6 +24,9 @@ In progress (unreleased) * :gh:issue:`1209` docs: Fix Netlify build of website * :gh:issue:`1216` :mod:`ansible_mitogen`: Add all ansible_freeipa modules to the always-fork list. +* :gh:issue:`766` :mod:`ansible_mitogen`: Fix ""could not recover task_vars" + and "get_with_context_result object has no attribute _create_control_path" + when using ``kubectl``, ``netconf``, or ``network_cli`` connection plugins. v0.3.20 (2025-01-07) diff --git a/docs/contributors.rst b/docs/contributors.rst index ad35f91c..c37b64c9 100644 --- a/docs/contributors.rst +++ b/docs/contributors.rst @@ -124,6 +124,7 @@ sponsorship and outstanding future-thinking of its early adopters.
  • Epartment
  • Fidy Andrianaivonever let a human do an ansible job ;)
  • rkrzr
  • +
  • Jarl Gullberg
  • jgadling
  • John F Wall — Making Ansible Great with Massive Parallelism
  • Jonathan Rosser
  • @@ -132,6 +133,7 @@ sponsorship and outstanding future-thinking of its early adopters.
  • Luca Berruti
  • Lewis Bellwood — Happy to be apart of a great project.
  • luto
  • +
  • @markafarrell
  • Mayeu a.k.a Matthieu Maury
  • Michael D'Silva
  • mordek
  • From 8b7354cb3a8885e161495934f70a2b7b9f95b412 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Mon, 20 Jan 2025 19:41:13 +0000 Subject: [PATCH 2/3] Prepare v0.3.21 --- docs/changelog.rst | 4 ++-- mitogen/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 62e8362e..c0ce8384 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -18,8 +18,8 @@ To avail of fixes in an unreleased version, please download a ZIP file `directly from GitHub `_. -In progress (unreleased) ------------------------- +v0.3.21 (2025-01-20) +-------------------- * :gh:issue:`1209` docs: Fix Netlify build of website * :gh:issue:`1216` :mod:`ansible_mitogen`: Add all ansible_freeipa modules to diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 0a34c21b..bbf807dc 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, 21, 'dev') +__version__ = (0, 3, 21) #: This is :data:`False` in slave contexts. Previously it was used to prevent From 5c76941d1e684369ea83da4fa7314be6470f9d11 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Mon, 20 Jan 2025 19:42:35 +0000 Subject: [PATCH 3/3] Begin 0.3.22dev --- docs/changelog.rst | 5 +++++ mitogen/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index c0ce8384..ce84593c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -18,6 +18,11 @@ To avail of fixes in an unreleased version, please download a ZIP file `directly from GitHub `_. +In progress (unreleased) +------------------------ + + + v0.3.21 (2025-01-20) -------------------- diff --git a/mitogen/__init__.py b/mitogen/__init__.py index bbf807dc..7e8cb030 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, 21) +__version__ = (0, 3, 22, 'dev') #: This is :data:`False` in slave contexts. Previously it was used to prevent