diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-04-07 16:09:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 16:09:40 +0100 |
commit | 87b1ed1338fa610bc550fdac4ab4b17202b46cc1 (patch) | |
tree | 0a9be592661a9c1ce95a0ae48e0369728cbb41b0 | |
parent | 2dc35403d10d5bc11ab78255494d96a7479e2f5b (diff) |
Version 0.8.0 (#2330)v0.8.0
* Version 0.8.0
* Update changelog again
-rw-r--r-- | CHANGES.md | 21 | ||||
-rw-r--r-- | internal/version.go | 2 |
2 files changed, 22 insertions, 1 deletions
@@ -1,5 +1,26 @@ # Changelog +## Dendrite 0.8.0 (2022-04-07) + +### Features + +* Support for presence has been added + * Presence is not enabled by default + * The `global.presence.enable_inbound` and `global.presence.enable_outbound` configuration options allow configuring inbound and outbound presence separately +* Support for room upgrades via the `/room/{roomID}/upgrade` endpoint has been added (contributed by [DavidSpenler](https://github.com/DavidSpenler), [alexkursell](https://github.com/alexkursell)) +* Support for ignoring users has been added +* Joined and invite user counts are now sent in the `/sync` room summaries +* Queued federation and stale device list updates will now be staggered at startup over an up-to 2 minute warm-up period, rather than happening all at once +* Memory pressure created by the sync notifier has been reduced +* The EDU server component has now been removed, with the work being moved to more relevant components + +### Fixes + +* It is now possible to set the `power_level_content_override` when creating a room to include power levels over 100 +* `/send_join` and `/state` responses will now not unmarshal the JSON twice +* The stream event consumer for push notifications will no longer request membership events that are irrelevant +* Appservices will no longer incorrectly receive state events twice + ## Dendrite 0.7.0 (2022-03-25) ### Features diff --git a/internal/version.go b/internal/version.go index cff4d281..6a565e23 100644 --- a/internal/version.go +++ b/internal/version.go @@ -16,7 +16,7 @@ var build string const ( VersionMajor = 0 - VersionMinor = 7 + VersionMinor = 8 VersionPatch = 0 VersionTag = "" // example: "rc1" ) |