aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2022-08-19 12:46:14 +0100
committerGitHub <noreply@github.com>2022-08-19 12:46:14 +0100
commit56b55a28f591cd2e920c5f16bee6f7a97b0898c0 (patch)
treec641c028ccbf36e368354119cf9c6dd467abcf5e
parent5513f182ccd978866354eaa45effd293b0745207 (diff)
Version 0.9.4 (#2658)v0.9.4
### Fixes * A bug in the roomserver around handling rejected outliers has been fixed * Backfilled events will now use the correct history visibility where possible * The device list updater backoff has been fixed, which should reduce the number of outbound HTTP requests and `Failed to query device keys for some users` log entries for dead servers * The `/sync` endpoint will no longer incorrectly return room entries for retired invites which could cause some rooms to show up in the client "Historical" section * The `/createRoom` endpoint will now correctly populate `is_direct` in invite membership events, which may help clients to classify direct messages correctly * The `create-account` tool will now log an error if the shared secret is not set in the Dendrite config * A couple of minor bugs have been fixed in the membership lazy-loading * Queued EDUs in the federation API are now cached properly
-rw-r--r--CHANGES.md13
-rw-r--r--internal/version.go2
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 36a1a631..aaf5836b 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,18 @@
# Changelog
+## Dendrite 0.9.4 (2022-08-19)
+
+### Fixes
+
+* A bug in the roomserver around handling rejected outliers has been fixed
+* Backfilled events will now use the correct history visibility where possible
+* The device list updater backoff has been fixed, which should reduce the number of outbound HTTP requests and `Failed to query device keys for some users` log entries for dead servers
+* The `/sync` endpoint will no longer incorrectly return room entries for retired invites which could cause some rooms to show up in the client "Historical" section
+* The `/createRoom` endpoint will now correctly populate `is_direct` in invite membership events, which may help clients to classify direct messages correctly
+* The `create-account` tool will now log an error if the shared secret is not set in the Dendrite config
+* A couple of minor bugs have been fixed in the membership lazy-loading
+* Queued EDUs in the federation API are now cached properly
+
## Dendrite 0.9.3 (2022-08-15)
### Important
diff --git a/internal/version.go b/internal/version.go
index 561e6c06..384f091a 100644
--- a/internal/version.go
+++ b/internal/version.go
@@ -17,7 +17,7 @@ var build string
const (
VersionMajor = 0
VersionMinor = 9
- VersionPatch = 3
+ VersionPatch = 4
VersionTag = "" // example: "rc1"
)