mirror of
https://github.com/matrix-org/dendrite
synced 2024-10-31 21:19:04 +01:00
parent
0ddfb0cad4
commit
f40e280327
2 changed files with 22 additions and 1 deletions
21
CHANGES.md
21
CHANGES.md
|
@ -1,5 +1,26 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## Dendrite 0.9.9 (2022-09-22)
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* 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
|
||||||
|
* This should reduce the amount of time spent on TLS handshakes and often speed up requests to remote servers
|
||||||
|
* This new behaviour can be disabled with the `federation_api.disable_http_keepalives` option if needed
|
||||||
|
* A number of dependencies have been updated
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
* 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
|
||||||
|
* Event auth now correctly parses the `join_authorised_via_users_server` field in the membership event content
|
||||||
|
* Database migrations should no longer produce unique constraint errors at Dendrite startup
|
||||||
|
* The `origin` of device list updates should now be populated correctly
|
||||||
|
* Send-to-device messages will no longer be dropped if we fail to publish them to specific devices
|
||||||
|
* The roomserver query to find state after events will now always resolve state if there are multiple prev events
|
||||||
|
* The roomserver will now return no memberships if querying history visibility for an event which has no state snapshot
|
||||||
|
* The device list updater will now mark a device list as stale if a requesting device ID is not known
|
||||||
|
* Transactions sent to appservices should no longer have accidental duplicated transaction IDs (contributed by [tak-hntlabs](https://github.com/tak-hntlabs))
|
||||||
|
|
||||||
## Dendrite 0.9.8 (2022-09-12)
|
## Dendrite 0.9.8 (2022-09-12)
|
||||||
|
|
||||||
### Important
|
### Important
|
||||||
|
|
|
@ -17,7 +17,7 @@ var build string
|
||||||
const (
|
const (
|
||||||
VersionMajor = 0
|
VersionMajor = 0
|
||||||
VersionMinor = 9
|
VersionMinor = 9
|
||||||
VersionPatch = 8
|
VersionPatch = 9
|
||||||
VersionTag = "" // example: "rc1"
|
VersionTag = "" // example: "rc1"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue