summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorVictor SENE <victor@sene.ovh>2019-10-05 16:53:33 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2019-10-15 01:11:18 +0200
commit372422390fb95b2d13be0b91b1486f759c2d9366 (patch)
treeebd424b9e9392839b713cbecf68cadbf05f772cf /pkgs/servers
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
downloadnixpkgs-372422390fb95b2d13be0b91b1486f759c2d9366.tar
nixpkgs-372422390fb95b2d13be0b91b1486f759c2d9366.tar.gz
nixpkgs-372422390fb95b2d13be0b91b1486f759c2d9366.tar.bz2
nixpkgs-372422390fb95b2d13be0b91b1486f759c2d9366.tar.lz
nixpkgs-372422390fb95b2d13be0b91b1486f759c2d9366.tar.xz
nixpkgs-372422390fb95b2d13be0b91b1486f759c2d9366.tar.zst
nixpkgs-372422390fb95b2d13be0b91b1486f759c2d9366.zip
matrix-synapse: 1.3.1 -> 1.4.0
Bumps `matrix-synapse` to version 1.4.0[1]. With this version the
following changes in the matrix-synapse module were needed:

* Removed `trusted_third_party_id_servers`: option is marked as deprecated
  and ignored by matrix-synapse[2].
* Added `account_threepid_delegates` options as replacement for 3rdparty
  server features[3].
* Added `redaction_retention_period` option to configure how long
  redacted options should be kept in the database.
* Added `ma27` as maintainer for `matrix-synapse`.

Co-Authored-By: Notkea <pacien@users.noreply.github.com>
Co-authored-by: Maximilian Bosch <maximilian@mbosch.me>

[1] https://matrix.org/blog/2019/10/03/synapse-1-4-0-released
[2] https://github.com/matrix-org/synapse/pull/5875
[3] https://github.com/matrix-org/synapse/pull/5876
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/matrix-synapse/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix
index ab9a69afdcb..58a5c66d3b0 100644
--- a/pkgs/servers/matrix-synapse/default.nix
+++ b/pkgs/servers/matrix-synapse/default.nix
@@ -23,11 +23,11 @@ let
 
 in buildPythonApplication rec {
   pname = "matrix-synapse";
-  version = "1.3.1";
+  version = "1.4.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "1nz9bhy5hraa1h7100vr0innz8npnpha6xr9j2ln7h3cgwv73739";
+    sha256 = "1y8yhzsf2lk2d7v4l61rpy4918c0qz276j79q88l9yazb6gw5pkk";
   };
 
   patches = [
@@ -83,6 +83,6 @@ in buildPythonApplication rec {
     homepage = https://matrix.org;
     description = "Matrix reference homeserver";
     license = licenses.asl20;
-    maintainers = with maintainers; [ ralith roblabla ekleog pacien ];
+    maintainers = with maintainers; [ ralith roblabla ekleog pacien ma27 ];
   };
 }