diff --git a/bodhi-client/bodhi-client.spec b/bodhi-client/bodhi-client.spec index 24909ade4c..5620301b7a 100644 --- a/bodhi-client/bodhi-client.spec +++ b/bodhi-client/bodhi-client.spec @@ -1,7 +1,7 @@ # Created by pyp2rpm-3.3.7 %global pypi_name bodhi-client %global src_name bodhi_client -%global pypi_version 8.1.0 +%global pypi_version 8.1.1 Name: %{pypi_name} Version: %{pypi_version} @@ -65,6 +65,9 @@ install -pm0644 bodhi-client.bash %{buildroot}%{_sysconfdir}/bash_completion.d/b %config(noreplace) %{_sysconfdir}/bash_completion.d/bodhi-client.bash %changelog +* Sat Jun 22 2024 Mattia Verga - 8.1.1-1 +- Update to 8.1.1 + * Tue Apr 09 2024 Mattia Verga - 8.1.0-1 - Update to 8.1.0 diff --git a/bodhi-client/pyproject.toml b/bodhi-client/pyproject.toml index b545e9a041..442f8078a5 100644 --- a/bodhi-client/pyproject.toml +++ b/bodhi-client/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bodhi-client" -version = "8.1.0" +version = "8.1.1" description = "Bodhi client" authors = ["Fedora Infrastructure team"] maintainers = ["Fedora Infrastructure Team "] diff --git a/bodhi-messages/bodhi-messages.spec b/bodhi-messages/bodhi-messages.spec index d60ff3495d..76065ce99d 100644 --- a/bodhi-messages/bodhi-messages.spec +++ b/bodhi-messages/bodhi-messages.spec @@ -1,7 +1,7 @@ # Created by pyp2rpm-3.3.7 %global pypi_name bodhi-messages %global src_name bodhi_messages -%global pypi_version 8.1.0 +%global pypi_version 8.1.1 Name: %{pypi_name} Version: %{pypi_version} @@ -53,6 +53,9 @@ rm -rf %{pypi_name}.egg-info %doc README.rst %changelog +* Sat Jun 22 2024 Mattia Verga - 8.1.1-1 +- Update to 8.1.1 + * Tue Apr 09 2024 Mattia Verga - 8.1.0-1 - Update to 8.1.0 diff --git a/bodhi-messages/pyproject.toml b/bodhi-messages/pyproject.toml index adf44ad8ad..97006b9c14 100644 --- a/bodhi-messages/pyproject.toml +++ b/bodhi-messages/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bodhi-messages" -version = "8.1.0" +version = "8.1.1" description = "JSON schema for messages sent by Bodhi" readme = "README.rst" authors = ["Fedora Infrastructure Team"] diff --git a/bodhi-server/bodhi-server.spec b/bodhi-server/bodhi-server.spec index 0835181ce0..0566d43afb 100644 --- a/bodhi-server/bodhi-server.spec +++ b/bodhi-server/bodhi-server.spec @@ -1,6 +1,6 @@ %global pypi_name bodhi-server %global src_name bodhi_server -%global pypi_version 8.1.0 +%global pypi_version 8.1.1 %global client_min_version 8.0.0 %global messages_min_version 8.0.0 @@ -160,6 +160,9 @@ install -p -D -m 0644 %{name}.sysusers %{buildroot}%{_sysusersdir}/%{name}.sysus %pycached %{python3_sitelib}/bodhi/server/metadata.py %changelog +* Sat Jun 22 2024 Mattia Verga - 8.1.1-1 +- Update to 8.1.1 + * Tue Apr 09 2024 Mattia Verga - 8.1.0-1 - Update to 8.1.0 diff --git a/bodhi-server/pyproject.toml b/bodhi-server/pyproject.toml index ebd86e62a9..831149c835 100644 --- a/bodhi-server/pyproject.toml +++ b/bodhi-server/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bodhi-server" -version = "8.1.0" +version = "8.1.1" description = "Bodhi server" readme = "README.rst" authors = ["Fedora Infrastructure Team"] diff --git a/docs/user/release_notes.rst b/docs/user/release_notes.rst index 6c00e377b3..b540e29e89 100644 --- a/docs/user/release_notes.rst +++ b/docs/user/release_notes.rst @@ -4,6 +4,38 @@ Release notes .. towncrier release notes start +v8.1.1 +====== + + + +Released on 2024-06-22. +This is a bugfix release, see below for the details. + + +Bug fixes +^^^^^^^^^ + +* Builds passed alongside a side-tag in update forms were not validated + correctly against the side-tag (:pr:`5647`). +* build with spec false: build require python3dist(poetry-core) >= 1 but not in + spec BuildRequires (:pr:`5678`). +* bodhi server web Incorrect static resource path for httpd, always "python3.7" + python3_version in /etc/httpd/conf.d/bodhi.conf, fix in bodhi-server.spec + (:pr:`5680`). +* Fixed the release list web page which was not updated after a release changed + state (:pr:`5684`). +* Fixed bodhi-server enums initialization in Python 3.13 (:issue:`5685`). + +Contributors +^^^^^^^^^^^^ + +The following developers contributed to this release of Bodhi: + +* niuwanli +* Mattia Verga + + v8.1.0 ====== diff --git a/news/5685.bug b/news/5685.bug deleted file mode 100644 index 99993a6fa7..0000000000 --- a/news/5685.bug +++ /dev/null @@ -1 +0,0 @@ -Fixed bodhi-server enums initialization in Python 3.13 diff --git a/news/PR5647.bug b/news/PR5647.bug deleted file mode 100644 index 5e10b3cf71..0000000000 --- a/news/PR5647.bug +++ /dev/null @@ -1 +0,0 @@ -Builds passed alongside a side-tag in update forms were not validated correctly against the side-tag diff --git a/news/PR5678.bug b/news/PR5678.bug deleted file mode 100644 index 3dde5a4f2c..0000000000 --- a/news/PR5678.bug +++ /dev/null @@ -1 +0,0 @@ -build with spec false: build require python3dist(poetry-core) >= 1 but not in spec BuildRequires \ No newline at end of file diff --git a/news/PR5680.bug b/news/PR5680.bug deleted file mode 100644 index 3793b5f230..0000000000 --- a/news/PR5680.bug +++ /dev/null @@ -1 +0,0 @@ -bodhi server web Incorrect static resource path for httpd, always "python3.7" python3_version in /etc/httpd/conf.d/bodhi.conf, fix in bodhi-server.spec \ No newline at end of file diff --git a/news/PR5684.bug b/news/PR5684.bug deleted file mode 100644 index f59fd8012e..0000000000 --- a/news/PR5684.bug +++ /dev/null @@ -1 +0,0 @@ -Fixed the release list web page which was not updated after a release changed state