Skip to content

Commit 8674434

Browse files
committed
1.50.0rc2
1 parent b602ba1 commit 8674434

File tree

7 files changed

+33
-5
lines changed

7 files changed

+33
-5
lines changed

CHANGES.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
Synapse 1.50.0rc2 (2022-01-14)
2+
==============================
3+
4+
This release candidate fixes a federation-breaking regression introduced in the previous release candidate. The bug broke sending federation traffic to destination servers that had enough outbound device updates to be sent (including at least one cross-signing key update).
5+
It would particularly affect sending to servers that have had downtime, as this would make it more likely that a big enough queue of outbound device updates had built up.
6+
7+
8+
Bugfixes
9+
--------
10+
11+
- Fix a bug introduced in Synapse v1.0.0 whereby some device list updates would not be sent to remote homeservers if there were too many to send at once. ([\#11729](https://github.com/matrix-org/synapse/issues/11729))
12+
- Fix a bug introduced in Synapse v1.50.0rc1 whereby outbound federation could fail because too many EDUs were produced for device updates. ([\#11730](https://github.com/matrix-org/synapse/issues/11730))
13+
14+
15+
Improved Documentation
16+
----------------------
17+
18+
- Document that now the minimum supported PostgreSQL version is 10. ([\#11725](https://github.com/matrix-org/synapse/issues/11725))
19+
20+
21+
Internal Changes
22+
----------------
23+
24+
- Fix a typechecker problem related to our (ab)use of `nacl.signing.SigningKey`s. ([\#11714](https://github.com/matrix-org/synapse/issues/11714))
25+
26+
127
Synapse 1.50.0rc1 (2022-01-05)
228
==============================
329

changelog.d/11714.misc

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

changelog.d/11725.doc

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

changelog.d/11729.bugfix

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

changelog.d/11730.bugfix

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

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.50.0~rc2) stable; urgency=medium
2+
3+
* New synapse release 1.50.0~rc2.
4+
5+
-- Synapse Packaging team <[email protected]> Fri, 14 Jan 2022 11:18:06 +0000
6+
17
matrix-synapse-py3 (1.50.0~rc1) stable; urgency=medium
28

39
* New synapse release 1.50.0~rc1.

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.50.0rc1"
50+
__version__ = "1.50.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)