17
0

Compare commits

2 Commits

Author SHA256 Message Date
3ee14fee9e Accepting request 1295116 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1295116
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fedora-messaging?expand=0&rev=10
2025-07-23 14:33:49 +00:00
ddc032fe47 Accepting request 1295082 from home:rrahl0
- update to version 3.8.0:
  * Add typing to the entire library, and check it with mypy and pyright
  * Update the Fedora certificates
  * Make the factory directly available as an attribute of the service
  * Drop support for Python 3.8 and Pika < 1.0
  * Support Python 3.13
- update to version 3.7.1:
  * Add the new CAs to the trusted CA certs
  * Documentation Improvements
- update to version 3.7.0:
  * Indicate which package a schema comes from when missing
  * Add a new reconsume CLI command
  * Add an embedded HTTP server to monitor the service
  * Documentation Improvements
- update to version 3.6.0:
  * nothing of relevance
- update to version 3.5.0:
  * Add a replay command
  * Add support Python 3.11 and 3.12, drop support for Python 3.6 and 3.7
  * Better protection against invalid bodies breaking the headers generation
    and the instanciation of a message
  * Testing framework: make the sent messages available in the context manager

OBS-URL: https://build.opensuse.org/request/show/1295082
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fedora-messaging?expand=0&rev=19
2025-07-22 14:05:43 +00:00
4 changed files with 5 additions and 45 deletions

View File

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

View File

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

View File

@@ -1,15 +1,3 @@
-------------------------------------------------------------------
Fri Nov 28 11:06:46 UTC 2025 - Marius Grossu <marius.grossu@suse.com>
- Update to version 3.9.0:
* Handle acknowledgement timeouts in the consumer
* Explicitly install an event loop to support Python 3.14, which no longer does so implicitly
-------------------------------------------------------------------
Thu Oct 16 12:54:39 UTC 2025 - Jay Michalska <jay.michalska@suse.com>
- Create a subpackage for Fedora Messaging configs
-------------------------------------------------------------------
Mon Jul 21 12:04:27 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-fedora-messaging
#
# Copyright (c) 2025 SUSE LLC and contributors
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%define _modname fedora-messaging
Name: python-fedora-messaging
Version: 3.9.0
Version: 3.8.0
Release: 0
Summary: Python tools for Fedora's messaging infrastructure
License: GPL-2.0-or-later
@@ -66,12 +66,6 @@ BuildArch: noarch
%description
A set of Python tools for using Fedora's messaging infrastructure.
%package -n fedora-messaging-config
Summary: Fedora Messaging configs
%description -n fedora-messaging-config
Configuration files for the Fedora Messaging instances.
%prep
%autosetup -p1 -n %{_modname}-%{version}
@@ -83,16 +77,6 @@ Configuration files for the Fedora Messaging instances.
%python_clone -a %{buildroot}%{_bindir}/%{_modname}
%python_expand %fdupes %{buildroot}%{$python_sitelib}
install -D -p -m 644 config.toml.example $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/config.toml
install -D -p -m 644 configs/fedora.toml $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/fedora.toml
install -D -p -m 644 configs/fedora.stg.toml $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/fedora.stg.toml
install -D -p -m 644 configs/cacert.pem $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/cacert.pem
install -D -p -m 644 configs/fedora-key.pem $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/fedora-key.pem
install -D -p -m 644 configs/fedora-cert.pem $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/fedora-cert.pem
install -D -p -m 644 configs/stg-cacert.pem $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/stg-cacert.pem
install -D -p -m 644 configs/fedora.stg-key.pem $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/fedora.stg-key.pem
install -D -p -m 644 configs/fedora.stg-cert.pem $RPM_BUILD_ROOT%{_sysconfdir}/fedora-messaging/fedora.stg-cert.pem
%post
%python_install_alternative %{_modname}
@@ -109,16 +93,4 @@ install -D -p -m 644 configs/fedora.stg-cert.pem $RPM_BUILD_ROOT%{_sysconfdir}/f
%{python_sitelib}/fedora_messaging
%{python_sitelib}/fedora_messaging-%{version}.dist-info
%files -n fedora-messaging-config
%dir %{_sysconfdir}/fedora-messaging/
%config(noreplace) %{_sysconfdir}/fedora-messaging/config.toml
%config(noreplace) %{_sysconfdir}/fedora-messaging/fedora.toml
%config(noreplace) %{_sysconfdir}/fedora-messaging/fedora.stg.toml
%config(noreplace) %{_sysconfdir}/fedora-messaging/cacert.pem
%config(noreplace) %{_sysconfdir}/fedora-messaging/fedora-key.pem
%config(noreplace) %{_sysconfdir}/fedora-messaging/fedora-cert.pem
%config(noreplace) %{_sysconfdir}/fedora-messaging/stg-cacert.pem
%config(noreplace) %{_sysconfdir}/fedora-messaging/fedora.stg-key.pem
%config(noreplace) %{_sysconfdir}/fedora-messaging/fedora.stg-cert.pem
%changelog