Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-hypercorn for 
openSUSE:Factory checked in at 2026-08-15 22:40:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-hypercorn (Old)
 and      /work/SRC/openSUSE:Factory/.python-hypercorn.new.1258 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-hypercorn"

Sat Aug 15 22:40:13 2026 rev:9 rq:1371019 version:0.18.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-hypercorn/python-hypercorn.changes        
2026-04-29 19:18:27.762602428 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-hypercorn.new.1258/python-hypercorn.changes  
    2026-08-15 22:40:27.178220643 +0200
@@ -1,0 +2,5 @@
+Thu Aug 13 10:47:01 UTC 2026 - Nico Krapp <[email protected]>
+
+- Add tests.patch to fix tests with new h2
+
+-------------------------------------------------------------------

New:
----
  tests.patch

----------(New B)----------
  New:
- Add tests.patch to fix tests with new h2
----------(New E)----------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-hypercorn.spec ++++++
--- /var/tmp/diff_new_pack.y14tBK/_old  2026-08-15 22:40:28.552269010 +0200
+++ /var/tmp/diff_new_pack.y14tBK/_new  2026-08-15 22:40:28.554269080 +0200
@@ -29,6 +29,8 @@
 License:        MIT
 URL:            https://github.com/pgjones/hypercorn/
 Source:         
https://github.com/pgjones/hypercorn/archive/refs/tags/%{version}.tar.gz
+# PATCH-FIX-UPSTREAM tests.patch gh#pgjones/hypercorn/pull/371
+Patch0:         tests.patch
 BuildRequires:  %{python_module base >= 3.8}
 BuildRequires:  %{python_module h11}
 BuildRequires:  %{python_module h2 >= 3.1.0}

++++++ tests.patch ++++++
>From 9c1f350e2637cfa0287aad2ae9a5bfd003a1d248 Mon Sep 17 00:00:00 2001
From: dongjiao <[email protected]>
Date: Thu, 13 Aug 2026 10:54:51 +0800
Subject: [PATCH] fix(tests): add :protocol pseudo-header for Extended CONNECT
 in WebSocket tests

---
 tests/asyncio/test_sanity.py | 1 +
 tests/trio/test_sanity.py    | 1 +
 2 files changed, 2 insertions(+)

diff --git a/tests/asyncio/test_sanity.py b/tests/asyncio/test_sanity.py
index 0d1d0f9..e77e63f 100644
--- a/tests/asyncio/test_sanity.py
+++ b/tests/asyncio/test_sanity.py
@@ -203,6 +203,7 @@ async def test_http2_websocket() -> None:
         stream_id,
         [
             (":method", "CONNECT"),
+            (":protocol", "websocket"),
             (":path", "/"),
             (":authority", "hypercorn"),
             (":scheme", "https"),
diff --git a/tests/trio/test_sanity.py b/tests/trio/test_sanity.py
index 98387a2..42d7b39 100644
--- a/tests/trio/test_sanity.py
+++ b/tests/trio/test_sanity.py
@@ -175,6 +175,7 @@ async def test_http2_websocket(nursery: 
trio._core._run.Nursery) -> None:
         stream_id,
         [
             (":method", "CONNECT"),
+            (":protocol", "websocket"),
             (":path", "/"),
             (":authority", "hypercorn"),
             (":scheme", "https"),

Reply via email to