forked from pool/python-ansible-compat
Compare commits
12 Commits
Author | SHA256 | Date | |
---|---|---|---|
|
8ef96f297c | ||
|
f3b9750983 | ||
|
927ea0ef49 | ||
|
34ac8ce2d7 | ||
|
9f9ab9465b | ||
|
1b1d72124f | ||
|
ea83287415 | ||
|
ec2ca4b24d | ||
|
ec8e5ee028 | ||
|
1333d73c08 | ||
|
a0f1bc8c34 | ||
|
8d4c22f95c |
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c75836c604b54be9a5b627922c13670c8538b4d81a27ddccc75bf4db04464359
|
||||
size 74341
|
3
python-ansible-compat-25.1.1.tar.gz
Normal file
3
python-ansible-compat-25.1.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:60098c42cf166ba0ebe24befe6fecee86d655b9e9e656e8cb10d8ea13f4a167d
|
||||
size 82644
|
@ -1,3 +1,62 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 28 18:45:25 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
- update to 25.1.1:
|
||||
* Bugfixes
|
||||
- Ensure that cache directory is writable (#453) @ssbarnea
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 27 16:42:57 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
- update to 25.1.0:
|
||||
* Major
|
||||
- Inject venv site-packages at the top of collection path (test
|
||||
isolation) (#447) @ssbarnea
|
||||
- Fail if old ANSIBLE_COLLECTIONS_PATHS is detected (#449)
|
||||
@ssbarnea
|
||||
* Bugfixes
|
||||
- Patch #449 to use ANSIBLE_COLLECTIONS_PATH (#450) @ssbarnea
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 15 07:12:45 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
- update to 25.0.0:
|
||||
* Major
|
||||
- Support ansible 2.18, drop 2.14/2.15 and py39 (#443) @ssbarnea
|
||||
* Bugfixes
|
||||
- Change cache_dir location to prefer venv and project_directory (#439) @ssbarnea
|
||||
- Enable toml-sort-fix (#442) @ssbarnea
|
||||
- Refactor search_galaxy_paths to use pathlib (#437) @ssbarnea
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 13 14:31:54 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
- update to 24.10.0:
|
||||
* Enhancements
|
||||
- Add support for py313 (#416) @ssbarnea
|
||||
* Bugfixes
|
||||
- Re-init plugin loader after collections installation (#411) (#412) @irozet12
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 21 17:39:31 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
- update to 24.9.1:
|
||||
* Bugfixes
|
||||
- Avoid running prepare ansible paths twice (#409) @ssbarnea
|
||||
- Avoid duplicate paths when path injection (#407) @ssbarnea
|
||||
- Provide more detail on multiple collection installs (#405)
|
||||
@mrgum
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 12 05:27:25 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
- update to 24.9.0:
|
||||
* Enhancements
|
||||
- Add communication details (#400) @oraNod
|
||||
* Bugfixes
|
||||
- Fix upload-artifact action to work with v4.4 and newer (#403)
|
||||
@alisonlhart
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 19 14:24:42 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
||||
%endif
|
||||
|
||||
Name: python-ansible-compat
|
||||
Version: 24.8.0
|
||||
Version: 25.1.1
|
||||
Release: 0
|
||||
Summary: Compatibility shim for Ansible 2.9 and newer
|
||||
License: MIT
|
||||
@ -43,12 +43,13 @@ BuildRequires: %{python_module jsonschema >= 4.17.3}
|
||||
BuildRequires: %{python_module subprocess-tee >= 0.4.1}
|
||||
# https://github.com/ansible/ansible-compat/blob/main/.config/requirements-test.in
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module pytest-instafail}
|
||||
BuildRequires: %{python_module pytest-mock}
|
||||
BuildRequires: %{python_module pytest-plus}
|
||||
# /SECTION
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-generators
|
||||
Requires: ansible-core >= 2.14
|
||||
Requires: ansible-core >= 2.16
|
||||
Requires: python-PyYAML
|
||||
Requires: python-jsonschema >= 4.17.3
|
||||
Requires: python-packaging
|
||||
@ -90,6 +91,13 @@ IGNORED_CHECKS="${IGNORED_CHECKS} or test_scan_sys_path[scanF-raises_not_foundT]
|
||||
IGNORED_CHECKS="${IGNORED_CHECKS} or test_scan_sys_path[scanT-raises_not_foundF]"
|
||||
IGNORED_CHECKS="${IGNORED_CHECKS} or test_upgrade_collection"
|
||||
IGNORED_CHECKS="${IGNORED_CHECKS} or test_runtime_has_playbook"
|
||||
IGNORED_CHECKS="${IGNORED_CHECKS} or test_load_plugins[modules]"
|
||||
IGNORED_CHECKS="${IGNORED_CHECKS} or test_get_cache_dir_relative"
|
||||
# tests that need network connectivity
|
||||
IGNORED_CHECKS="${IGNORED_CHECKS} or test_scan_sys_path[0]"
|
||||
IGNORED_CHECKS="${IGNORED_CHECKS} or test_scan_sys_path[1]"
|
||||
IGNORED_CHECKS="${IGNORED_CHECKS} or test_scan_sys_path[disabled]"
|
||||
IGNORED_CHECKS="${IGNORED_CHECKS} or test_scan_sys_path[enabled]"
|
||||
# Disable checks on test names: https://github.com/pytest-dev/pytest-plus#user-content-avoiding-problematic-test-identifiers https://github.com/ansible/ansible-compat/issues/340
|
||||
export PYTEST_CHECK_TEST_ID_REGEX=0
|
||||
%pytest -k "not (${IGNORED_CHECKS})"
|
||||
|
Loading…
x
Reference in New Issue
Block a user