Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f3f7bec506 | ||
|
|
9735318be9 |
10
CHANGELOG.md
10
CHANGELOG.md
@@ -984,3 +984,13 @@
|
|||||||
* Correctly clear caches when we delete a room. (#15609)
|
* Correctly clear caches when we delete a room. (#15609)
|
||||||
* Check permissions for enabling encryption earlier during room creation to avoid creating broken rooms. (#15695)
|
* Check permissions for enabling encryption earlier during room creation to avoid creating broken rooms. (#15695)
|
||||||
|
|
||||||
|
[1.70.0]
|
||||||
|
* Update Synapse to 1.87.0
|
||||||
|
* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.87.0)
|
||||||
|
* Improve /messages response time by avoiding backfill when we already have messages to return. (#15737)
|
||||||
|
* Add spam checker module API for logins. (#15838)
|
||||||
|
* Fix a long-standing bug where media files were served in an unsafe manner. Contributed by @joshqou. (#15680)
|
||||||
|
* Avoid invalidating a cache that was just prefilled. (#15758)
|
||||||
|
* Fix requesting multiple keys at once over federation, related to MSC3983. (#15770)
|
||||||
|
* Fix joining rooms through aliases where the alias server isn't a real homeserver. Contributed by @tulir @ Beeper. (#15776)
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@
|
|||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG.md",
|
"changelog": "file://CHANGELOG.md",
|
||||||
"tagline": "Secure & decentralized communication",
|
"tagline": "Secure & decentralized communication",
|
||||||
"version": "1.69.0",
|
"version": "1.70.0",
|
||||||
"upstreamVersion": "1.86.0",
|
"upstreamVersion": "1.87.0",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8008,
|
"httpPort": 8008,
|
||||||
"memoryLimit": 536870912,
|
"memoryLimit": 536870912,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ RUN virtualenv -p python3 /app/code/env
|
|||||||
ENV VIRTUAL_ENV=/app/code/env
|
ENV VIRTUAL_ENV=/app/code/env
|
||||||
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
||||||
|
|
||||||
ARG VERSION=1.86.0
|
ARG VERSION=1.87.0
|
||||||
|
|
||||||
# https://github.com/matrix-org/synapse-s3-storage-provider
|
# https://github.com/matrix-org/synapse-s3-storage-provider
|
||||||
ARG STORAGE_PROVIDER_VERSION=fa27fa1a92bcbeb42b10399641348bee0ddf2c72
|
ARG STORAGE_PROVIDER_VERSION=fa27fa1a92bcbeb42b10399641348bee0ddf2c72
|
||||||
|
|||||||
Reference in New Issue
Block a user