mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-26 00:03:09 -06:00
Version 0.2.1
This commit is contained in:
parent
f32320a235
commit
4b1e7b4a89
11
CHANGES.md
11
CHANGES.md
|
|
@ -1,5 +1,16 @@
|
||||||
# Changelog
|
# 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)
|
## Dendrite 0.2.0 (2020-10-20)
|
||||||
|
|
||||||
### Important
|
### Important
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ var build string
|
||||||
const (
|
const (
|
||||||
VersionMajor = 0
|
VersionMajor = 0
|
||||||
VersionMinor = 2
|
VersionMinor = 2
|
||||||
VersionPatch = 0
|
VersionPatch = 1
|
||||||
VersionTag = "" // example: "rc1"
|
VersionTag = "" // example: "rc1"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue