mirror of
https://github.com/element-hq/dendrite.git
synced 2025-09-13 12:52:24 +03:00
Changelog, bump version
This commit is contained in:
parent
a8d842bd05
commit
5ac48299bb
2 changed files with 28 additions and 2 deletions
26
CHANGES.md
26
CHANGES.md
|
@ -1,5 +1,31 @@
|
|||
# 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)
|
||||
|
||||
### Features
|
||||
|
|
|
@ -17,8 +17,8 @@ var build string
|
|||
|
||||
const (
|
||||
VersionMajor = 0
|
||||
VersionMinor = 13
|
||||
VersionPatch = 8
|
||||
VersionMinor = 14
|
||||
VersionPatch = 0
|
||||
VersionTag = "" // example: "rc1"
|
||||
|
||||
gitRevLen = 7 // 7 matches the displayed characters on github.com
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue