Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package salt for openSUSE:Factory checked in at 2026-01-21 14:14:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/salt (Old) and /work/SRC/openSUSE:Factory/.salt.new.1928 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "salt" Wed Jan 21 14:14:24 2026 rev:190 rq:1328088 version:3006.0 Changes: -------- --- /work/SRC/openSUSE:Factory/salt/salt.changes 2026-01-15 16:44:47.372622096 +0100 +++ /work/SRC/openSUSE:Factory/.salt.new.1928/salt.changes 2026-01-21 14:14:35.059906430 +0100 @@ -1,0 +2,10 @@ +Mon Jan 19 09:21:31 UTC 2026 - Marek Czernek <[email protected]> + +- Make syntax in httputil_test compatible with Python 3.6 +- Fix KeyError in postgres module with PostgreSQL 17 (bsc#1254325) + +- Added: + * fix-tornado-s-httputil_test-syntax-for-python-3.6.patch + * backport-add-maintain-m-privilege-to-postgres-module.patch + +------------------------------------------------------------------- New: ---- backport-add-maintain-m-privilege-to-postgres-module.patch fix-tornado-s-httputil_test-syntax-for-python-3.6.patch ----------(New B)---------- New: * fix-tornado-s-httputil_test-syntax-for-python-3.6.patch * backport-add-maintain-m-privilege-to-postgres-module.patch New:- Added: * fix-tornado-s-httputil_test-syntax-for-python-3.6.patch * backport-add-maintain-m-privilege-to-postgres-module.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ salt.spec ++++++ --- /var/tmp/diff_new_pack.uHx9sw/_old 2026-01-21 14:14:39.792103628 +0100 +++ /var/tmp/diff_new_pack.uHx9sw/_new 2026-01-21 14:14:39.792103628 +0100 @@ -611,6 +611,10 @@ Patch192: speedup-wheel-key.finger-call-bsc-1240532-713.patch # PATCH-FIX_UPSTREAM: https://github.com/saltstack/salt/pull/67956 Patch193: use-internal-salt.utils.pkg.deb-classes-instead-of-a.patch +# PATCH-FIX_UPSTREAM: https://github.com/saltstack/salt/pull/66964 +Patch194: backport-add-maintain-m-privilege-to-postgres-module.patch +# PATCH-FIX_OPENSUSE: https://github.com/openSUSE/salt/pull/745 +Patch195: fix-tornado-s-httputil_test-syntax-for-python-3.6.patch ### IMPORTANT: The line below is used as a snippet marker. Do not touch it. ++++++ _lastrevision ++++++ --- /var/tmp/diff_new_pack.uHx9sw/_old 2026-01-21 14:14:39.920108961 +0100 +++ /var/tmp/diff_new_pack.uHx9sw/_new 2026-01-21 14:14:39.928109295 +0100 @@ -1,3 +1,3 @@ -720580e5796703426c70d97b2db1487a3d504349 +c0445b44ea96c5db56fbd74a2c29c81f16c8d5c0 (No newline at EOF) ++++++ backport-add-maintain-m-privilege-to-postgres-module.patch ++++++ ++++ 5015 lines (skipped) ++++++ fix-tornado-s-httputil_test-syntax-for-python-3.6.patch ++++++ >From f5ac4c6f38cf9db39a8fbd31a101f155de40f37c Mon Sep 17 00:00:00 2001 From: Alexander Graul <[email protected]> Date: Fri, 16 Jan 2026 17:34:18 +0100 Subject: [PATCH] Fix tornado's httputil_test syntax for Python 3.6 --- salt/ext/tornado/test/httputil_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/ext/tornado/test/httputil_test.py b/salt/ext/tornado/test/httputil_test.py index bdbfaa2b6a..cacd31aa05 100644 --- a/salt/ext/tornado/test/httputil_test.py +++ b/salt/ext/tornado/test/httputil_test.py @@ -266,7 +266,7 @@ Foo d1 = f(1_000) d2 = f(10_000) if d2 / d1 > 20: - self.fail(f"Disposition param parsing is not linear: {d1=} vs {d2=}") + self.fail(f"Disposition param parsing is not linear: d1={d1} vs d2={d2}") class HTTPHeadersTest(unittest.TestCase): -- 2.52.0
