aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTill <2353100+S7evinK@users.noreply.github.com>2023-01-17 19:04:02 +0100
committerGitHub <noreply@github.com>2023-01-17 19:04:02 +0100
commitb55a7c238fb4b4db9ff4da0a25f0f83316d20f5e (patch)
tree9bfd803b01ac62625071d8815b160538c31e1fdc
parent0d0280cf5ff71ec975b17d0f6dadcae7e46574b5 (diff)
Version 0.10.9 (#2942)v0.10.9
-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 f5a82cfe..fa823065 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,25 @@
# Changelog
+## Dendrite 0.10.9 (2023-01-17)
+
+### Features
+
+* Stale device lists are now cleaned up on startup, removing entries for users the server doesn't share a room with anymore
+* Dendrite now has its own Helm chart
+* Guest access is now handled correctly (disallow joins, kick guests on revocation of guest access, as well as over federation)
+
+### Fixes
+
+* Push rules have seen several tweaks and fixes, which should, for example, fix notifications for `m.read_receipts`
+* Outgoing presence will now correctly be sent to newly joined hosts
+* Fixes the `/_dendrite/admin/resetPassword/{userID}` admin endpoint to use the correct variable
+* Federated backfilling for medium/large rooms has been fixed
+* `/login` causing wrong device list updates has been resolved
+* `/sync` should now return the correct room summary heroes
+* The default config options for `recaptcha_sitekey_class` and `recaptcha_form_field` are now set correctly
+* `/messages` now omits empty `state` to be more spec compliant (contributed by [handlerug](https://github.com/handlerug))
+* `/sync` has been optimised to only query state events for history visibility if they are really needed
+
## Dendrite 0.10.8 (2022-11-29)
### Features
diff --git a/internal/version.go b/internal/version.go
index 685237b9..ff31dd78 100644
--- a/internal/version.go
+++ b/internal/version.go
@@ -17,7 +17,7 @@ var build string
const (
VersionMajor = 0
VersionMinor = 10
- VersionPatch = 8
+ VersionPatch = 9
VersionTag = "" // example: "rc1"
)