aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2022-07-01 12:00:32 +0100
committerGitHub <noreply@github.com>2022-07-01 12:00:32 +0100
commitb5c55faf9886bd66a33e5555ad0bb20465bf08f7 (patch)
treed84d12ab632eb769aa44bcfc0a57fdea3e281c08
parentb50a24c666c4c45e1410dfc35d5ab2dc7e530a0f (diff)
Version 0.8.9 (#2549)v0.8.9
* Version 0.8.9 * Update changelog
-rw-r--r--CHANGES.md17
-rw-r--r--internal/version.go2
2 files changed, 18 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 0db25f05..3df03b2f 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,22 @@
# Changelog
+## Dendrite 0.8.9 (2022-07-01)
+
+### Features
+
+* Incoming device list updates over federation are now queued in JetStream for processing so that they will no longer block incoming federation transactions and should never end up dropped, which will hopefully help E2EE reliability
+* The `/context` endpoint now returns `"start"` and `"end"` parameters to allow pagination from a context call
+* The `/messages` endpoint will no longer return `"end"` when there are no more messages remaining
+* Deactivated user accounts will now leave all rooms automatically
+* New admin endpoint `/_dendrite/admin/evacuateUser/{userID}` has been added for forcing a local user to leave all joined rooms
+* Dendrite will now automatically attempt to raise the file descriptor limit at startup if it is too low
+
+### Fixes
+
+* A rare crash when retrieving remote device lists has been fixed
+* Fixes a bug where events were not redacted properly over federation
+* The `/invite` endpoints will now return an error instead of silently proceeding if the user ID is obviously malformed
+
## Dendrite 0.8.8 (2022-06-09)
### Features
diff --git a/internal/version.go b/internal/version.go
index e29996f3..9568f08c 100644
--- a/internal/version.go
+++ b/internal/version.go
@@ -17,7 +17,7 @@ var build string
const (
VersionMajor = 0
VersionMinor = 8
- VersionPatch = 8
+ VersionPatch = 9
VersionTag = "" // example: "rc1"
)