Erik Johnston 5 years ago
parent
commit
0167447965
5 changed files with 12 additions and 4 deletions
  1. 11 0
      CHANGES.md
  2. 0 1
      changelog.d/5392.bugfix
  3. 0 1
      changelog.d/5415.bugfix
  4. 0 1
      changelog.d/5417.bugfix
  5. 1 1
      synapse/__init__.py

+ 11 - 0
CHANGES.md

@@ -1,3 +1,14 @@
+Synapse 1.0.0rc2 (2019-06-10)
+=============================
+
+Bugfixes
+--------
+
+- Remove redundant warning about key server response validation. ([\#5392](https://github.com/matrix-org/synapse/issues/5392))
+- Fix bug where old keys stored in the database with a null valid until timestamp caused all verification requests for that key to fail. ([\#5415](https://github.com/matrix-org/synapse/issues/5415))
+- Fix excessive memory using with default `federation_verify_certificates: true` configuration. ([\#5417](https://github.com/matrix-org/synapse/issues/5417))
+
+
 Synapse 1.0.0rc1 (2019-06-07)
 =============================
 

+ 0 - 1
changelog.d/5392.bugfix

@@ -1 +0,0 @@
-Remove redundant warning about key server response validation.

+ 0 - 1
changelog.d/5415.bugfix

@@ -1 +0,0 @@
-Fix bug where old keys stored in the database with a null valid until timestamp caused all verification requests for that key to fail.

+ 0 - 1
changelog.d/5417.bugfix

@@ -1 +0,0 @@
-Fix excessive memory using with default `federation_verify_certificates: true` configuration.

+ 1 - 1
synapse/__init__.py

@@ -27,4 +27,4 @@ try:
 except ImportError:
     pass
 
-__version__ = "1.0.0rc1"
+__version__ = "1.0.0rc2"