mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-12 23:01:40 +00:00
Version 0.9.2 (#2638)
This commit is contained in:
parent
e55cd6ea78
commit
ef7262a7a2
25
CHANGES.md
25
CHANGES.md
@ -1,5 +1,30 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## Dendrite 0.9.2 (2022-08-12)
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* Dendrite now supports history visibility on the `/sync`, `/messages` and `/context` endpoints
|
||||||
|
* It should now be possible to view the history of a room in more cases (as opposed to limiting scrollback to the join event or defaulting to the restrictive `"join"` visibility rule as before)
|
||||||
|
* The default room version for newly created rooms is now room version 9
|
||||||
|
* New admin endpoint `/_dendrite/admin/resetPassword/{userID}` has been added, which replaces the `-reset-password` flag in `create-account`
|
||||||
|
* The `create-account` binary now uses shared secret registration over HTTP to create new accounts, which fixes a number of problems with account data and push rules not being configured correctly for new accounts
|
||||||
|
* The internal HTTP APIs for polylith deployments have been refactored for correctness and consistency
|
||||||
|
* The federation API will now automatically clean up some EDUs that have failed to send within a certain period of time
|
||||||
|
* The `/hierarchy` endpoint will now return potentially joinable rooms (contributed by [texuf](https://github.com/texuf))
|
||||||
|
* The user directory will now show or hide users correctly
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
* Send-to-device messages should no longer be incorrectly duplicated in `/sync`
|
||||||
|
* The federation sender will no longer create unnecessary destination queues as a result of a logic error
|
||||||
|
* A bug where database migrations may not execute properly when upgrading from older versions has been fixed
|
||||||
|
* A crash when failing to update user account data has been fixed
|
||||||
|
* A race condition when generating notification counts has been fixed
|
||||||
|
* A race condition when setting up NATS has been fixed (contributed by [brianathere](https://github.com/brianathere))
|
||||||
|
* Stale cache data for membership lazy-loading is now correctly invalidated when doing a complete sync
|
||||||
|
* Data races within user-interactive authentication have been fixed (contributed by [tak-hntlabs](https://github.com/tak-hntlabs))
|
||||||
|
|
||||||
## Dendrite 0.9.1 (2022-08-03)
|
## Dendrite 0.9.1 (2022-08-03)
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
|
@ -17,7 +17,7 @@ var build string
|
|||||||
const (
|
const (
|
||||||
VersionMajor = 0
|
VersionMajor = 0
|
||||||
VersionMinor = 9
|
VersionMinor = 9
|
||||||
VersionPatch = 1
|
VersionPatch = 2
|
||||||
VersionTag = "" // example: "rc1"
|
VersionTag = "" // example: "rc1"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user