Accepting request 1090232 from systemsmanagement:ansible

OBS-URL: https://build.opensuse.org/request/show/1090232
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ansible-lint?expand=0&rev=29
This commit is contained in:
Dominique Leuenberger 2023-06-04 14:41:44 +00:00 committed by Git OBS Bridge
commit a704693ecb
4 changed files with 40 additions and 13 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dc11ac1879d9d1ed0a5ca43dd779069e5bd8ec67264d838e5f7f4de809b29c14
size 421872

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1d9fb467337119b4ca2253f5c226a677275d4421d74a4cc51da3832d22d1fad4
size 426527

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Jun 1 05:33:18 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>
- update to 6.17.0:
* Minor Changes
- fqcn[deep]: detect deep plugins (#3502) @ssbarnea
* Bugfixes
- Reimplement file exclusion logic (#3507) @ssbarnea
- Check validity of 'become_method' values from code (#3499)
@ajinkyau
- Fix role_name_ prefix include_role var name error (#3500)
@ajinkyau
- Hide pip error if not present (#3494) @Et7f3
- Update formatter to avoid reporting paths with .. (#3496)
@ssbarnea
- Remove false positive on 'cacheable' property of set_fact
(#3490) @ajinkyau
- Add missing become_method plugins to the schema (#3484)
@ajinkyau
- Add support for ansible-builder v3 schema (#3480) @ajinkyau
- Add Github Marketplace Action (#3476) @ssbarnea
- Add oracle linux 8.8 (#3479) @facorazza
- Revert ansible-compat vendoring (#3478) @ssbarnea
- Updated file or dir not found message (#3474) @ajinkyau
- Check for included role prefix instead of current one (#3473)
@ssbarnea
-------------------------------------------------------------------
Mon May 22 05:39:01 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>

View File

@ -40,7 +40,7 @@
%global lib_name ansiblelint
%{?python_enable_dependency_generator}
Name: ansible-lint
Version: 6.16.2
Version: 6.17.0
Release: 0%{?dist}
Summary: Best practices checker for Ansible
License: MIT
@ -69,37 +69,37 @@ BuildRequires: %{ansible_python}-flake8
# to make sure this only builds if they are present
# https://github.com/ansible/ansible-lint/blob/main/.config/requirements-lock.txt
BuildRequires: ansible-core >= 2.15
BuildRequires: %{ansible_python}-ansible-compat >= 4.0.1
BuildRequires: %{ansible_python}-ansible-compat >= 4.1.1
BuildRequires: %{ansible_python}-black >= 23.3.0
BuildRequires: %{ansible_python}-enrich >= 1.2.7
BuildRequires: %{ansible_python}-filelock >= 3.12.0
BuildRequires: %{ansible_python}-jsonschema >= 4.17.3
BuildRequires: %{ansible_python}-packaging >= 21.3
BuildRequires: %{ansible_python}-packaging >= 23.1
BuildRequires: %{ansible_python}-PyYAML >= 6.0
BuildRequires: %{ansible_python}-rich >= 13.3.5
BuildRequires: (%{ansible_python}-ruamel.yaml >= 0.17.26 and %{ansible_python}-ruamel.yaml < 0.18)
BuildRequires: %{ansible_python}-rich >= 13.4.1
BuildRequires: (%{ansible_python}-ruamel.yaml >= 0.17.31 and %{ansible_python}-ruamel.yaml < 0.18)
BuildRequires: %{ansible_python}-subprocess-tee >= 0.4.1
BuildRequires: %{ansible_python}-tenacity
BuildRequires: %{ansible_python}-wcmatch >= 8.4.1
BuildRequires: %{ansible_python}-yamllint >= 1.31.0
BuildRequires: %{ansible_python}-yamllint >= 1.32.0
#
# https://github.com/ansible/ansible-lint/blob/main/.config/requirements-lock.txt
Requires: ansible-core >= 2.15
Requires: %{ansible_python}-ansible-compat >= 4.0.1
Requires: %{ansible_python}-ansible-compat >= 4.1.1
Requires: %{ansible_python}-black >= 23.3.0
Requires: %{ansible_python}-bracex >= 2.2.1
Requires: %{ansible_python}-enrich >= 1.2.6
Requires: %{ansible_python}-filelock >= 3.12.0
Requires: %{ansible_python}-jsonschema >= 4.17.0
Requires: %{ansible_python}-packaging >= 21.3
Requires: %{ansible_python}-packaging >= 23.1
Requires: %{ansible_python}-PyYAML >= 6.0
Requires: %{ansible_python}-rich >= 13.3.5
Requires: (%{ansible_python}-ruamel.yaml >= 0.17.26 and %{ansible_python}-ruamel.yaml < 0.18)
Requires: (%{ansible_python}-ruamel.yaml >= 0.17.31 and %{ansible_python}-ruamel.yaml < 0.18)
Requires: %{ansible_python}-subprocess-tee >= 0.4.1
Requires: %{ansible_python}-tenacity
Requires: %{ansible_python}-wcmatch >= 8.4.1
Requires: %{ansible_python}-yamllint >= 1.31.0
Requires: %{ansible_python}-yamllint >= 1.32.0
%description
Checks playbooks for practices and behavior that could potentially be improved.