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

Commit

Permalink
Merge tag 'v1.45.0rc2' into develop
Browse files Browse the repository at this point in the history
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))
  • Loading branch information
David Robertson committed Oct 14, 2021
2 parents 35d6b91 + b1c1a34 commit b3698f9
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 9 deletions.
23 changes: 23 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
Synapse 1.45.0rc2 (2021-10-14)
==============================

**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.

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](https://github.com/matrix-org/synapse/issues/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](https://github.com/matrix-org/synapse/issues/11053))
- Fix a bug introduced in Synapse v1.44.0 when logging errors during oEmbed processing. ([\#11061](https://github.com/matrix-org/synapse/issues/11061))


Internal Changes
----------------

- Add an 'approximate difference' method to `StateFilter`. ([\#10825](https://github.com/matrix-org/synapse/issues/10825))
- 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))
- 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))
- Ensure that cache config tests do not share state. ([\#11036](https://github.com/matrix-org/synapse/issues/11036))


Synapse 1.45.0rc1 (2021-10-12)
==============================

Expand Down
1 change: 0 additions & 1 deletion changelog.d/10825.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/10970.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/10996.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/11036.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/11045.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/11053.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/11061.bugfix

This file was deleted.

6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
matrix-synapse-py3 (1.45.0~rc2) stable; urgency=medium

* New synapse release 1.45.0~rc2.

-- Synapse Packaging team <packages@matrix.org> Thu, 14 Oct 2021 10:58:24 +0100

matrix-synapse-py3 (1.45.0~rc1) stable; urgency=medium

[ Nick @ Beeper ]
Expand Down
2 changes: 1 addition & 1 deletion synapse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
except ImportError:
pass

__version__ = "1.45.0rc1"
__version__ = "1.45.0rc2"

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

0 comments on commit b3698f9

Please sign in to comment.