aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTill <2353100+S7evinK@users.noreply.github.com>2024-12-18 12:53:54 +0100
committerGitHub <noreply@github.com>2024-12-18 12:53:54 +0100
commit556a5a9edc9c3091470c7c2abebede3a9c25cb1e (patch)
treefea2cb69526dd36ed8fbadebcd7d8d6310a6594f
parent2f055ae8c9304609611aafba0f718cdf4b79195b (diff)
Version 0.14.0 (#3468)v0.14.0helm-dendrite-0.15.0
-rw-r--r--CHANGES.md25
-rw-r--r--helm/dendrite/Chart.yaml4
-rw-r--r--helm/dendrite/README.md8
-rw-r--r--internal/version.go4
4 files changed, 34 insertions, 7 deletions
diff --git a/CHANGES.md b/CHANGES.md
index c2c1a73f..7d69459e 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,30 @@
# 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.
+ - Also, rooms which have been utterly broken may take some time to reconcile, it may be worth to leave, purge and rejoin such rooms.
+
## Dendrite 0.13.8 (2024-09-13)
### Features
diff --git a/helm/dendrite/Chart.yaml b/helm/dendrite/Chart.yaml
index 6f4a9825..9d932462 100644
--- a/helm/dendrite/Chart.yaml
+++ b/helm/dendrite/Chart.yaml
@@ -1,7 +1,7 @@
apiVersion: v2
name: dendrite
-version: "0.14.6"
-appVersion: "0.13.8"
+version: "0.15.0"
+appVersion: "0.14.0"
description: Dendrite Matrix Homeserver
type: application
icon: https://avatars.githubusercontent.com/u/8418310?s=48&v=4
diff --git a/helm/dendrite/README.md b/helm/dendrite/README.md
index 9973c90b..fd90869b 100644
--- a/helm/dendrite/README.md
+++ b/helm/dendrite/README.md
@@ -1,7 +1,7 @@
# dendrite
-![Version: 0.14.4](https://img.shields.io/badge/Version-0.14.4-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)
+![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)
Dendrite Matrix Homeserver
Status: **NOT PRODUCTION READY**
@@ -59,11 +59,15 @@ Create a folder `appservices` and place your configurations in there. The confi
| persistence.search.existingClaim | string | `""` | Use an existing volume claim for the fulltext search index |
| persistence.search.capacity | string | `"1Gi"` | PVC Storage Request for the search volume |
| persistence.search.storageClass | string | `nil` | The storage class to use for volume claims. Defaults to persistence.storageClass If defined, storageClassName: <storageClass> If set to "-", storageClassName: "", which disables dynamic provisioning If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner. (gp2 on AWS, standard on GKE, AWS & OpenStack) |
+| extraArgs | list | `[]` | Add additional arguments to the dendrite command |
| extraVolumes | list | `[]` | Add additional volumes to the Dendrite Pod |
| extraVolumeMounts | list | `[]` | Configure additional mount points volumes in the Dendrite Pod |
| strategy.type | string | `"Recreate"` | Strategy to use for rolling updates (e.g. Recreate, RollingUpdate) If you are using ReadWriteOnce volumes, you should probably use Recreate |
| strategy.rollingUpdate.maxUnavailable | string | `"25%"` | Maximum number of pods that can be unavailable during the update process |
| strategy.rollingUpdate.maxSurge | string | `"25%"` | Maximum number of pods that can be scheduled above the desired number of pods |
+| nodeSelector | object | `{}` | Node selector configuration |
+| tolerations | object | `{}` | Tolerations configuration |
+| affinity | object | `{}` | Affinity configuration |
| dendrite_config.version | int | `2` | |
| dendrite_config.global.server_name | string | `""` | **REQUIRED** Servername for this Dendrite deployment. |
| dendrite_config.global.private_key | string | `"/etc/dendrite/secrets/signing.key"` | The private key to use. (**NOTE**: This is overriden in Helm) |
@@ -190,5 +194,3 @@ grafana:
```
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`)
-----------------------------------------------
-Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)
diff --git a/internal/version.go b/internal/version.go
index 6e5a5f94..d262146b 100644
--- a/internal/version.go
+++ b/internal/version.go
@@ -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