diff --git a/CHANGELOG.md b/CHANGELOG.md index 185f1a1..048488a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -865,3 +865,19 @@ [1.62.1] * Update post installation message +[1.63.0] +* Update Synapse to 1.80.0 +* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.80.0) +* Fix a bug in which the POST /_matrix/client/v3/rooms/{roomId}/report/{eventId} endpoint would return the wrong error if the user did not have permission to view the event. This aligns Synapse's implementation with MSC2249. (#15298, #15300) +* Fix a bug introduced in Synapse 1.75.0rc1 where the SQLite port_db script +* would fail to open the SQLite database. (#15301) +* Stabilise support for MSC3966: event_property_contains push condition. (#15187) +* Implement MSC2659: application service ping endpoint. Contributed by Tulir @ Beeper. (#15249) +* Allow loading /register/available endpoint on workers. (#15268) +* Improve performance of creating and authenticating events. (#15195) +* Add topic and name events to group of events that are batch persisted when creating a room. (#15229) +* Fix a long-standing bug in which the user directory would assume any remote membership state events represent a profile change. (#14755, #14756) +* Implement MSC3873 to fix a long-standing bug where properties with dots were handled ambiguously in push rules. (#15190) +* Faster joins: Fix a bug introduced in Synapse 1.66 where spurious "Failed to find memberships ..." errors would be logged. (#15232) +* Fix a long-standing error when sending message into deleted room. (#15235) + diff --git a/CloudronManifest.json b/CloudronManifest.json index b59ad4d..a5378f2 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.62.1", - "upstreamVersion": "1.79.0", + "version": "1.63.0", + "upstreamVersion": "1.80.0", "healthCheckPath": "/", "httpPort": 8008, "memoryLimit": 536870912, diff --git a/Dockerfile b/Dockerfile index 582e1a1..95c0ea0 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.79.0 +ARG VERSION=v1.80.0 # https://github.com/matrix-org/synapse-s3-storage-provider ARG STORAGE_PROVIDER_VERSION=fa27fa1a92bcbeb42b10399641348bee0ddf2c72