Browse Source

Upgrade Synapse (1.49.2 -> 1.50.0)

pull/1567/head
Slavi Pantaleev 4 years ago
parent
commit
5f22371c23
2 changed files with 4 additions and 3 deletions
  1. +2
    -2
      roles/matrix-synapse/defaults/main.yml
  2. +2
    -1
      roles/matrix-synapse/templates/synapse/homeserver.yaml.j2

+ 2
- 2
roles/matrix-synapse/defaults/main.yml View File

@@ -15,8 +15,8 @@ matrix_synapse_docker_image_name_prefix: "{{ 'localhost/' if matrix_synapse_cont
# amd64 gets released first.
# arm32 relies on self-building, so the same version can be built immediately.
# arm64 users need to wait for a prebuilt image to become available.
matrix_synapse_version: v1.49.2
matrix_synapse_version_arm64: v1.49.2
matrix_synapse_version: v1.50.0
matrix_synapse_version_arm64: v1.50.0
matrix_synapse_docker_image_tag: "{{ matrix_synapse_version if matrix_architecture in ['arm32', 'amd64'] else matrix_synapse_version_arm64 }}"
matrix_synapse_docker_image_force_pull: "{{ matrix_synapse_docker_image.endswith(':latest') }}"



+ 2
- 1
roles/matrix-synapse/templates/synapse/homeserver.yaml.j2 View File

@@ -12,7 +12,7 @@

# Server admins can expand Synapse's functionality with external modules.
#
# See https://matrix-org.github.io/synapse/develop/modules.html for more
# See https://matrix-org.github.io/synapse/latest/modules/index.html for more
# documentation on how to configure or create custom modules for Synapse.
#
modules:
@@ -1519,6 +1519,7 @@ room_prejoin_state:
# - m.room.encryption
# - m.room.name
# - m.room.create
# - m.room.topic
#
# Uncomment the following to disable these defaults (so that only the event
# types listed in 'additional_event_types' are shared). Defaults to 'false'.


Loading…
Cancel
Save