Skip to content
This repository was archived by the owner on Nov 25, 2024. It is now read-only.

Commit f40e280

Browse files
Version 0.9.9 (#2732)
Changelog and version bump.
1 parent 0ddfb0c commit f40e280

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

CHANGES.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## Dendrite 0.9.9 (2022-09-22)
4+
5+
### Features
6+
7+
* Dendrite will now try to keep HTTP connections open to remote federated servers for a few minutes after a request and attempt to reuse those connections where possible
8+
* This should reduce the amount of time spent on TLS handshakes and often speed up requests to remote servers
9+
* This new behaviour can be disabled with the `federation_api.disable_http_keepalives` option if needed
10+
* A number of dependencies have been updated
11+
12+
### Fixes
13+
14+
* A bug where the roomserver did not correctly propagate rewritten room state to downstream components (like the federation API and sync API) has been fixed, which could cause issues when performing a federated join to a previously left room
15+
* Event auth now correctly parses the `join_authorised_via_users_server` field in the membership event content
16+
* Database migrations should no longer produce unique constraint errors at Dendrite startup
17+
* The `origin` of device list updates should now be populated correctly
18+
* Send-to-device messages will no longer be dropped if we fail to publish them to specific devices
19+
* The roomserver query to find state after events will now always resolve state if there are multiple prev events
20+
* The roomserver will now return no memberships if querying history visibility for an event which has no state snapshot
21+
* The device list updater will now mark a device list as stale if a requesting device ID is not known
22+
* Transactions sent to appservices should no longer have accidental duplicated transaction IDs (contributed by [tak-hntlabs](https://github.com/tak-hntlabs))
23+
324
## Dendrite 0.9.8 (2022-09-12)
425

526
### Important

internal/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var build string
1717
const (
1818
VersionMajor = 0
1919
VersionMinor = 9
20-
VersionPatch = 8
20+
VersionPatch = 9
2121
VersionTag = "" // example: "rc1"
2222
)
2323

0 commit comments

Comments
 (0)