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

Commit f1b8df0

Browse files
Version 0.10.2 (#2778)
Changelog and version bump.
1 parent 1ca3f3e commit f1b8df0

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGES.md

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

3+
## Dendrite 0.10.2 (2022-10-07)
4+
5+
### Features
6+
7+
* Dendrite will now fail to start if there is an obvious problem with the configured `max_open_conns` when using PostgreSQL database backends, since this can lead to instability and performance issues
8+
* More information on this is available [in the documentation](https://matrix-org.github.io/dendrite/installation/start/optimisation#postgresql-connection-limit)
9+
* Unnecessary/empty fields will no longer be sent in `/sync` responses
10+
* It is now possible to configure `old_private_keys` from previous Matrix installations on the same domain if only public key is known, to make it easier to expire old keys correctly
11+
* You can configure either just the `private_key` path, or you can supply both the `public_key` and `key_id`
12+
13+
### Fixes
14+
15+
* The sync transaction behaviour has been modified further so that errors in one stream should not propagate to other streams unnecessarily
16+
* Rooms should now be classified as DM rooms correctly by passing through `is_direct` and unsigned hints
17+
* A bug which caused marking device lists as stale to consume lots of CPU has been fixed
18+
* Users accepting invites should no longer cause unnecessary federated joins if there are already other local users in the room
19+
* The sync API state range queries have been optimised by adding missing indexes
20+
* It should now be possible to configure non-English languages for full-text search in `search.language`
21+
* The roomserver will no longer attempt to perform federated requests to the local server when trying to fetch missing events
22+
* The `/keys/upload` endpoint will now always return the `one_time_keys_counts`, which may help with E2EE reliability
23+
* The sync API will now retrieve the latest stream position before processing each stream rather than at the beginning of the request, to hopefully reduce the number of round-trips to `/sync`
24+
325
## Dendrite 0.10.1 (2022-09-30)
426

527
### Features

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 = 10
20-
VersionPatch = 1
20+
VersionPatch = 2
2121
VersionTag = "" // example: "rc1"
2222
)
2323

0 commit comments

Comments
 (0)