Accepting request 1239155 from systemsmanagement:ansible

OBS-URL: https://build.opensuse.org/request/show/1239155
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ansible-lint?expand=0&rev=56
This commit is contained in:
Ana Guerrero 2025-01-21 20:10:46 +00:00 committed by Git OBS Bridge
commit 6a77a81583
4 changed files with 44 additions and 12 deletions

View File

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

View File

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

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Jan 21 06:12:49 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
- update to 25.1.0 (there is no 25.0.0):
* Enhancements
- Update requires_ansible default require >=2.16 (#4479)
@samccann
- Bump the dependencies group in /.config with 6 updates
(#4482) @dependabot[bot]
- Add write_exclude_list config option (#4256) @frq-asgard-josi
* Bugfixes
- Remove dependency hack that prevents installation on Windows
(#4487) @ssbarnea
- Allow ansible-lint action to be used from composite workflows
(#4481) @drew-viles
- Fix WARN on empty/template meta/main.yaml (#4379) @GElkayam
- Move octal example code next to octals definition (#4475)
@branic
- Refactor use of app instance (#4478) @ssbarnea
- Fix constraints with uv and update min requirements (#4485)
@ssbarnea
- Require ansible-core>=2.16 (#4483) @ssbarnea
- Add EL 10 as a platform in the metadata schema (#4464)
@antonc42
- Catch ansible-compat initialization warnings (#4463)
@ssbarnea
- Avoid ruamel.yaml 0.18.7-0.18.8 due to regression (#4462)
@ssbarnea
* Other
- Bump codecov/codecov-action from 5.1.1 to 5.1.2 (#4457)
@dependabot[bot]
-------------------------------------------------------------------
Thu Dec 12 14:47:34 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>

View File

@ -40,7 +40,7 @@
%global lib_name ansiblelint
%{?python_enable_dependency_generator}
Name: ansible-lint
Version: 24.12.2
Version: 25.1.0
Release: 0%{?dist}
Summary: Best practices checker for Ansible
License: MIT
@ -68,41 +68,41 @@ BuildRequires: %{ansible_python}-flake8
# Add runtime requirements (unless required for tests)
# to make sure this only builds if they are present
# https://github.com/ansible/ansible-lint/blob/main/.config/requirements.in
BuildRequires: ansible-core >= 2.15.5
BuildRequires: ansible-core >= 2.16.0
BuildRequires: %{ansible_python}-ansible-compat >= 24.10.0
BuildRequires: %{ansible_python}-black >= 23.10.1
BuildRequires: %{ansible_python}-enrich >= 1.2.7
BuildRequires: %{ansible_python}-filelock >= 3.3.0
BuildRequires: %{ansible_python}-filelock >= 3.8.2
BuildRequires: %{ansible_python}-jsonschema >= 4.17.3
BuildRequires: %{ansible_python}-packaging >= 23.1
BuildRequires: %{ansible_python}-PyYAML >= 6.0.1
BuildRequires: %{ansible_python}-PyYAML >= 6.0.2
BuildRequires: %{ansible_python}-requests >= 2.31.0
BuildRequires: %{ansible_python}-rich >= 13.5.2
BuildRequires: %{ansible_python}-ruamel.yaml >= 0.18.5
BuildRequires: %{ansible_python}-subprocess-tee >= 0.4.1
BuildRequires: %{ansible_python}-tenacity
BuildRequires: %{ansible_python}-wcmatch >= 8.4.1
BuildRequires: %{ansible_python}-yamllint >= 1.32.0
BuildRequires: %{ansible_python}-yamllint >= 1.34.0
#
# https://github.com/ansible/ansible-lint/blob/main/.config/requirements.in
Requires: ansible-core >= 2.15.5
Requires: ansible-core >= 2.16.0
Requires: %{ansible_python}-ansible-compat >= 24.10.0
Requires: %{ansible_python}-black >= 23.10.1
Requires: %{ansible_python}-bracex >= 2.2.1
Requires: %{ansible_python}-enrich >= 1.2.7
Requires: %{ansible_python}-filelock >= 3.3.0
Requires: %{ansible_python}-filelock >= 3.8.2
Requires: %{ansible_python}-importlib-metadata
Requires: %{ansible_python}-jsonschema >= 4.17.3
Requires: %{ansible_python}-packaging >= 23.1
Requires: %{ansible_python}-PyYAML >= 6.0.1
Requires: %{ansible_python}-PyYAML >= 6.0.2
Requires: %{ansible_python}-requests >= 2.31.0
Requires: %{ansible_python}-rich >= 13.5.2
Requires: %{ansible_python}-ruamel.yaml >= 0.17.31
Requires: %{ansible_python}-subprocess-tee >= 0.4.1
Requires: %{ansible_python}-tenacity
Requires: %{ansible_python}-wcmatch >= 8.4.1
Requires: %{ansible_python}-yamllint >= 1.32.0
Requires: %{ansible_python}-yamllint >= 1.34.0
%description
Checks playbooks for practices and behavior that could potentially be improved.