0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-01 02:08:56 +02:00
This commit is contained in:
Erik Johnston 2019-12-11 13:56:50 +00:00
parent 72acca6a32
commit d156912c4c
6 changed files with 12 additions and 5 deletions

View file

@ -1,3 +1,14 @@
Synapse 1.7.0rc2 (2019-12-11)
=============================
Bugfixes
--------
- Fix incorrect error message for invalid requests when setting user's avatar URL. ([\#6497](https://github.com/matrix-org/synapse/issues/6497))
- Fix support for SQLite 3.7. ([\#6499](https://github.com/matrix-org/synapse/issues/6499))
- Fix regression where sending email push would not work when using a pusher worker. ([\#6507](https://github.com/matrix-org/synapse/issues/6507), [\#6509](https://github.com/matrix-org/synapse/issues/6509))
Synapse 1.7.0rc1 (2019-12-09)
=============================

View file

@ -1 +0,0 @@
Fix incorrect error message for invalid requests when setting user's avatar URL.

View file

@ -1 +0,0 @@
Fix support for SQLite 3.7.

View file

@ -1 +0,0 @@
Fix regression where sending email push would not work when using a pusher worker.

View file

@ -1 +0,0 @@
Fix regression where sending email push would not work when using a pusher worker.

View file

@ -36,7 +36,7 @@ try:
except ImportError:
pass
__version__ = "1.7.0rc1"
__version__ = "1.7.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