aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2022-06-01 11:40:37 +0100
committerGitHub <noreply@github.com>2022-06-01 11:40:37 +0100
commitf41931b56692c553ddf625ad54ffc8916b52e621 (patch)
treebd0a155f4b368b4f4d9a29a7b9fab1ad843b8b02
parent02e5c741015300183eff9dcf812174d0efd66c4d (diff)
Version 0.8.7 (#2509)v0.8.7
-rw-r--r--CHANGES.md12
-rw-r--r--internal/version.go2
2 files changed, 13 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index c5e4f7f8..a09a8014 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,17 @@
# Changelog
+## Dendrite 0.8.7 (2022-06-01)
+
+### Features
+
+* Support added for room version 10
+
+### Fixes
+
+* A number of state handling bugs have been fixed, which previously resulted in missing state events, unexpected state deletions, reverted memberships and unexpectedly rejected/soft-failed events in some specific cases
+* Fixed destination queue performance issues as a result of missing indexes, which speeds up outbound federation considerably
+* A bug which could cause the `/register` endpoint to return HTTP 500 has been fixed
+
## Dendrite 0.8.6 (2022-05-26)
### Features
diff --git a/internal/version.go b/internal/version.go
index 0957b454..2543ec90 100644
--- a/internal/version.go
+++ b/internal/version.go
@@ -17,7 +17,7 @@ var build string
const (
VersionMajor = 0
VersionMinor = 8
- VersionPatch = 6
+ VersionPatch = 7
VersionTag = "" // example: "rc1"
)