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

Commit 304acd7

Browse files
Version 0.9.6 (#2689)
Changelog and version bump.
1 parent 51d229b commit 304acd7

2 files changed

Lines changed: 21 additions & 1 deletion

File tree

CHANGES.md

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

3+
## Dendrite 0.9.6 (2022-09-01)
4+
5+
### Features
6+
7+
* The appservice API has been refactored for improved performance and stability
8+
* The appservice database has been deprecated, as the roomserver output stream is now used as the data source instead
9+
* The `generate-config` tool has been updated to support additional scenarios, i.e. for CI configuration generation and generating both monolith and polylith skeleton config files
10+
11+
### Fixes
12+
13+
* The username length check has been fixed on new account creation
14+
* The length of the `type`, `sender`, `state_key` and `room_id` fields in events are now verified by number of codepoints rather than bytes, fixing the "Cat Overflow" bug
15+
* UTF-16 surrogate handling in the canonical JSON implementation has been fixed
16+
* A race condition when starting the keyserver has been fixed
17+
* A race condition when configuring HTTP servers and routing at startup has been fixed
18+
* A bug where the incorrect limit was used for lazy-loading memberships has been fixed
19+
* The number of push notifications will now be sent to the push gateway
20+
* A missing index causing slow performance on the sync API send-to-device table has been added (contributed by [PiotrKozimor](https://github.com/PiotrKozimor))
21+
* Event auth will now correctly check for the existence of the `"creator"` field in create events
22+
323
## Dendrite 0.9.5 (2022-08-25)
424

525
### Fixes

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

0 commit comments

Comments
 (0)