aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2022-10-31 16:44:41 +0000
committerGitHub <noreply@github.com>2022-10-31 16:44:41 +0000
commit8c7b274e4e223cbb888c1eb892767e46a25381aa (patch)
treedc7cf9630a44c9d0a49740f9000a1f846462fe19
parent4c38bd76ce39a557ef7085463b208cecb9fa773c (diff)
Version 0.10.5 (#2845)v0.10.5
Changelog and version bump.
-rw-r--r--CHANGES.md20
-rw-r--r--internal/version.go2
2 files changed, 21 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 1ed87824..ba14dd07 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,25 @@
# Changelog
+## Dendrite 0.10.5 (2022-10-31)
+
+### Features
+
+* It is now possible to use hCaptcha instead of reCAPTCHA for protecting registration
+* A new `auto_join_rooms` configuration option has been added for automatically joining new users to a set of rooms
+* A new `/_dendrite/admin/downloadState/{serverName}/{roomID}` endpoint has been added, which allows a server administrator to attempt to repair a room with broken room state by downloading a state snapshot from another federated server in the room
+
+### Fixes
+
+* Querying cross-signing keys for users should now be considerably faster
+* A bug in state resolution where some events were not correctly selected for third-party invites has been fixed
+* A bug in state resolution which could result in `not in room` event rejections has been fixed
+* When accepting a DM invite, it should now be possible to see messages that were sent before the invite was accepted
+* Claiming remote E2EE one-time keys has been refactored and should be more reliable now
+* Various fixes have been made to the `/members` endpoint, which may help with E2EE reliability and clients rendering memberships
+* A race condition in the federation API destination queues has been fixed when associating queued events with remote server destinations
+* A bug in the sync API where too many events were selected resulting in high CPU usage has been fixed
+* Configuring the avatar URL for the Server Notices user should work correctly now
+
## Dendrite 0.10.4 (2022-10-21)
### Features
diff --git a/internal/version.go b/internal/version.go
index 5d739a45..7254ab10 100644
--- a/internal/version.go
+++ b/internal/version.go
@@ -17,7 +17,7 @@ var build string
const (
VersionMajor = 0
VersionMinor = 10
- VersionPatch = 4
+ VersionPatch = 5
VersionTag = "" // example: "rc1"
)