Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit f16beaa

Browse files
committed
Merge tag 'v1.12.4rc1' into develop
Synapse 1.12.4rc1 (2020-04-22) ============================== Features -------- - Always send users their own device updates. ([\#7160](#7160)) - Add support for handling GET requests for `account_data` on a worker. ([\#7311](#7311)) Bugfixes -------- - Fix a bug that prevented cross-signing with users on worker-mode synapses. ([\#7255](#7255)) - Do not treat display names as globs in push rules. ([\#7271](#7271)) - Fix a bug with cross-signing devices belonging to remote users who did not share a room with any user on the local homeserver. ([\#7289](#7289))
2 parents 82d8b1d + ba0aac5 commit f16beaa

File tree

7 files changed

+18
-6
lines changed

7 files changed

+18
-6
lines changed

CHANGES.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,23 @@ Next version
1111
should update to using the async/await version `complete_sso_login_async` which
1212
includes additional checks. The non-async version is considered deprecated.
1313

14+
Synapse 1.12.4rc1 (2020-04-22)
15+
==============================
16+
17+
Features
18+
--------
19+
20+
- Always send users their own device updates. ([\#7160](https://github.com/matrix-org/synapse/issues/7160))
21+
- Add support for handling GET requests for `account_data` on a worker. ([\#7311](https://github.com/matrix-org/synapse/issues/7311))
22+
23+
24+
Bugfixes
25+
--------
26+
27+
- Fix a bug that prevented cross-signing with users on worker-mode synapses. ([\#7255](https://github.com/matrix-org/synapse/issues/7255))
28+
- Do not treat display names as globs in push rules. ([\#7271](https://github.com/matrix-org/synapse/issues/7271))
29+
- Fix a bug with cross-signing devices belonging to remote users who did not share a room with any user on the local homeserver. ([\#7289](https://github.com/matrix-org/synapse/issues/7289))
30+
1431
Synapse 1.12.3 (2020-04-03)
1532
===========================
1633

changelog.d/7160.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/7255.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/7271.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/7289.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/7311.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

synapse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
except ImportError:
3737
pass
3838

39-
__version__ = "1.12.3"
39+
__version__ = "1.12.4rc1"
4040

4141
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
4242
# We import here so that we don't have to install a bunch of deps when

0 commit comments

Comments
 (0)