aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2021-02-04 12:39:43 +0000
committerNeil Alexander <neilalexander@users.noreply.github.com>2021-02-04 12:39:43 +0000
commit397b158c05be7ee395257913820f86616302e6ed (patch)
treedaa225453801783458352f9b90dea27813470635
parentbd72ed50d426f6025004a2beb1372912ecf1d500 (diff)
Version 0.3.9v0.3.9
-rw-r--r--CHANGES.md14
-rw-r--r--internal/version.go2
2 files changed, 15 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index b11c3d7a..b76a6acf 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,19 @@
# Changelog
+## Dendrite 0.3.9 (2021-02-04)
+
+### Features
+
+* Performance of initial/complete syncs has been improved dramatically
+* State events that can't be authed are now dropped when joining a room rather than unexpectedly causing the room join to fail
+* State events that already appear in the timeline will no longer be requested from the sync API database more than once, which may reduce memory usage in some cases
+
+### Fixes
+
+* A crash at startup due to a conflict in the sync API account data has been fixed
+* A crash at startup due to mismatched event IDs in the federation sender has been fixed
+* A redundant check which may cause the roomserver memberships table to get out of sync has been removed
+
## Dendrite 0.3.8 (2021-01-28)
### Fixes
diff --git a/internal/version.go b/internal/version.go
index f5c6a423..7d098037 100644
--- a/internal/version.go
+++ b/internal/version.go
@@ -17,7 +17,7 @@ var build string
const (
VersionMajor = 0
VersionMinor = 3
- VersionPatch = 8
+ VersionPatch = 9
VersionTag = "" // example: "rc1"
)