Merge pull request #171390 from DarkKirb/matrix-1.58

matrix-synapse: 1.57.0 -> 1.58.0

authored by Pascal Bach and committed by GitHub bf905c19 404e8283

+9 -2
+5
nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
··· 850 850 to the new location if the <literal>stateVersion</literal> is 851 851 updated. 852 852 </para> 853 + <para> 854 + As of Synapse 1.58.0, the old groups/communities feature has 855 + been disabled by default. It will be completely removed with 856 + Synapse 1.61.0. 857 + </para> 853 858 </listitem> 854 859 <listitem> 855 860 <para>
+2
nixos/doc/manual/release-notes/rl-2205.section.md
··· 347 347 `media_store_path` was changed from `${dataDir}/media` to `${dataDir}/media_store` if `system.stateVersion` is at least `22.05`. Files will need to be manually moved to the new 348 348 location if the `stateVersion` is updated. 349 349 350 + As of Synapse 1.58.0, the old groups/communities feature has been disabled by default. It will be completely removed with Synapse 1.61.0. 351 + 350 352 - The Keycloak package (`pkgs.keycloak`) has been switched from the 351 353 Wildfly version, which will soon be deprecated, to the Quarkus based 352 354 version. The Keycloak service (`services.keycloak`) has been updated
+2 -2
pkgs/servers/matrix-synapse/default.nix
··· 11 11 with python3.pkgs; 12 12 buildPythonApplication rec { 13 13 pname = "matrix-synapse"; 14 - version = "1.57.0"; 14 + version = "1.58.0"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "sha256-pZhm3jfpqOcLT+M4eeD8FyHtwj5EOAFESFu+4ZMoz0s="; 18 + sha256 = "sha256-cY3rtmaaAimEQPU4wcMEy/QysPNCdk7yptrkctnLfDA="; 19 19 }; 20 20 21 21 buildInputs = [ openssl ];