aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2022-08-25 14:14:10 +0100
committerGitHub <noreply@github.com>2022-08-25 14:14:10 +0100
commited79e8626aa3fc909b9ff2dbe4a1e16620ee0e37 (patch)
tree1af2aab13d010ed101692ac87cde331be42b7aef
parent07dd9bd9954d0740664651bf9755a81c3ba2d011 (diff)
Version 0.9.5 (#2673)v0.9.5
Changelog and version bump.
-rw-r--r--CHANGES.md12
-rw-r--r--internal/version.go2
2 files changed, 13 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index aaf5836b..0f57bffc 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,17 @@
# Changelog
+## Dendrite 0.9.5 (2022-08-25)
+
+### Fixes
+
+* The roomserver will now correctly unreject previously rejected events if necessary when reprocessing
+* The handling of event soft-failure has been improved on the roomserver input by no longer applying rejection rules and still calculating state before the event if possible
+* The federation `/state` and `/state_ids` endpoints should now return the correct error code when the state isn't known instead of returning a HTTP 500
+* The federation `/event` should now return outlier events correctly instead of returning a HTTP 500
+* A bug in the federation backoff allowing zero intervals has been corrected
+* The `create-account` utility will no longer error if the homeserver URL ends in a trailing slash
+* A regression in `/sync` introduced in 0.9.4 should be fixed
+
## Dendrite 0.9.4 (2022-08-19)
### Fixes
diff --git a/internal/version.go b/internal/version.go
index 384f091a..108b8ab0 100644
--- a/internal/version.go
+++ b/internal/version.go
@@ -17,7 +17,7 @@ var build string
const (
VersionMajor = 0
VersionMinor = 9
- VersionPatch = 4
+ VersionPatch = 5
VersionTag = "" // example: "rc1"
)