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

Commit b3698f9

Browse files
author
David Robertson
committed
Merge tag 'v1.45.0rc2' into develop
Synapse 1.45.0rc2 (2021-10-14) ============================== **Note:** This release candidate [fixes](#11053) the user directory [bug](#11025) present in 1.45.0rc1. However, the [performance issue](#11049) which appeared in v1.44.0 is yet to be resolved. Bugfixes -------- - Fix a long-standing bug when using multiple event persister workers where events were not correctly sent down `/sync` due to a race. ([\#11045](#11045)) - Fix a bug introduced in Synapse 1.45.0rc1 where the user directory would stop updating if it processed an event from a user not in the `users` table. ([\#11053](#11053)) - Fix a bug introduced in Synapse v1.44.0 when logging errors during oEmbed processing. ([\#11061](#11061)) Internal Changes ---------------- - Add an 'approximate difference' method to `StateFilter`. ([\#10825](#10825)) - Fix inconsistent behavior of `get_last_client_by_ip` when reporting data that has not been stored in the database yet. ([\#10970](#10970)) - Fix a bug introduced in Synapse 1.21.0 that causes opentracing and Prometheus metrics for replication requests to be measured incorrectly. ([\#10996](#10996)) - Ensure that cache config tests do not share state. ([\#11036](#11036))
2 parents 35d6b91 + b1c1a34 commit b3698f9

File tree

10 files changed

+30
-9
lines changed

10 files changed

+30
-9
lines changed

CHANGES.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
Synapse 1.45.0rc2 (2021-10-14)
2+
==============================
3+
4+
**Note:** This release candidate [fixes](https://github.com/matrix-org/synapse/issues/11053) the user directory [bug](https://github.com/matrix-org/synapse/issues/11025) present in 1.45.0rc1. However, the [performance issue](https://github.com/matrix-org/synapse/issues/11049) which appeared in v1.44.0 is yet to be resolved.
5+
6+
Bugfixes
7+
--------
8+
9+
- Fix a long-standing bug when using multiple event persister workers where events were not correctly sent down `/sync` due to a race. ([\#11045](https://github.com/matrix-org/synapse/issues/11045))
10+
- Fix a bug introduced in Synapse 1.45.0rc1 where the user directory would stop updating if it processed an event from a
11+
user not in the `users` table. ([\#11053](https://github.com/matrix-org/synapse/issues/11053))
12+
- Fix a bug introduced in Synapse v1.44.0 when logging errors during oEmbed processing. ([\#11061](https://github.com/matrix-org/synapse/issues/11061))
13+
14+
15+
Internal Changes
16+
----------------
17+
18+
- Add an 'approximate difference' method to `StateFilter`. ([\#10825](https://github.com/matrix-org/synapse/issues/10825))
19+
- Fix inconsistent behavior of `get_last_client_by_ip` when reporting data that has not been stored in the database yet. ([\#10970](https://github.com/matrix-org/synapse/issues/10970))
20+
- Fix a bug introduced in Synapse 1.21.0 that causes opentracing and Prometheus metrics for replication requests to be measured incorrectly. ([\#10996](https://github.com/matrix-org/synapse/issues/10996))
21+
- Ensure that cache config tests do not share state. ([\#11036](https://github.com/matrix-org/synapse/issues/11036))
22+
23+
124
Synapse 1.45.0rc1 (2021-10-12)
225
==============================
326

changelog.d/10825.misc

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

changelog.d/10970.misc

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

changelog.d/10996.misc

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

changelog.d/11036.misc

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

changelog.d/11045.bugfix

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

changelog.d/11053.bugfix

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelog.d/11061.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.45.0~rc2) stable; urgency=medium
2+
3+
* New synapse release 1.45.0~rc2.
4+
5+
-- Synapse Packaging team <packages@matrix.org> Thu, 14 Oct 2021 10:58:24 +0100
6+
17
matrix-synapse-py3 (1.45.0~rc1) stable; urgency=medium
28

39
[ Nick @ Beeper ]

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