mirror of
https://github.com/element-hq/dendrite.git
synced 2025-03-14 14:15:35 +00:00
Version v0.14.1 (#3501)
This commit is contained in:
parent
e9cc37ac52
commit
40bef6a423
4 changed files with 22 additions and 4 deletions
18
CHANGES.md
18
CHANGES.md
|
@ -1,5 +1,23 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## Dendrite 0.14.1 (2025-01-16)
|
||||||
|
|
||||||
|
### ⚠ Important
|
||||||
|
|
||||||
|
This is a security release, [gomatrixserverlib](https://github.com/matrix-org/gomatrixserverlib) was vulnerable to
|
||||||
|
server-side request forgery, serving content from a private network it can access, under certain conditions.
|
||||||
|
|
||||||
|
Upgrading to this version is **highly** recommended.
|
||||||
|
|
||||||
|
### Security
|
||||||
|
|
||||||
|
- Support for blocking access to certain networks, fixing [CVE-2024-52594](https://www.cve.org/CVERecord?id=CVE-2024-52594) and
|
||||||
|
[GHSA-4ff6-858j-r822](https://github.com/matrix-org/gomatrixserverlib/security/advisories/GHSA-4ff6-858j-r822)
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- Speed-up loading server ACLs on startup, this is mostly noticeable on larger instances with many rooms.
|
||||||
|
|
||||||
## Dendrite 0.14.0 (2024-12-18)
|
## 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.
|
This is the first release after forking matrix-org/dendrite, this repository is now licensed under AGPLv3.0.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: dendrite
|
name: dendrite
|
||||||
version: "0.15.0"
|
version: "0.15.1"
|
||||||
appVersion: "0.14.0"
|
appVersion: "0.14.1"
|
||||||
description: Dendrite Matrix Homeserver
|
description: Dendrite Matrix Homeserver
|
||||||
type: application
|
type: application
|
||||||
icon: https://avatars.githubusercontent.com/u/8418310?s=48&v=4
|
icon: https://avatars.githubusercontent.com/u/8418310?s=48&v=4
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
# dendrite
|
# dendrite
|
||||||
|
|
||||||
  
|
  
|
||||||
Dendrite Matrix Homeserver
|
Dendrite Matrix Homeserver
|
||||||
|
|
||||||
Status: **NOT PRODUCTION READY**
|
Status: **NOT PRODUCTION READY**
|
||||||
|
|
|
@ -18,7 +18,7 @@ var build string
|
||||||
const (
|
const (
|
||||||
VersionMajor = 0
|
VersionMajor = 0
|
||||||
VersionMinor = 14
|
VersionMinor = 14
|
||||||
VersionPatch = 0
|
VersionPatch = 1
|
||||||
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
|
||||||
|
|
Loading…
Add table
Reference in a new issue