summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2022-09-13 12:11:53 +0100
committerErik Johnston <erik@matrix.org>2022-09-13 12:11:53 +0100
commit9772e362aaef0740039662e3dc93a0de1411eb06 (patch)
treef2525f46100e0edee162d39161fa13bc085fd081 /docs
parentUpdates to the schema dump script (#13770) (diff)
parentFixup changelog (diff)
downloadsynapse-9772e362aaef0740039662e3dc93a0de1411eb06.tar.xz
Merge branch 'master' into develop
Diffstat (limited to 'docs')
-rw-r--r--docs/upgrade.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/upgrade.md b/docs/upgrade.md
index c6219d06e8..9f165551fa 100644
--- a/docs/upgrade.md
+++ b/docs/upgrade.md
@@ -111,6 +111,30 @@ and remove the TCP `replication` listener from config of the master and
 The minimum supported version of poetry is now 1.2. This should only affect
 those installing from a source checkout.
 
+## Rust requirement in the next release
+
+From the next major release (v1.68.0) installing Synapse from a source checkout
+will require a recent Rust compiler. Those using packages or
+`pip install matrix-synapse` will not be affected.
+
+The simplest way of installing Rust is via [rustup.rs](https://rustup.rs/)
+
+## SQLite version requirement in the next release
+
+From the next major release (v1.68.0) Synapse will require SQLite 3.27.0 or 
+higher. Synapse v1.67.0 will be the last major release supporting SQLite
+versions 3.22 to 3.26.
+
+Those using docker images or Debian packages from Matrix.org will not be
+affected. If you have installed from source, you should check the version of 
+SQLite used by Python with:
+
+```shell
+python -c "import sqlite3; print(sqlite3.sqlite_version)"
+```
+
+If this is too old, refer to your distribution for advice on upgrading.
+
 # Upgrading to v1.66.0
 
 ## Delegation of email validation no longer supported