aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2022-08-03 17:42:13 +0100
committerGitHub <noreply@github.com>2022-08-03 17:42:13 +0100
commita2bed259dd765bd0b9781cd65594343d22c07986 (patch)
tree83413d13523987279c16ba30752d37c7a79d6b39
parent3bf5ae5ffef0ebc140f55320658d9b07bc58e848 (diff)
Version 0.9.1 (#2616)v0.9.1
* Version 0.9.1 * Update CHANGES.md
-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 0ae92744..5dd8da36 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,19 @@
# Changelog
+## Dendrite 0.9.1 (2022-08-03)
+
+### Fixes
+
+* Upgrades a dependency which caused issues building Dendrite with Go 1.19
+* The roomserver will no longer give up prematurely after failing to call `/state_ids`
+* Removes the faulty room info cache, which caused of a number of race conditions and occasional bugs (including when creating and joining rooms)
+* The media endpoint now sets the `Cache-Control` header correctly to prevent web-based clients from hitting media endpoints excessively
+* The sync API will now advance the PDU stream position correctly in all cases (contributed by [sergekh2](https://github.com/sergekh2))
+* The sync API will now delete the correct range of send-to-device messages when advancing the stream position
+* The device list `changed` key in the `/sync` response should now return the correct users
+* A data race when looking up missing state has been fixed
+* The `/send_join` API is now applying stronger validation to the received membership event
+
## Dendrite 0.9.0 (2022-08-01)
### Features
diff --git a/internal/version.go b/internal/version.go
index 6d29a68e..38d0864e 100644
--- a/internal/version.go
+++ b/internal/version.go
@@ -17,7 +17,7 @@ var build string
const (
VersionMajor = 0
VersionMinor = 9
- VersionPatch = 0
+ VersionPatch = 1
VersionTag = "" // example: "rc1"
)