From 3e2d60a34c936fbd8c4f8e7c5e0d49fd8f5cc44e Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 20 Jun 2023 19:14:52 +0200 Subject: [PATCH] Bump version --- CHANGELOG.md | 15 +++++++++++++++ CloudronManifest.json | 4 ++-- Dockerfile | 4 ++-- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bbc40b..6718ebf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -969,3 +969,18 @@ * [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.85.2) * Fix regression where using TLS for HTTP replication between workers did not work. Introduced in v1.85.0. (#15746) +[1.67.0] +* Update Synapse to 1.86.0 +* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.86.0) +* Fix an error when having workers of different versions running. (#15774) +* Stable support for MSC3882 to allow an existing device/session to generate a login token for use on a new device/session. (#15388) +* Support resolving a room's canonical alias via the module API. (#15450) +* Enable support for MSC3952: intentional mentions. (#15520) +* Experimental MSC3861 support: delegate auth to an OIDC provider. (#15582) +* Add Synapse version deploy annotations to Grafana dashboard which enables easy correlation between behavior changes witnessed in a graph to a certain Synapse version and nail down regressions. (#15674) +* Add a catch-all * to the supported relation types when redacting an event and its related events. This is an update to MSC3912 implementation. (#15705) +* Speed up /messages by backfilling in the background when there are no backward extremities where we are directly paginating. (#15710) +* Expose a metric reporting the database background update status. (#15740) +* Correctly clear caches when we delete a room. (#15609) +* Check permissions for enabling encryption earlier during room creation to avoid creating broken rooms. (#15695) + diff --git a/CloudronManifest.json b/CloudronManifest.json index 5cee925..b0987fa 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -5,8 +5,8 @@ "description": "file://DESCRIPTION.md", "changelog": "file://CHANGELOG.md", "tagline": "Secure & decentralized communication", - "version": "1.68.2", - "upstreamVersion": "1.85.2", + "version": "1.69.0", + "upstreamVersion": "1.86.0", "healthCheckPath": "/", "httpPort": 8008, "memoryLimit": 536870912, diff --git a/Dockerfile b/Dockerfile index b99745a..9e6ea52 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN virtualenv -p python3 /app/code/env ENV VIRTUAL_ENV=/app/code/env ENV PATH="$VIRTUAL_ENV/bin:$PATH" -ARG VERSION=v1.85.2 +ARG VERSION=1.86.0 # https://github.com/matrix-org/synapse-s3-storage-provider ARG STORAGE_PROVIDER_VERSION=fa27fa1a92bcbeb42b10399641348bee0ddf2c72 @@ -18,7 +18,7 @@ ARG STORAGE_PROVIDER_VERSION=fa27fa1a92bcbeb42b10399641348bee0ddf2c72 # lxml - required for previews RUN pip install --upgrade pip && \ pip install --upgrade setuptools && \ - pip install matrix-synapse==${VERSION} psycopg2-binary python-ldap matrix-synapse-ldap3 lxml publicsuffix2 git+https://github.com/matrix-org/synapse-s3-storage-provider.git@${STORAGE_PROVIDER_VERSION} matrix-synapse[oidc] + pip install matrix-synapse==v${VERSION} psycopg2-binary python-ldap matrix-synapse-ldap3 lxml publicsuffix2 git+https://github.com/matrix-org/synapse-s3-storage-provider.git@${STORAGE_PROVIDER_VERSION} matrix-synapse[oidc] RUN ln -sf /app/data/index.html /app/code/env/lib/python3.10/site-packages/synapse/static/index.html