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

Commit 29966a2

Browse files
committed
Merge tag 'v1.36.0rc2' into develop
Synapse 1.36.0rc2 (2021-06-11) ============================== Bugfixes -------- - Fix a bug which caused presence updates to stop working some time after a restart, when using a presence writer worker. Broke in v1.33.0. ([\#10149](#10149)) - Fix a bug when using federation sender worker where it would send out more presence updates than necessary, leading to high resource usage. Broke in v1.33.0. ([\#10163](#10163)) - Fix a bug where Synapse could send the same presence update to a remote twice. ([\#10165](#10165))
2 parents 968f828 + cbf350d commit 29966a2

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CHANGES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Synapse 1.36.0rc2 (2021-06-11)
2+
==============================
3+
4+
Bugfixes
5+
--------
6+
7+
- Fix a bug which caused presence updates to stop working some time after a restart, when using a presence writer worker. Broke in v1.33.0. ([\#10149](https://github.com/matrix-org/synapse/issues/10149))
8+
- Fix a bug when using federation sender worker where it would send out more presence updates than necessary, leading to high resource usage. Broke in v1.33.0. ([\#10163](https://github.com/matrix-org/synapse/issues/10163))
9+
- Fix a bug where Synapse could send the same presence update to a remote twice. ([\#10165](https://github.com/matrix-org/synapse/issues/10165))
10+
11+
112
Synapse 1.36.0rc1 (2021-06-08)
213
==============================
314

changelog.d/10149.bugfix

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

changelog.d/10163.bugfix

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

changelog.d/10165.bugfix

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
@@ -47,7 +47,7 @@
4747
except ImportError:
4848
pass
4949

50-
__version__ = "1.36.0rc1"
50+
__version__ = "1.36.0rc2"
5151

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

0 commit comments

Comments
 (0)