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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@

-->

# Relase 5.25 R2

## Release notes

* Changed: disabled the MLS by default in 5.25-R1 and release it as 5.25R2

# Relase 5.25 R1

## Release notes
Expand Down
1 change: 1 addition & 0 deletions changelog.d/2-wire-builds/5.25-mls-disabled
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed: disabled the MLS by default for 5.25-R1
4 changes: 2 additions & 2 deletions values/webapp/demo-values.example.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
replicaCount: 1
# image:
# tag: some-tag (only override if you want a newer/different version than what is in the chart)
image:
tag: 2026-06-08-production.0
config:
externalUrls:
backendRest: nginz-https.example.com
Expand Down
6 changes: 4 additions & 2 deletions values/webapp/prod-values.example.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
replicaCount: 3
# image:
# tag: some-tag (only override if you want a newer/different version than what is in the chart)
image:
tag: 2025-09-24-production.0
config:
externalUrls:
backendRest: nginz-https.example.com
Expand All @@ -11,6 +11,8 @@ config:
# See full list of available environment variables: https://github.com/wireapp/wire-web-config-default/blob/master/wire-webapp/.env.defaults
envVars:
APP_NAME: "Webapp"
FEATURE_USE_CORE_CRYPTO: "true"
MAX_API_VERSION: "12"
ENFORCE_HTTPS: "true"
FEATURE_CHECK_CONSENT: "false"
# Note: disabling showing the user creation is not the same thing as user creation being disabled.
Expand Down
4 changes: 2 additions & 2 deletions values/wire-server/demo-values.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ brig:
teamMemberWelcome: https://wire.example.com/download # change this
enableFederation: false # Keep false unless federation is explicitly configured
optSettings:
setEnableMLS: true # Enable for MLS protocol use
setEnableMLS: false # Enable for MLS protocol use
setFederationDomain: example.com # change this per host deployment
# Sync the domain with the 'host' variable in the sftd chart
# Comment the next line (by adding '#' before it) if conference calling is not used
Expand Down Expand Up @@ -199,7 +199,7 @@ galley:
status: disabled
config:
protocolToggleUsers: []
defaultProtocol: mls
defaultProtocol: proteus
allowedCipherSuites: [2]
defaultCipherSuite: 2
supportedProtocols: [proteus, mls]
Expand Down
4 changes: 2 additions & 2 deletions values/wire-server/prod-values.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ brig:
teamMemberWelcome: https://wire.example.com/download # change this
enableFederation: false # Keep false unless federation is explicitly configured
optSettings:
setEnableMLS: true # Enable for MLS protocol use
setEnableMLS: false # Enable for MLS protocol use
setFederationDomain: example.com # change this per host deployment
# Sync the domain with the 'host' variable in the sftd chart
# Comment the next line (by adding '#' before it) if conference calling is not used
Expand Down Expand Up @@ -199,7 +199,7 @@ galley:
status: disabled
config:
protocolToggleUsers: []
defaultProtocol: mls
defaultProtocol: proteus
allowedCipherSuites: [2]
defaultCipherSuite: 2
supportedProtocols: [proteus, mls]
Expand Down
Loading