aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2022-11-01 17:14:30 +0000
committerNeil Alexander <neilalexander@users.noreply.github.com>2022-11-01 17:14:30 +0000
commit52478dac3c4ba56627ace5f71d1b76d208b8cb12 (patch)
tree95c6b2740facb20531231b8e39ebbba7f066a4e5
parent501977f6fe93947a133a74c2dc5379f7712bba65 (diff)
Version 0.10.6v0.10.6
-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 ba14dd07..55df36f9 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,19 @@
# Changelog
+## Dendrite 0.10.6 (2022-11-01)
+
+### Features
+
+* History visibility checks have been optimised, which should speed up response times on a variety of endpoints (including `/sync`, `/messages`, `/context` and others) and reduce database load
+* The built-in NATS Server has been updated to version 2.9.4
+* Some other minor dependencies have been updated
+
+### Fixes
+
+* A panic has been fixed in the sync API PDU stream which could cause requests to fail
+* The `/members` response now contains the `room_id` field, which may fix some E2EE problems with clients using the JS SDK (contributed by [ashkitten](https://github.com/ashkitten))
+* The auth difference calculation in state resolution v2 has been tweaked for clarity (and moved into gomatrixserverlib with the rest of the state resolution code)
+
## Dendrite 0.10.5 (2022-10-31)
### Features
diff --git a/internal/version.go b/internal/version.go
index 7254ab10..f762adf9 100644
--- a/internal/version.go
+++ b/internal/version.go
@@ -17,7 +17,7 @@ var build string
const (
VersionMajor = 0
VersionMinor = 10
- VersionPatch = 5
+ VersionPatch = 6
VersionTag = "" // example: "rc1"
)