File tree Expand file tree Collapse file tree 3 files changed +16
-5
lines changed
Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 11---
22name : synapse
3- version : 0.37 .0
3+ version : 0.38 .0
Original file line number Diff line number Diff 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:
Original file line number Diff line number Diff 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
258262ingress :
259263 secretName : ' '
You can’t perform that action at this time.
0 commit comments