2 Commits

Author SHA256 Message Date
f68869d608 Accepting request 1317641 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1317641
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-aioquic?expand=0&rev=10
2025-11-17 11:08:07 +00:00
826da33558 - Update to 1.3.0
* Ensure PATH_CHALLENGE frames are sent before other frame types.
  * Reclaim memory when HTTP/3 streams end.
  * Limit the number of remote PATH_CHALLENGE stored per path.
  * Avoid assertion error when receiving multiple STOP_SENDING frames.
  * Improve type annotations.
  * Make it possible to use LibreSSL instead of OpenSSL.
  * Add support Python 3.13 and 3.14, drop support for Python 3.8 and 3.9.
  * Build binary wheels for musllinux.
  * Build binary wheels against OpenSSL 3.5.4.
  * Add command-line argument to the http3_client example to request
    a key update during interoperability tests.
- Update BuildRequires from setup.py

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aioquic?expand=0&rev=18
2025-11-13 16:41:38 +00:00
4 changed files with 22 additions and 5 deletions

Binary file not shown.

3
aioquic-1.3.0.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Thu Nov 13 14:41:20 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 1.3.0
* Ensure PATH_CHALLENGE frames are sent before other frame types.
* Reclaim memory when HTTP/3 streams end.
* Limit the number of remote PATH_CHALLENGE stored per path.
* Avoid assertion error when receiving multiple STOP_SENDING frames.
* Improve type annotations.
* Make it possible to use LibreSSL instead of OpenSSL.
* Add support Python 3.13 and 3.14, drop support for Python 3.8 and 3.9.
* Build binary wheels for musllinux.
* Build binary wheels against OpenSSL 3.5.4.
* Add command-line argument to the http3_client example to request
a key update during interoperability tests.
- Update BuildRequires from setup.py
-------------------------------------------------------------------
Wed Oct 9 08:43:08 UTC 2024 - Markéta Machová <mmachova@suse.com>

View File

@@ -18,13 +18,13 @@
%{?sle15_python_module_pythons}
Name: python-aioquic
Version: 1.2.0
Version: 1.3.0
Release: 0
Summary: Python implementation of QUIC and HTTP/3
License: BSD-3-Clause
URL: https://github.com/aiortc/aioquic
Source: https://files.pythonhosted.org/packages/source/a/aioquic/aioquic-%{version}.tar.gz
BuildRequires: %{python_module devel >= 3.7}
BuildRequires: %{python_module devel >= 3.10}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}