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

Commit 763c79f

Browse files
authored
Version 0.13.8 (#3421)
1 parent ed6d964 commit 763c79f

File tree

4 files changed

+25
-9
lines changed

4 files changed

+25
-9
lines changed

CHANGES.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,28 @@
11
# Changelog
22

3-
## Dendrite 0.xx.x
3+
## Dendrite 0.13.8 (2024-09-13)
44

5-
### Other
5+
### Features
6+
7+
- The required Go version to build Dendrite is now 1.21
8+
- Support for authenticated media ([MSC3916](https://github.com/matrix-org/matrix-spec-proposals/pull/3916)) has been added
9+
- NATS can now connect to servers requiring authentication (contributed by [paigeadelethompson](https://github.com/paigeadelethompson))
10+
- Updated dependencies
11+
- Internal NATS Server has been updated from v2.10.7 to v2.10.20 (contributed by [neilalexander](https://github.com/neilalexander))
12+
13+
### Fixes
614

7-
- Bump required Go version to 1.21
15+
- Fix parsing `?ts` query param (contributed by [tulir](https://github.com/tulir))
16+
- Don't query the database if we could fetch all keys from cache
17+
- Fix media DB potentially leaking connections
18+
- Fixed a bug where we would return that an account exists if we encountered an unhandled error case
19+
- Fixed an issues where edited message could appear twice in search results (contributed by [adnull](https://github.com/adnull))
20+
- Outgoing threepid HTTP requests now correctly close the returned body (contributed by [ testwill](https://github.com/testwill))
21+
- Presence conflicts are handled better, reducing the amount of outgoing federation requests (contributed by [jjj333-p](https://github.com/jjj333-p))
22+
- Internal NATS now uses `SyncAlways` which should improve resilience against crashes (contributed by [neilalexander](https://github.com/neilalexander))
23+
- Whitespaces in the `X-Matrix` header are now handled correctly
24+
- `/.well-known/matrix/server` lookups now timeout after 30 seconds
25+
- Purging rooms has seen a huge speed-up
826

927
## Dendrite 0.13.7 (2024-04-09)
1028

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.14.1"
4-
appVersion: "0.13.7"
3+
version: "0.14.2"
4+
appVersion: "0.13.8"
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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# dendrite
33

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

77
Status: **NOT PRODUCTION READY**
@@ -189,5 +189,3 @@ grafana:
189189
```
190190
PS: The label `release=kube-prometheus-stack` is setup with the helmchart of the Prometheus Operator. For Grafana Dashboards it may be necessary to enable scanning in the correct namespaces (or ALL), enabled by `sidecar.dashboards.searchNamespace` in [Helmchart of grafana](https://artifacthub.io/packages/helm/grafana/grafana) (which is part of PrometheusOperator, so `grafana.sidecar.dashboards.searchNamespace`)
191191

192-
----------------------------------------------
193-
Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)

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 = 13
21-
VersionPatch = 7
21+
VersionPatch = 8
2222
VersionTag = "" // example: "rc1"
2323

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

0 commit comments

Comments
 (0)