parent
72acca6a32
commit
d156912c4c
11
CHANGES.md
11
CHANGES.md
|
@ -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)
|
||||
=============================
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Fix incorrect error message for invalid requests when setting user's avatar URL.
|
|
@ -1 +0,0 @@
|
|||
Fix support for SQLite 3.7.
|
|
@ -1 +0,0 @@
|
|||
Fix regression where sending email push would not work when using a pusher worker.
|
|
@ -1 +0,0 @@
|
|||
Fix regression where sending email push would not work when using a pusher worker.
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue