Accepting request 1038039 from home:ojkastl_buildservice:Branch_systemsmanagement_ansible
update to 6.9.0 OBS-URL: https://build.opensuse.org/request/show/1038039 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:ansible/ansible-lint?expand=0&rev=16
This commit is contained in:
parent
cb976bcf96
commit
06044988f7
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:12937af6e28f37f22e6f4bbc1c768e97bb1ea8f2abaa77d0e894d92cbbb8a6d4
|
|
||||||
size 294625
|
|
3
ansible-lint-6.9.0.tar.gz
Normal file
3
ansible-lint-6.9.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1b6331c6dd37f2644499de81b94765c2ff60f5d79b6470c91c91a33539aff5da
|
||||||
|
size 297551
|
@ -1,3 +1,26 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Nov 24 16:00:09 UTC 2022 - Johannes Kastl <kastl@b1-systems.de>
|
||||||
|
|
||||||
|
- update to 6.9.0:
|
||||||
|
* Minor Changes
|
||||||
|
- Enable dynamic schema refresh (#2703) @ssbarnea
|
||||||
|
- Allow additional collections in only-builtins (#2710) @evgeni
|
||||||
|
* Bugfixes
|
||||||
|
- Avoid Object of type PosixPath is not JSON serializable with jinja2 (#2724) @ssbarnea
|
||||||
|
- Expand ~ in PATH and warn user (#2723) @ssbarnea
|
||||||
|
- Fix only builtins fail test (#2719) @evgeni
|
||||||
|
- Allow profile to be set in config file (#2720) @shatakshiiii
|
||||||
|
- Decouple profile listing from profile selecting on CLI (#2721) @ssbarnea
|
||||||
|
- Update url in docs (#2718) @ssbarnea
|
||||||
|
- Prevent installation on Windows (#2712) @ssbarnea
|
||||||
|
- Respect warn_list and skip_list (#2706) @rekup
|
||||||
|
- Avoid version checking when version info is absent (#2714) @ssbarnea
|
||||||
|
- Improve installation documentation (#2707) @oraNod
|
||||||
|
- Docs: usage content edits (#2682) @oraNod
|
||||||
|
- Sort dependencies (#2711) @ssbarnea
|
||||||
|
- Fix loop_var_prefix message list in the docs (#2709) @evgeni
|
||||||
|
- Clarify progressive mode documentation (#2708) @MarcinWieczorek
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 21 09:24:01 UTC 2022 - Johannes Kastl <kastl@b1-systems.de>
|
Mon Nov 21 09:24:01 UTC 2022 - Johannes Kastl <kastl@b1-systems.de>
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
%global lib_name ansiblelint
|
%global lib_name ansiblelint
|
||||||
%{?python_enable_dependency_generator}
|
%{?python_enable_dependency_generator}
|
||||||
Name: ansible-lint
|
Name: ansible-lint
|
||||||
Version: 6.8.7
|
Version: 6.9.0
|
||||||
Release: 0%{?dist}
|
Release: 0%{?dist}
|
||||||
Summary: Best practices checker for Ansible
|
Summary: Best practices checker for Ansible
|
||||||
License: MIT
|
License: MIT
|
||||||
@ -35,10 +35,11 @@ BuildRequires: fdupes
|
|||||||
# https://github.com/ansible/ansible-lint/blob/main/setup.cfg#L98
|
# https://github.com/ansible/ansible-lint/blob/main/setup.cfg#L98
|
||||||
# SECTION tests
|
# SECTION tests
|
||||||
BuildRequires: python3-flaky >= 3.7.0
|
BuildRequires: python3-flaky >= 3.7.0
|
||||||
|
BuildRequires: python3-pytest
|
||||||
BuildRequires: python3-pytest-cov
|
BuildRequires: python3-pytest-cov
|
||||||
BuildRequires: python3-pytest-xdist >= 2.1.0
|
BuildRequires: python3-pytest-xdist >= 2.1.0
|
||||||
BuildRequires: python3-psutil
|
BuildRequires: python3-psutil
|
||||||
BuildRequires: python3-black >= 22.1.0
|
BuildRequires: python3-black >= 22.8.0
|
||||||
BuildRequires: python3-mypy
|
BuildRequires: python3-mypy
|
||||||
BuildRequires: python3-pylint
|
BuildRequires: python3-pylint
|
||||||
BuildRequires: python3-flake8
|
BuildRequires: python3-flake8
|
||||||
@ -46,33 +47,35 @@ BuildRequires: python3-flake8
|
|||||||
|
|
||||||
# Add runtime requirements (unless required for tests)
|
# Add runtime requirements (unless required for tests)
|
||||||
# to make sure this only builds if they are present
|
# to make sure this only builds if they are present
|
||||||
|
# https://github.com/ansible/ansible-lint/blob/main/setup.cfg#L64
|
||||||
BuildRequires: ansible-core >= 2.12
|
BuildRequires: ansible-core >= 2.12
|
||||||
BuildRequires: python3-ansible-compat >= 2.2.1
|
BuildRequires: python3-ansible-compat >= 2.2.5
|
||||||
BuildRequires: python3-enrich >= 1.2.6
|
BuildRequires: python3-enrich >= 1.2.6
|
||||||
BuildRequires: python3-jsonschema >= 4.9.0
|
BuildRequires: python3-filelock >= 3.8.0
|
||||||
BuildRequires: python3-packaging
|
BuildRequires: python3-jsonschema >= 4.17.0
|
||||||
BuildRequires: python3-PyYAML
|
BuildRequires: python3-packaging >= 21.3
|
||||||
BuildRequires: python3-rich >= 9.5.1
|
BuildRequires: python3-PyYAML >= 5.4.1
|
||||||
BuildRequires: python3-ruamel.yaml >= 0.15.37
|
BuildRequires: python3-rich >= 12.0.0
|
||||||
|
BuildRequires: python3-ruamel.yaml >= 0.17.21
|
||||||
BuildRequires: python3-six
|
BuildRequires: python3-six
|
||||||
BuildRequires: python3-tenacity
|
BuildRequires: python3-tenacity
|
||||||
BuildRequires: python3-wcmatch >= 7.0
|
BuildRequires: python3-wcmatch >= 8.3.2
|
||||||
BuildRequires: python3-yamllint >= 1.25.0
|
BuildRequires: python3-yamllint >= 1.26.3
|
||||||
|
|
||||||
# https://github.com/ansible/ansible-lint/blob/main/setup.cfg#L69
|
# https://github.com/ansible/ansible-lint/blob/main/setup.cfg#L69
|
||||||
Requires: ansible-core >= 2.12
|
Requires: ansible-core >= 2.12
|
||||||
Requires: python3-ansible-compat >= 2.2.1
|
Requires: python3-ansible-compat >= 2.2.5
|
||||||
Requires: python3-black >= 22.1.0
|
Requires: python3-black >= 22.8.0
|
||||||
Requires: python3-enrich >= 1.2.6
|
Requires: python3-enrich >= 1.2.6
|
||||||
Requires: python3-jsonschema >= 4.9.0
|
Requires: python3-jsonschema >= 4.17.0
|
||||||
Requires: python3-packaging
|
Requires: python3-packaging >= 21.3
|
||||||
Requires: python3-PyYAML
|
Requires: python3-PyYAML >= 5.4.1
|
||||||
Requires: python3-rich >= 9.5.1
|
Requires: python3-rich >= 12.0.0
|
||||||
Requires: python3-ruamel.yaml >= 0.15.37
|
Requires: python3-ruamel.yaml >= 0.17.21
|
||||||
Requires: python3-six
|
Requires: python3-six
|
||||||
Requires: python3-tenacity
|
Requires: python3-tenacity
|
||||||
Requires: python3-wcmatch >= 7.0
|
Requires: python3-wcmatch >= 8.3.2
|
||||||
Requires: python3-yamllint >= 1.25.0
|
Requires: python3-yamllint >= 1.26.3
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Checks playbooks for practices and behavior that could potentially be improved.
|
Checks playbooks for practices and behavior that could potentially be improved.
|
||||||
|
Loading…
Reference in New Issue
Block a user