From 1f3a498601cb70421ee133e336ecb5bfe8affd4b Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Wed, 2 Dec 2020 17:46:28 +0000 Subject: [PATCH] Version 0.3.2 --- CHANGES.md | 12 ++++++++++++ internal/version.go | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index effa5fdd..f463f29f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,17 @@ # Changelog +## Dendrite 0.3.2 (2020-12-02) + +### Features + +* Federation can now be disabled with the `global.disable_federation` configuration option + +### Fixes + +* The `"since"` parameter is now checked more thoroughly in the sync API, which led to a bug that could cause forgotten rooms to reappear (contributed by [kaniini](https://github.com/kaniini)) +* The polylith now proxies signing key requests through the federation sender correctly +* The code for checking if remote servers are allowed to see events now no longer wastes CPU time retrieving irrelevant state events + ## Dendrite 0.3.1 (2020-11-20) ### Features diff --git a/internal/version.go b/internal/version.go index f4356b23..bc54163c 100644 --- a/internal/version.go +++ b/internal/version.go @@ -17,7 +17,7 @@ var build string const ( VersionMajor = 0 VersionMinor = 3 - VersionPatch = 1 + VersionPatch = 2 VersionTag = "" // example: "rc1" )