Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package matrix-synapse for openSUSE:Factory 
checked in at 2026-02-10 21:13:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/matrix-synapse (Old)
 and      /work/SRC/openSUSE:Factory/.matrix-synapse.new.1670 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "matrix-synapse"

Tue Feb 10 21:13:42 2026 rev:150 rq:1332291 version:1.147.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/matrix-synapse/matrix-synapse.changes    
2026-01-28 15:13:57.583007558 +0100
+++ /work/SRC/openSUSE:Factory/.matrix-synapse.new.1670/matrix-synapse.changes  
2026-02-10 21:14:49.837617279 +0100
@@ -1,0 +2,27 @@
+Tue Feb 10 16:29:39 UTC 2026 - Marcus Rueckert <[email protected]>
+
+- Update to 1.147.0
+  - Bugfixes
+    - Fix memory leak caused by not cleaning up stopped looping
+      calls. Introduced in v1.140.0. (#19416)
+    - Fix a typo that incorrectly made setuptools_rust a runtime
+      dependency. (#19417)
+  - Internal Changes
+    - Prune stale entries from
+      sliding_sync_connection_required_state table. (#19306)
+    - Update "Event Send Time Quantiles" graph to only use dots for
+      the event persistence rate (Grafana dashboard). (#19399)
+    - Update and align Grafana dashboard to use regex matching for
+      job selectors (job=~"$job") so the "all" value works
+      correctly across all panels. (#19400)
+    - Don't retry joining partial state rooms all at once on
+      startup. (#19402)
+    - Disallow requests to the health endpoint from containing
+      trailing path characters. (#19405)
+    - Add notes that new experimental features should have
+      associated tracking issues. (#19410)
+    - Bump pyo3 from 0.26.0 to 0.27.2 and pythonize from 0.26.0 to
+      0.27.0. Contributed by @razvp @ ERCOM. (#19412)
+- refresh 0001-pyo3-Disable-abi3-feature.patch
+
+-------------------------------------------------------------------

Old:
----
  matrix-synapse-1.146.0.obscpio

New:
----
  matrix-synapse-1.147.0.obscpio

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

Other differences:
------------------
++++++ matrix-synapse-test.spec ++++++
--- /var/tmp/diff_new_pack.zk8S25/_old  2026-02-10 21:14:52.997749696 +0100
+++ /var/tmp/diff_new_pack.zk8S25/_new  2026-02-10 21:14:53.009750198 +0100
@@ -27,7 +27,7 @@
 
 %define         pkgname matrix-synapse
 Name:           %{pkgname}-test
-Version:        1.146.0
+Version:        1.147.0
 Release:        0
 Summary:        Test package for %{pkgname}
 License:        AGPL-3.0-or-later

++++++ matrix-synapse.spec ++++++
--- /var/tmp/diff_new_pack.zk8S25/_old  2026-02-10 21:14:53.369765284 +0100
+++ /var/tmp/diff_new_pack.zk8S25/_new  2026-02-10 21:14:53.385765955 +0100
@@ -74,7 +74,7 @@
 %global txredisapi_version            1.4.10
 %global Pympler_version               1.0.1
 %global pydantic_version              2.7.1
-%global python_multipart_version      0.0.9
+%global python_multipart_version      0.0.22
 # TODO: 0.30.0
 %global rpds_py_verison               0.27.0
 ## indirect dependencies which need to be guarded for matrix-synapse to work
@@ -230,7 +230,7 @@
 %define         pkgname matrix-synapse
 %define         eggname matrix_synapse
 Name:           %{pkgname}
-Version:        1.146.0
+Version:        1.147.0
 Release:        0
 Summary:        Matrix protocol reference homeserver
 License:        AGPL-3.0-or-later

++++++ 0001-pyo3-Disable-abi3-feature.patch ++++++
--- /var/tmp/diff_new_pack.zk8S25/_old  2026-02-10 21:14:53.753781375 +0100
+++ /var/tmp/diff_new_pack.zk8S25/_new  2026-02-10 21:14:53.797783219 +0100
@@ -10,10 +10,10 @@
  rust/Cargo.toml |  2 --
  2 files changed, 2 insertions(+), 22 deletions(-)
 
-diff --git a/build_rust.py b/build_rust.py
-index a9e9265daf..65d9ac301d 100644
---- a/build_rust.py
-+++ b/build_rust.py
+Index: synapse/build_rust.py
+===================================================================
+--- synapse.orig/build_rust.py
++++ synapse/build_rust.py
 @@ -1,10 +1,8 @@
  # A build script for poetry that adds the rust extension.
  
@@ -25,7 +25,7 @@
  from setuptools_rust import Binding, RustExtension
  
  
-@@ -16,27 +14,11 @@ def build(setup_kwargs: dict[str, Any]) -> None:
+@@ -16,27 +14,11 @@ def build(setup_kwargs: dict[str, Any])
          target="synapse.synapse_rust",
          path=cargo_toml_path,
          binding=Binding.PyO3,
@@ -55,20 +55,17 @@
 -    setup_kwargs.setdefault("options", {}).setdefault("bdist_wheel", {})[
 -        "py_limited_api"
 -    ] = py_limited_api
-diff --git a/rust/Cargo.toml b/rust/Cargo.toml
-index e8321d159b..eeeb512920 100644
---- a/rust/Cargo.toml
-+++ b/rust/Cargo.toml
+Index: synapse/rust/Cargo.toml
+===================================================================
+--- synapse.orig/rust/Cargo.toml
++++ synapse/rust/Cargo.toml
 @@ -33,8 +33,6 @@ mime = "0.3.17"
- pyo3 = { version = "0.26.0", features = [
+ pyo3 = { version = "0.27.2", features = [
      "macros",
      "anyhow",
 -    "abi3",
 -    "abi3-py310",
  ] }
  pyo3-log = "0.13.1"
- pythonize = "0.26.0"
--- 
-2.51.1
-
+ pythonize = "0.27.0"
 

++++++ _service ++++++
--- /var/tmp/diff_new_pack.zk8S25/_old  2026-02-10 21:14:54.209800483 +0100
+++ /var/tmp/diff_new_pack.zk8S25/_new  2026-02-10 21:14:54.253802327 +0100
@@ -4,11 +4,11 @@
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="url">https://github.com/element-hq/synapse.git</param>
     <param name="scm">git</param>
-    <param name="revision">v1.146.0</param>
+    <param name="revision">v1.147.0</param>
     <param name="versionrewrite-pattern">v(.*)</param>
     <param name="versionrewrite-replacement">\1</param>
     <!--
-    <param name="revision">v1.147.0rc1</param>
+    <param name="revision">v1.148.0rc1</param>
     <param name="versionrewrite-pattern">v([\.\d]+)(rc.*)</param>
     <param name="versionrewrite-replacement">\1~\2</param>
     -->

++++++ matrix-synapse-1.146.0.obscpio -> matrix-synapse-1.147.0.obscpio ++++++
++++ 1660 lines of diff (skipped)

++++++ matrix-synapse.obsinfo ++++++
--- /var/tmp/diff_new_pack.zk8S25/_old  2026-02-10 21:14:58.013959887 +0100
+++ /var/tmp/diff_new_pack.zk8S25/_new  2026-02-10 21:14:58.017960054 +0100
@@ -1,5 +1,5 @@
 name: matrix-synapse
-version: 1.146.0
-mtime: 1769528702
-commit: 53e8a3c14abd30a4499e7d4c0014e7233186ec65
+version: 1.147.0
+mtime: 1770727313
+commit: a6152cec043edcc1be7647ee95ca5324f8c43780
 

++++++ vendor.tar.zst ++++++
/work/SRC/openSUSE:Factory/matrix-synapse/vendor.tar.zst 
/work/SRC/openSUSE:Factory/.matrix-synapse.new.1670/vendor.tar.zst differ: char 
7, line 1

Reply via email to