Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-elastic-transport for
openSUSE:Factory checked in at 2026-07-22 19:01:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-elastic-transport (Old)
and /work/SRC/openSUSE:Factory/.python-elastic-transport.new.24530 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-elastic-transport"
Wed Jul 22 19:01:08 2026 rev:22 rq:1366632 version:9.4.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-elastic-transport/python-elastic-transport.changes
2026-07-02 20:06:07.626477504 +0200
+++
/work/SRC/openSUSE:Factory/.python-elastic-transport.new.24530/python-elastic-transport.changes
2026-07-22 19:01:17.289200546 +0200
@@ -1,0 +2,6 @@
+Mon Jul 20 04:47:18 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Add patch support-new-httpbin.patch:
+ * Support new release of httpbin that injects whitespace into JSON.
+
+-------------------------------------------------------------------
New:
----
support-new-httpbin.patch
----------(New B)----------
New:
- Add patch support-new-httpbin.patch:
* Support new release of httpbin that injects whitespace into JSON.
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-elastic-transport.spec ++++++
--- /var/tmp/diff_new_pack.yBDibX/_old 2026-07-22 19:01:17.989224485 +0200
+++ /var/tmp/diff_new_pack.yBDibX/_new 2026-07-22 19:01:17.993224623 +0200
@@ -24,7 +24,9 @@
License: Apache-2.0
URL: https://github.com/elastic/elastic-transport-python
Source:
https://github.com/elastic/elastic-transport-python/archive/refs/tags/v%{version}.tar.gz#/elastic-transport-python-%{version}.tar.gz
-BuildRequires: %{python_module base >= 3.7}
+# PATCH-FIX-UPSTREAM gh#elastic/elastic-transport-python#290
+Patch0: support-new-httpbin.patch
+BuildRequires: %{python_module base >= 3.10}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
++++++ support-new-httpbin.patch ++++++
>From 3e100bf9dca8724a38c65f3953dcf0d103cacfde Mon Sep 17 00:00:00 2001
From: Miguel Grinberg <[email protected]>
Date: Fri, 19 Jun 2026 17:05:57 +0100
Subject: [PATCH] Update debug logging tests for new httpbin release
---
tests/test_logging.py | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/tests/test_logging.py b/tests/test_logging.py
index bb04dfcf..d85abed4 100644
--- a/tests/test_logging.py
+++ b/tests/test_logging.py
@@ -84,20 +84,20 @@ async def test_debug_logging(node_class, anyio_backend,
httpbin_node_config, htt
"< Access-Control-Allow-Origin: *",
"< Content-Type: application/json",
"< {",
- '"args":{},',
- '"data":"{\\"key\\":\\"value\\"}",',
- '"files":{},',
- '"form":{},',
- '"headers":{',
- '"Content-Type":"application/json",',
- f'"Host":"{httpbin.host}:{httpbin.port}",',
- f'"User-Agent":"{DEFAULT_USER_AGENT}"',
+ '"args": {},',
+ '"data": "{\\"key\\":\\"value\\"}",',
+ '"files": {},',
+ '"form": {},',
+ '"headers": {',
+ '"Content-Type": "application/json",',
+ f'"Host": "{httpbin.host}:{httpbin.port}",',
+ f'"User-Agent": "{DEFAULT_USER_AGENT}"',
"},",
- '"json":{',
- '"key":"value"',
+ '"json": {',
+ '"key": "value"',
"},",
- '"method":"GET",',
- f'"url":"{httpbin.url}/anything"',
+ '"method": "GET",',
+ f'"url": "{httpbin.url}/anything"',
"}",
]:
assert line in response