diff --git a/CHANGES.rst b/CHANGES.rst
index 113838b1c0..8835107594 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,61 +1,78 @@
-Changes in develop
-==================
+Changes in synapse v0.7.0 (2015-02-12)
+======================================
+
+* Add initial implementation of the query auth federation API, allowing
+ servers to agree on whether an event should be allowed or rejected.
+* Persist events we have rejected from federation, fixing the bug where
+ servers would keep requesting the same events.
+* Various federation performance improvements, including:
+
+ - Add in memory caches on queries such as:
+
+ * Computing the state of a room at a point in time, used for
+ authorization on federation requests.
+ * Fetching events from the database.
+ * User's room membership, used for authorizing presence updates.
+
+ - Upgraded JSON library to improve parsing and serialisation speeds.
- * pydenticon support -- adds dep on pydenticon
- * pylru
- * simplejson
+* Add default avatars to new user accounts using pydenticon library.
+* Correctly time out federation requests.
+* Retry federation requests against different servers.
+* Add support for push and push rules.
+* Add alpha versions of proposed new CSv2 APIs, including ``/sync`` API.
Changes in synapse 0.6.1 (2015-01-07)
=====================================
- * Major optimizations to improve performance of initial sync and event sending
- in large rooms (by up to 10x)
- * Media repository now includes a Content-Length header on media downloads.
- * Improve quality of thumbnails by changing resizing algorithm.
+* Major optimizations to improve performance of initial sync and event sending
+ in large rooms (by up to 10x)
+* Media repository now includes a Content-Length header on media downloads.
+* Improve quality of thumbnails by changing resizing algorithm.
Changes in synapse 0.6.0 (2014-12-16)
=====================================
- * Add new API for media upload and download that supports thumbnailing.
- * Replicate media uploads over multiple homeservers so media is always served
- to clients from their local homeserver. This obsoletes the
- --content-addr parameter and confusion over accessing content directly
- from remote homeservers.
- * Implement exponential backoff when retrying federation requests when
- sending to remote homeservers which are offline.
- * Implement typing notifications.
- * Fix bugs where we sent events with invalid signatures due to bugs where
- we incorrectly persisted events.
- * Improve performance of database queries involving retrieving events.
+* Add new API for media upload and download that supports thumbnailing.
+* Replicate media uploads over multiple homeservers so media is always served
+ to clients from their local homeserver. This obsoletes the
+ --content-addr parameter and confusion over accessing content directly
+ from remote homeservers.
+* Implement exponential backoff when retrying federation requests when
+ sending to remote homeservers which are offline.
+* Implement typing notifications.
+* Fix bugs where we sent events with invalid signatures due to bugs where
+ we incorrectly persisted events.
+* Improve performance of database queries involving retrieving events.
Changes in synapse 0.5.4a (2014-12-13)
======================================
- * Fix bug while generating the error message when a file path specified in
- the config doesn't exist.
+* Fix bug while generating the error message when a file path specified in
+ the config doesn't exist.
Changes in synapse 0.5.4 (2014-12-03)
=====================================
- * Fix presence bug where some rooms did not display presence updates for
- remote users.
- * Do not log SQL timing log lines when started with "-v"
- * Fix potential memory leak.
+* Fix presence bug where some rooms did not display presence updates for
+ remote users.
+* Do not log SQL timing log lines when started with "-v"
+* Fix potential memory leak.
Changes in synapse 0.5.3c (2014-12-02)
======================================
- * Change the default value for the `content_addr` option to use the HTTP
- listener, as by default the HTTPS listener will be using a self-signed
- certificate.
+* Change the default value for the `content_addr` option to use the HTTP
+ listener, as by default the HTTPS listener will be using a self-signed
+ certificate.
Changes in synapse 0.5.3 (2014-11-27)
=====================================
- * Fix bug that caused joining a remote room to fail if a single event was not
- signed correctly.
- * Fix bug which caused servers to continuously try and fetch events from other
- servers.
+* Fix bug that caused joining a remote room to fail if a single event was not
+ signed correctly.
+* Fix bug which caused servers to continuously try and fetch events from other
+ servers.
Changes in synapse 0.5.2 (2014-11-26)
=====================================
diff --git a/UPGRADE.rst b/UPGRADE.rst
index 0f81f3e11f..6ea348acc3 100644
--- a/UPGRADE.rst
+++ b/UPGRADE.rst
@@ -1,3 +1,17 @@
+Upgrading to v0.7.0
+===================
+
+New dependencies are:
+
+- pydenticon
+- simplejson
+- syutil
+- matrix-angular-sdk
+
+To pull in these dependencies in a virtual env, run::
+
+ python synapse/python_dependencies.py | xargs -n 1 pip install
+
Upgrading to v0.6.0
===================
diff --git a/synapse/__init__.py b/synapse/__init__.py
index 8fe8df4edb..915af3fe09 100644
--- a/synapse/__init__.py
+++ b/synapse/__init__.py
@@ -16,4 +16,4 @@
""" This is a reference implementation of a Matrix home server.
"""
-__version__ = "0.6.1f"
+__version__ = "0.7.0"
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py
index e099a42b5f..ec78fc3627 100644
--- a/synapse/python_dependencies.py
+++ b/synapse/python_dependencies.py
@@ -5,7 +5,7 @@ logger = logging.getLogger(__name__)
REQUIREMENTS = {
"syutil>=0.0.3": ["syutil"],
- "matrix_angular_sdk>=0.6.1": ["syweb>=0.6.1"],
+ "matrix_angular_sdk>=0.6.2": ["syweb>=0.6.2"],
"Twisted==14.0.2": ["twisted==14.0.2"],
"service_identity>=1.0.0": ["service_identity>=1.0.0"],
"pyopenssl>=0.14": ["OpenSSL>=0.14"],
@@ -31,8 +31,8 @@ DEPENDENCY_LINKS = [
),
github_link(
project="matrix-org/matrix-angular-sdk",
- version="v0.6.1",
- egg="matrix_angular_sdk-0.6.1",
+ version="v0.6.2",
+ egg="matrix_angular_sdk-0.6.2",
),
github_link(
project="pyca/pynacl",
diff --git a/synapse/storage/schema/delta/v12.sql b/synapse/storage/schema/delta/v12.sql
index 302d958dbf..b87ef1fe79 100644
--- a/synapse/storage/schema/delta/v12.sql
+++ b/synapse/storage/schema/delta/v12.sql
@@ -63,3 +63,5 @@ CREATE TABLE IF NOT EXISTS user_filters(
CREATE INDEX IF NOT EXISTS user_filters_by_user_id_filter_id ON user_filters(
user_id, filter_id
);
+
+PRAGMA user_version = 12;
|