Skip to content

Commit 6021656

Browse files
committed
Merge branch 'develop' into madlittlemods/revert-19036
2 parents 9100563 + da6c0ca commit 6021656

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

CHANGES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Synapse 1.140.0rc1 (2025-10-10)
1+
# Synapse 1.140.0 (2025-10-14)
22

33
## Compatibility notice for users of `synapse-s3-storage-provider`
44

@@ -9,6 +9,14 @@ module must upgrade to
99
Using older versions of the module with this release of Synapse will prevent
1010
users from being able to upload or download media.
1111

12+
13+
No significant changes since 1.140.0rc1.
14+
15+
16+
17+
18+
# Synapse 1.140.0rc1 (2025-10-10)
19+
1220
## Features
1321

1422
- Add [a new Media Query by ID Admin API](https://element-hq.github.io/synapse/v1.140/admin_api/media_admin_api.html#query-a-piece-of-media-by-id) that allows server admins to query and investigate the metadata of local or cached remote media via

changelog.d/19060.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix a bug introduced in 1.136.0 that would prevent Synapse from being able to be `reload`-ed more than once when running under systemd.

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
matrix-synapse-py3 (1.140.0) stable; urgency=medium
2+
3+
* New Synapse release 1.140.0.
4+
5+
-- Synapse Packaging team <packages@matrix.org> Tue, 14 Oct 2025 15:22:36 +0100
6+
17
matrix-synapse-py3 (1.140.0~rc1) stable; urgency=medium
28

39
* New Synapse release 1.140.0rc1.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ module-name = "synapse.synapse_rust"
101101

102102
[tool.poetry]
103103
name = "matrix-synapse"
104-
version = "1.140.0rc1"
104+
version = "1.140.0"
105105
description = "Homeserver for the Matrix decentralised comms protocol"
106106
authors = ["Matrix.org Team and Contributors <packages@matrix.org>"]
107107
license = "AGPL-3.0-or-later OR LicenseRef-Element-Commercial"

synapse/app/_base.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -591,9 +591,9 @@ async def _handle_sighup(*args: Any, **kwargs: Any) -> None:
591591
# we're not using systemd.
592592
sdnotify(b"RELOADING=1")
593593

594-
for sighup_callbacks in _instance_id_to_sighup_callbacks_map.values():
595-
for func, args, kwargs in sighup_callbacks:
596-
func(*args, **kwargs)
594+
for sighup_callbacks in _instance_id_to_sighup_callbacks_map.values():
595+
for func, args, kwargs in sighup_callbacks:
596+
func(*args, **kwargs)
597597

598598
sdnotify(b"READY=1")
599599

0 commit comments

Comments
 (0)