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

Commit cf9a17a

Browse files
committed
Merge tag 'v1.22.0rc2' into develop
Synapse 1.22.0rc2 (2020-10-26) ============================== Bugfixes -------- - Fix bugs where ephemeral events were not sent to appservices. Broke in v1.22.0rc1. ([\#8648](#8648), [\#8656](#8656)) - Fix `user_daily_visits` table to not have duplicate rows per user/device due to multiple user agents. Broke in v1.22.0rc1. ([\#8654](#8654))
2 parents ff7f0e8 + 191f2e5 commit cf9a17a

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Synapse 1.22.0rc2 (2020-10-26)
2+
==============================
3+
4+
Bugfixes
5+
--------
6+
7+
- Fix bugs where ephemeral events were not sent to appservices. Broke in v1.22.0rc1. ([\#8648](https://github.com/matrix-org/synapse/issues/8648), [\#8656](https://github.com/matrix-org/synapse/issues/8656))
8+
- Fix `user_daily_visits` table to not have duplicate rows per user/device due to multiple user agents. Broke in v1.22.0rc1. ([\#8654](https://github.com/matrix-org/synapse/issues/8654))
9+
110
Synapse 1.22.0rc1 (2020-10-22)
211
==============================
312

changelog.d/8648.bugfix

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

changelog.d/8654.bugfix

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

changelog.d/8656.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
@@ -48,7 +48,7 @@
4848
except ImportError:
4949
pass
5050

51-
__version__ = "1.22.0rc1"
51+
__version__ = "1.22.0rc2"
5252

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

0 commit comments

Comments
 (0)