Version 0.2.1

This commit is contained in:
Neil Alexander 2020-10-22 12:03:34 +01:00
parent f32320a235
commit 4b1e7b4a89
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944
2 changed files with 12 additions and 1 deletions

View file

@ -1,5 +1,16 @@
# Changelog
## Dendrite 0.2.1 (2020-10-22)
### Fixes
* Forward extremities are now calculated using only references from other extremities, rather than including outliers, which should fix some state resets
* Old state events will no longer be processed by the sync API as new, which should fix some cases where clients incorrectly believe they have joined or left rooms
* Internal HTTP API calls are now made using H2C (HTTP/2) in polylith mode, mitigating some potential head-of-line blocking issues
* Roomserver output events no longer incorrectly flag state rewrites
* Notification levels are now parsed correctly in power level events
* Invalid UTF-8 is now correctly rejected when making federation requests
## Dendrite 0.2.0 (2020-10-20)
### Important

View file

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