Skip to content

Commit 9b50270

Browse files
committed
Release 25.5
Signed-off-by: Mattia Verga <mattia.verga@tiscali.it>
1 parent 4a65943 commit 9b50270

20 files changed

Lines changed: 490 additions & 472 deletions

.github/workflows/codeql.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,11 @@ on:
44
push:
55
branches:
66
- develop
7-
- 8.0
8-
- 8.1
9-
- 8.2
10-
- 8.3
7+
- 25.5
118
pull_request:
129
branches:
1310
- develop
14-
- 8.0
15-
- 8.1
16-
- 8.2
17-
- 8.3
11+
- 25.5
1812

1913
jobs:
2014
analyze:

.github/workflows/docs.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@ on:
33
push:
44
branches:
55
- develop
6-
- 8.0
7-
- 8.1
8-
- 8.2
9-
- 8.3
6+
- 25.5
107
paths:
118
- docs/**
129

.github/workflows/staging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
release: [f40,f41]
27+
release: [f41,f42]
2828

2929
build_in_koji:
3030
name: Build ${{matrix.module}} on ${{matrix.release}} in Koji
@@ -77,4 +77,4 @@ jobs:
7777
fail-fast: false
7878
matrix:
7979
module: [bodhi-client, bodhi-messages, bodhi-server]
80-
release: [f40,f41]
80+
release: [f41,f42]

.github/workflows/tests.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,11 @@ on:
33
push:
44
branches:
55
- develop
6-
- 8.0
7-
- 8.1
8-
- 8.2
9-
- 8.3
6+
- 25.5
107
pull_request:
118
branches:
129
- develop
13-
- 8.0
14-
- 8.1
15-
- 8.2
16-
- 8.3
10+
- 25.5
1711

1812
name: Run tests
1913

.mergify.yml

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -43,35 +43,16 @@ queue_rules:
4343
merge_method: rebase
4444

4545
pull_request_rules:
46-
- name: backport 8.1
46+
- name: backport 25.2
4747
actions:
4848
backport:
4949
branches:
50-
- '8.1'
50+
- '25.2'
5151
conditions:
5252
- label!=WIP
5353
- -draft
54-
- label=8.1-backports
54+
- label=25.2-backports
5555

56-
- name: backport 8.2
57-
actions:
58-
backport:
59-
branches:
60-
- '8.2'
61-
conditions:
62-
- label!=WIP
63-
- -draft
64-
- label=8.2-backports
65-
66-
- name: backport 8.3
67-
actions:
68-
backport:
69-
branches:
70-
- '8.3'
71-
conditions:
72-
- label!=WIP
73-
- -draft
74-
- label=8.3-backports
7556
- name: default
7657
conditions: []
7758
actions:

bodhi-client/bodhi-client.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Created by pyp2rpm-3.3.7
22
%global pypi_name bodhi-client
33
%global src_name bodhi_client
4-
%global pypi_version 8.3.0
4+
%global pypi_version 25.5.0
55

66
Name: %{pypi_name}
77
Version: %{pypi_version}
@@ -65,6 +65,9 @@ install -pm0644 bodhi-client.bash %{buildroot}%{_sysconfdir}/bash_completion.d/b
6565
%config(noreplace) %{_sysconfdir}/bash_completion.d/bodhi-client.bash
6666

6767
%changelog
68+
* Fri May 16 2025 Mattia Verga <mattia.verga@fedoraproject.org> - 25.5.0-1
69+
- Update to 25.5.0
70+
6871
* Mon Nov 25 2024 Mattia Verga <mattia.verga@fedoraproject.org> - 8.3.0-1
6972
- Update to 8.3.0
7073

bodhi-client/pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "bodhi-client"
3-
version = "8.3.0"
3+
version = "25.5.0"
44
description = "Bodhi client"
55
authors = ["Fedora Infrastructure team"]
66
maintainers = ["Fedora Infrastructure Team <infrastructure@lists.fedoraproject.org>"]
@@ -16,7 +16,6 @@ classifiers = [
1616
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
1717
"Operating System :: POSIX :: Linux",
1818
"Programming Language :: Python :: 3",
19-
"Programming Language :: Python :: 3.8",
2019
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
@@ -46,7 +45,7 @@ pytest-mock = ">=3.5.1"
4645
diff-cover = ">=4.2.1"
4746

4847
[tool.poetry.dependencies]
49-
python = ">=3.8, <4"
48+
python = ">=3.9, <4"
5049
click = ">=7.1.2"
5150
koji = ">=1.27.1"
5251
authlib = ">=0.15.4"

bodhi-messages/bodhi-messages.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Created by pyp2rpm-3.3.7
22
%global pypi_name bodhi-messages
33
%global src_name bodhi_messages
4-
%global pypi_version 8.3.0
4+
%global pypi_version 25.5.0
55

66
Name: %{pypi_name}
77
Version: %{pypi_version}
@@ -53,6 +53,9 @@ rm -rf %{pypi_name}.egg-info
5353
%doc README.rst
5454

5555
%changelog
56+
* Fri May 16 2025 Mattia Verga <mattia.verga@fedoraproject.org> - 25.5.0-1
57+
- Update to 25.5.0
58+
5659
* Mon Nov 25 2024 Mattia Verga <mattia.verga@fedoraproject.org> - 8.3.0-1
5760
- Update to 8.3.0
5861

bodhi-messages/pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "bodhi-messages"
3-
version = "8.3.0"
3+
version = "25.5.0"
44
description = "JSON schema for messages sent by Bodhi"
55
readme = "README.rst"
66
authors = ["Fedora Infrastructure Team"]
@@ -17,7 +17,6 @@ classifiers = [
1717
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
1818
"Operating System :: POSIX :: Linux",
1919
"Programming Language :: Python :: 3",
20-
"Programming Language :: Python :: 3.8",
2120
"Programming Language :: Python :: 3.9",
2221
"Programming Language :: Python :: 3.10",
2322
"Programming Language :: Python :: 3.11",
@@ -39,7 +38,7 @@ include = [
3938
generate-setup-file = true
4039

4140
[tool.poetry.dependencies]
42-
python = ">=3.8, <4"
41+
python = ">=3.9, <4"
4342
fedora-messaging = ">=3.0.0"
4443

4544
[tool.poetry.dev-dependencies]

bodhi-server/bodhi-server.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%global pypi_name bodhi-server
22
%global src_name bodhi_server
3-
%global pypi_version 8.3.0
3+
%global pypi_version 25.5.0
44
%global client_min_version 8.3.0
55
%global messages_min_version 8.1.1
66

@@ -166,6 +166,9 @@ install -p -D -m 0644 %{name}.conf %{buildroot}%{_sysusersdir}/%{name}.conf
166166
%pycached %{python3_sitelib}/bodhi/server/metadata.py
167167

168168
%changelog
169+
* Fri May 16 2025 Mattia Verga <mattia.verga@fedoraproject.org> - 25.5.0-1
170+
- Update to 25.5.0
171+
169172
* Mon Nov 25 2024 Mattia Verga <mattia.verga@fedoraproject.org> - 8.3.0-1
170173
- Update to 8.3.0
171174

0 commit comments

Comments
 (0)