diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-06-09 12:18:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 12:18:50 +0100 |
commit | 83797573be87616bea0644918b82e2b20e8b78ca (patch) | |
tree | 0e00dc27604f2d6797095b08e05aeaa864a7829f | |
parent | 289b3c56082e243b2d9674c650d2460226013aa1 (diff) |
Version 0.8.8 (#2525)v0.8.8
-rw-r--r-- | CHANGES.md | 17 | ||||
-rw-r--r-- | internal/version.go | 2 |
2 files changed, 18 insertions, 1 deletions
@@ -1,5 +1,22 @@ # Changelog +## Dendrite 0.8.8 (2022-06-09) + +### Features + +* The performance of state resolution has been increased significantly for larger rooms +* A number of changes have been made to rate limiting: + * Logged in users will now be rate-limited on a per-session basis rather than by remote IP + * Rate limiting no longer applies to admin or appservice users + * It is now possible to configure additional users that are exempt from rate limiting using the `exempt_user_ids` option in the `rate_limiting` section of the Dendrite config +* Setting state is now idempotent via the client API state endpoints + +### Fixes + +* Room upgrades now properly propagate tombstone events to remote servers +* Room upgrades will no longer send tombstone events if creating the upgraded room fails +* A crash has been fixed when evaluating restricted room joins + ## Dendrite 0.8.7 (2022-06-01) ### Features diff --git a/internal/version.go b/internal/version.go index 2543ec90..e29996f3 100644 --- a/internal/version.go +++ b/internal/version.go @@ -17,7 +17,7 @@ var build string const ( VersionMajor = 0 VersionMinor = 8 - VersionPatch = 7 + VersionPatch = 8 VersionTag = "" // example: "rc1" ) |