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

Commit 87f028d

Browse files
authored
Version 0.13.6 (#3315)
1 parent 8f68f1f commit 87f028d

File tree

5 files changed

+26
-5
lines changed

5 files changed

+26
-5
lines changed

.github/workflows/k8s.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Create k3d cluster
6767
uses: nolar/setup-k3d-k3s@v1
6868
with:
69-
version: v1.21
69+
version: v1.28
7070
- name: Remove node taints
7171
run: |
7272
kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true

CHANGES.md

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

3+
## Dendrite 0.13.6 (2024-01-26)
4+
5+
Upgrading to this version is **highly** recommended, as it contains several QoL improvements.
6+
7+
### Fixes
8+
9+
- Use `AckExplicitPolicy` for JetStream consumers, so messages don't pile up in NATS
10+
- A rare panic when assigning a state key NID has been fixed
11+
- A rare panic when checking powerlevels has been fixed
12+
- Notary keys requests for all keys now work correctly
13+
- Spec compliance:
14+
- Return `M_INVALID_PARAM` when querying room aliases
15+
- Handle empty `from` parameter when requesting `/messages`
16+
- Add CORP headers on media endpoints
17+
- Remove `aliases` from `/publicRooms` responses
18+
- Allow `+` in MXIDs (Contributed by [RosstheRoss](https://github.com/RosstheRoss))
19+
- Fixes membership transitions from `knock` to `join` in `knock_restricted` rooms
20+
- Incremental syncs now batch querying events (Contributed by [recht](https://github.com/recht))
21+
- Move `/joined_members` back to the clientAPI/roomserver, which should make bridges happier again
22+
- Backfilling from other servers now only uses at max 100 events instead of potentially thousands
23+
324
## Dendrite 0.13.5 (2023-12-12)
425

526
Upgrading to this version is **highly** recommended, as it fixes several long-standing bugs in

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.13.6"
4-
appVersion: "0.13.5"
3+
version: "0.13.7"
4+
appVersion: "0.13.6"
55
description: Dendrite Matrix Homeserver
66
type: application
77
keywords:

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.13.6](https://img.shields.io/badge/Version-0.13.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.13.5](https://img.shields.io/badge/AppVersion-0.13.5-informational?style=flat-square)
4+
![Version: 0.13.7](https://img.shields.io/badge/Version-0.13.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.13.6](https://img.shields.io/badge/AppVersion-0.13.6-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 = 13
21-
VersionPatch = 5
21+
VersionPatch = 6
2222
VersionTag = "" // example: "rc1"
2323

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

0 commit comments

Comments
 (0)