From 4b1e7b4a8997692d6669a948195c7874ed40340e Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Thu, 22 Oct 2020 12:03:34 +0100 Subject: [PATCH] Version 0.2.1 --- CHANGES.md | 11 +++++++++++ internal/version.go | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index d05b871ac..729ba6f2e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 diff --git a/internal/version.go b/internal/version.go index 040ffa32a..21f697086 100644 --- a/internal/version.go +++ b/internal/version.go @@ -17,7 +17,7 @@ var build string const ( VersionMajor = 0 VersionMinor = 2 - VersionPatch = 0 + VersionPatch = 1 VersionTag = "" // example: "rc1" )