Skip to content

Commit 97d10f0

Browse files
committed
rtc experimantal features
1 parent 05a434a commit 97d10f0

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

charts/synapse/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
---
22
name: synapse
3-
version: 0.37.0
3+
version: 0.38.0

charts/synapse/templates/synapse-configmap.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -283,12 +283,19 @@ data:
283283
# MSC3266: Room summary API. Used for knocking over federation
284284
# MSC3266 allows to request a room summary of rooms you are not joined. The summary contains the room join rules.
285285
# We need that to decide if the user gets prompted with the option to knock ("Request to join call"), a cannot join error or the join view.
286-
msc3266:
287-
enabled: {{ $.Values.experimentalFeatures.msc3266.enabled }}
286+
msc3266_enabled: {{ $.Values.experimentalFeatures.msc3266.enabled }}
287+
{{- end }}
288+
{{- if $.Values.experimentalFeatures.msc4222.enabled }}
289+
# MSC4222: Needed for syncv2 state_after. Allows clients to correctly track room state
290+
msc4222_enabled: {{ $.Values.experimentalFeatures.msc4222.enabled }}
291+
{{- end }}
292+
{{- if $.Values.experimentalFeatures.msc4140.enabled }}
293+
# MSC4140: Delayed events are required for proper call participation signalling.
294+
# If disabled, you might get stuck calls in Matrix rooms.
295+
msc4140_enabled: {{ $.Values.experimentalFeatures.msc4140.enabled }}
288296
{{- end }}
289297
{{- if $.Values.experimentalFeatures.msc3967.enabled }}
290-
msc3967:
291-
enabled: true
298+
msc3967_enabled: true
292299
{{- end }}
293300
{{- end }}
294301
caches:

charts/synapse/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,10 @@ experimentalFeatures:
254254
account_management_url: NOT-CONFIGURED
255255
msc3266:
256256
enabled: false
257+
msc4222:
258+
enabled: false
259+
msc4140:
260+
enabled: false
257261

258262
ingress:
259263
secretName: ''

0 commit comments

Comments
 (0)