Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ matrix_authentication_service:
)
) }}
endpoint: http://{{ $root.Release.Name }}-matrix-authentication-service.{{ $root.Release.Namespace }}.svc.{{ $root.Values.clusterDomain }}:8080/
force_http2: true
{{- end }}

{{- if or (include "element-io.matrix-authentication-service.readyToHandleAuth" (dict "root" $root)) $root.Values.matrixRTC.enabled $root.Values.hookshot.enabled }}
Expand Down
2 changes: 1 addition & 1 deletion charts/matrix-stack/source/synapse.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ logging:
## levelOverrides:
## synapse.util.caches.lrucache: WARNING
levelOverrides: {}
{{- sub_schema_values.image(registry='oci.element.io', repository='synapse', tag='v1.150.0') }}
{{- sub_schema_values.image(registry='oci.element.io', repository='synapse', tag='v1.151.0rc1') }}
{{- sub_schema_values.extraVolumes("Synapse", with_context=true) }}
{{- sub_schema_values.extraVolumeMounts("Synapse", with_context=true) }}
{{- sub_schema_values.extraInitContainers("Synapse") }}
Expand Down
2 changes: 1 addition & 1 deletion charts/matrix-stack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4935,7 +4935,7 @@ synapse:

## The tag of the container image to use.
## One of tag or digest must be provided.
tag: "v1.150.0"
tag: "v1.151.0rc1"

## Container digest to use. Used to pull the image instead of the image tag if set
## The tag will still be set as the app.kubernetes.io/version label
Expand Down
3 changes: 3 additions & 0 deletions newsfragments/1207.changed.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Use HTTP2 for Synapse to Matrix Authentication Service traffic.

This reduces the overhead of token introspection, as Synapse will be able to use a single HTTP/2 connection to Matrix Authentication Service.
9 changes: 9 additions & 0 deletions newsfragments/1207.changed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Upgrade Synapse to v1.151.0.

Highlights:
- Add stable support for [MSC4284](https://github.com/matrix-org/matrix-spec-proposals/pull/4284) Policy Servers
- Update and stabilize support for [MSC2666](https://github.com/matrix-org/matrix-spec-proposals/pull/2666): Get rooms in common with another user
- Allow Synapse to start up even when discovery fails for an OpenID Connect provider

Full Changelogs:
- [v1.151.0](https://github.com/element-hq/synapse/releases/tag/v1.151.0)
Loading