diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2020-10-22 12:38:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-22 12:38:12 +0100 |
commit | 59428cdde3ed3f30f01b886c641e6dd1f313c294 (patch) | |
tree | 9f4497dbc202787d0d478b351666e50cb2f5cb60 | |
parent | b66b2eab32b1d31c3cbdc5fb733022d69b66da80 (diff) |
Version 0.2.1 (#1558)v0.2.1
* Version 0.2.1
* Credit where credit due
* Update CHANGES.md
* Include PRs
-rw-r--r-- | CHANGES.md | 12 | ||||
-rw-r--r-- | internal/version.go | 2 |
2 files changed, 13 insertions, 1 deletions
@@ -1,5 +1,17 @@ # 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 cases where state can become corrupted ([#1556](https://github.com/matrix-org/dendrite/pull/1556)) +* 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 ([#1548](https://github.com/matrix-org/dendrite/pull/1548)) +* More SQLite database locking issues have been resolved in the latest events updater ([#1554](https://github.com/matrix-org/dendrite/pull/1554)) +* Internal HTTP API calls are now made using H2C (HTTP/2) in polylith mode, mitigating some potential head-of-line blocking issues ([#1541](https://github.com/matrix-org/dendrite/pull/1541)) +* Roomserver output events no longer incorrectly flag state rewrites ([#1557](https://github.com/matrix-org/dendrite/pull/1557)) +* Notification levels are now parsed correctly in power level events ([gomatrixserverlib#228](https://github.com/matrix-org/gomatrixserverlib/pull/228), contributed by [Pestdoktor](https://github.com/Pestdoktor)) +* Invalid UTF-8 is now correctly rejected when making federation requests ([gomatrixserverlib#229](https://github.com/matrix-org/gomatrixserverlib/pull/229), contributed by [Pestdoktor](https://github.com/Pestdoktor)) + ## Dendrite 0.2.0 (2020-10-20) ### Important diff --git a/internal/version.go b/internal/version.go index 040ffa32..21f69708 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" ) |