Merge branch 'master' into docs-master

docs-master
Alex Willmer 7 months ago
commit dcf70616f5

1
.gitignore vendored

@ -1,3 +1,4 @@
.ansible/
.coverage
.tox
.venv

@ -21,6 +21,16 @@ To avail of fixes in an unreleased version, please download a ZIP file
In progress (unreleased)
------------------------
Ansible 12 has deprecated third-party strategy plugins. This is currently
how Mitogen integrates with Ansible (e.g. `ANSIBLE_STRATEGY=mitogen_linear`).
Running Ansible 12 + Mitogen will currently print a deprecation warning
[DEPRECATION WARNING]: Use of strategy plugins not included in
ansible.builtin are deprecated [...]. This feature will be removed from
ansible-core in a future release.
Ansible + Mitogen will still work for now. Mitogen is considering alternatives
to strategy plugins under :gh:issue:`1278`.
v0.3.25a1 (2025-06-05)

@ -7,8 +7,9 @@ sys.path.append('.')
def changelog_version(path, encoding='utf-8'):
"Return the 1st *stable* (not pre, dev) version in the changelog"
# See also grep_version() in setup.py
# e.g. "0.1.2, (1999-12-31)\n"
version_pattern = re.compile(
r'^v(?P<version>[0-9]+\.[0-9]+\.[0-9]+)',
r'^v(?P<version>\d+\.\d+\.\d+) \((?P<date>\d\d\d\d-\d\d-\d\d)\)$',
re.MULTILINE,
)

Loading…
Cancel
Save