0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-13 09:58:59 +02:00

Version 0.3.7

This commit is contained in:
Neil Alexander 2021-01-26 13:13:48 +00:00
parent 9f443317bc
commit e14e9a1606
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944
2 changed files with 15 additions and 1 deletions

View file

@ -1,5 +1,19 @@
# Changelog
## Dendrite 0.3.7 (2021-01-26)
### Features
* Sync filtering support (for event types, senders and limits)
* In-process DNS caching support for deployments where a local DNS caching resolver is not available (disabled by default)
* Experimental support for MSC2444 (Peeking over Federation) has been merged
* Experimental federation support for MSC2946 (Spaces Summary) has been merged
### Fixes
* Dendrite will no longer load a given event more than once for state resolution, which may help to reduce memory usage and database I/O slightly in some cases
* Large well-known responses will no longer use significant amounts of memory
## Dendrite 0.3.6 (2021-01-18)
### Features

View file

@ -17,7 +17,7 @@ var build string
const (
VersionMajor = 0
VersionMinor = 3
VersionPatch = 6
VersionPatch = 7
VersionTag = "" // example: "rc1"
)