From 6c6debee062c26b8bea5d0200ede406cffc828df Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Wed, 3 May 2023 03:45:26 -0500 Subject: [PATCH] Pin Synapse version until read-after-write issue is fixed Relevant Synapse issue: https://github.com/matrix-org/synapse/issues/15526 Full context: https://github.com/matrix-org/matrix-public-archive/pull/208#discussion_r1183402499 --- test/dockerfiles/Synapse.Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/dockerfiles/Synapse.Dockerfile b/test/dockerfiles/Synapse.Dockerfile index bbc9339..90407f3 100644 --- a/test/dockerfiles/Synapse.Dockerfile +++ b/test/dockerfiles/Synapse.Dockerfile @@ -4,7 +4,11 @@ # Currently this is based on Complement Synapse images which are based on the # published 'synapse:latest' image -- ie, the most recent Synapse release. -ARG SYNAPSE_VERSION=latest +# FIXME: We're pinning the version to `v1.79.0` until +# https://github.com/matrix-org/synapse/issues/15526 is fixed. Feel free to update back +# to `latest` once that issue is resolved. More context: +# https://github.com/matrix-org/matrix-public-archive/pull/208#discussion_r1183294630 +ARG SYNAPSE_VERSION=v1.79.0 FROM matrixdotorg/synapse:${SYNAPSE_VERSION}