Changelog, bump version

This commit is contained in:
Till Faelligen 2024-12-18 08:48:59 +01:00
parent a8d842bd05
commit 5ac48299bb
No known key found for this signature in database
GPG key ID: 3DF82D8AB9211D4E
2 changed files with 28 additions and 2 deletions

View file

@ -1,5 +1,31 @@
# Changelog # Changelog
## Dendrite 0.14.0 (2024-12-18)
This is the first release after forking matrix-org/dendrite, this repository is now licensed under AGPLv3.0.
Upgrading to this version is **highly** recommended, as it fixes several long-standing bugs which could lead to state resets.
It also improves performance and memory usage.
### Features
- The required Go version to build Dendrite is now 1.22
- Support for listening and connecting to I2P and Onion services was added (contributed by [eyedeekay](https://github.com/eyedeekay))
- Add via parameter on join room requests as per [MSC4156](https://github.com/matrix-org/matrix-spec-proposals/pull/MSC4156) (contributed by [Johennes](https://github.com/Johennes))
- Support for fallback keys has been added (contributed by [neilalexander](https://github.com/neilalexander))
- Dendrite now supports [MSC4225](https://github.com/matrix-org/matrix-spec-proposals/pull/4225)
- Updated dependencies
- Internal NATS Server has been updated from v2.10.20 to v2.10.23 (contributed by [neilalexander](https://github.com/neilalexander))
- gomatrixserverlib has been updated, which includes several performance improvements
### Fixes
- Correctly respond to `OPTIONS` requests on authed media endpoints (contributed by [arenekosreal](https://github.com/arenekosreal))
- A long-standing bug which could lead to state resets has been fixed (contributed by [neilalexander](https://github.com/neilalexander))
- Note: While state resets should happen less frequently, they are still part of the Matrix protocol, so they are not entirely fixed
###
## Dendrite 0.13.8 (2024-09-13) ## Dendrite 0.13.8 (2024-09-13)
### Features ### Features

View file

@ -17,8 +17,8 @@ var build string
const ( const (
VersionMajor = 0 VersionMajor = 0
VersionMinor = 13 VersionMinor = 14
VersionPatch = 8 VersionPatch = 0
VersionTag = "" // example: "rc1" VersionTag = "" // example: "rc1"
gitRevLen = 7 // 7 matches the displayed characters on github.com gitRevLen = 7 // 7 matches the displayed characters on github.com