Skip to content

Commit 40bef6a

Browse files
authored
Version v0.14.1 (#3501)
1 parent e9cc37a commit 40bef6a

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

CHANGES.md

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

3+
## Dendrite 0.14.1 (2025-01-16)
4+
5+
### ⚠ Important
6+
7+
This is a security release, [gomatrixserverlib](https://github.com/matrix-org/gomatrixserverlib) was vulnerable to
8+
server-side request forgery, serving content from a private network it can access, under certain conditions.
9+
10+
Upgrading to this version is **highly** recommended.
11+
12+
### Security
13+
14+
- Support for blocking access to certain networks, fixing [CVE-2024-52594](https://www.cve.org/CVERecord?id=CVE-2024-52594) and
15+
[GHSA-4ff6-858j-r822](https://github.com/matrix-org/gomatrixserverlib/security/advisories/GHSA-4ff6-858j-r822)
16+
17+
### Fixes
18+
19+
- Speed-up loading server ACLs on startup, this is mostly noticeable on larger instances with many rooms.
20+
321
## Dendrite 0.14.0 (2024-12-18)
422

523
This is the first release after forking matrix-org/dendrite, this repository is now licensed under AGPLv3.0.

helm/dendrite/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: dendrite
3-
version: "0.15.0"
4-
appVersion: "0.14.0"
3+
version: "0.15.1"
4+
appVersion: "0.14.1"
55
description: Dendrite Matrix Homeserver
66
type: application
77
icon: https://avatars.githubusercontent.com/u/8418310?s=48&v=4

helm/dendrite/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# dendrite
33

4-
![Version: 0.15.0](https://img.shields.io/badge/Version-0.15.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.14.0](https://img.shields.io/badge/AppVersion-0.14.0-informational?style=flat-square)
4+
![Version: 0.15.1](https://img.shields.io/badge/Version-0.15.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.14.1](https://img.shields.io/badge/AppVersion-0.14.1-informational?style=flat-square)
55
Dendrite Matrix Homeserver
66

77
Status: **NOT PRODUCTION READY**

internal/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var build string
1818
const (
1919
VersionMajor = 0
2020
VersionMinor = 14
21-
VersionPatch = 0
21+
VersionPatch = 1
2222
VersionTag = "" // example: "rc1"
2323

2424
gitRevLen = 7 // 7 matches the displayed characters on github.com

0 commit comments

Comments
 (0)