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

Commit 99a4e52

Browse files
author
David Robertson
committed
1.45.0rc2
1 parent b83e822 commit 99a4e52

File tree

10 files changed

+28
-9
lines changed

10 files changed

+28
-9
lines changed

CHANGES.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
Synapse 1.45.0rc2 (2021-10-14)
2+
==============================
3+
4+
Bugfixes
5+
--------
6+
7+
- 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))
8+
- Fix a bug introduced in Synapse 1.45.0rc1 where the user directory would stop updating if it processed an event from a
9+
user not in the `users` table. ([\#11053](https://github.com/matrix-org/synapse/issues/11053))
10+
- Fix a bug introduced in Synapse v1.44.0 when logging errors during oEmbed processing. ([\#11061](https://github.com/matrix-org/synapse/issues/11061))
11+
12+
13+
Internal Changes
14+
----------------
15+
16+
- Add an 'approximate difference' method to `StateFilter`. ([\#10825](https://github.com/matrix-org/synapse/issues/10825))
17+
- 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))
18+
- 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))
19+
- Ensure that cache config tests do not share state. ([\#11036](https://github.com/matrix-org/synapse/issues/11036))
20+
21+
122
Synapse 1.45.0rc1 (2021-10-12)
223
==============================
324

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 <[email protected]> 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)