From 6a4c3b54ec75322e282ebbec80d08bb9a7a7daf4 Mon Sep 17 00:00:00 2001 From: Cuong Tran Date: Sun, 20 Sep 2026 23:57:50 +0200 Subject: [PATCH 1/5] WPB-28608 v5.33.0 upgrade notes --- .../config-references/wire-server-5.33.0.md | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/how-to/upgrade/config-references/wire-server-5.33.0.md diff --git a/src/how-to/upgrade/config-references/wire-server-5.33.0.md b/src/how-to/upgrade/config-references/wire-server-5.33.0.md new file mode 100644 index 0000000..ec5bde4 --- /dev/null +++ b/src/how-to/upgrade/config-references/wire-server-5.33.0.md @@ -0,0 +1,32 @@ +# Wire-Server `5.33.0` release + +For details, see the [release changelog](https://github.com/wireapp/wire-server/releases) on the wire-server repo. + +Artifact: +[`wire-server-deploy-static-4a7c9ee5d6f0cd7bf5ef76b72324b61028176f52.tgz`](https://s3-eu-west-1.amazonaws.com/public.wire.com/artifacts/wire-server-deploy-static-4a7c9ee5d6f0cd7bf5ef76b72324b61028176f52.tgz) + +## Heads up + +Coming from `5.32.0`. + +No known bugs at this release. + +## What must change + +No changes are required for this release. + +## Recommended cleanup (not strictly required) + +If your custom values still contain duplicate `postgresMigration` entries in Brig or background-worker, remove them. Galley is the single source of truth for these settings. + +## For users of the full wire-server-deploy-static deployment package + +NOTE: Each upgrade in this series re-runs `setup-offline-sources`, which copies the new release's binaries, container images, and debs into `/opt/assets` on the assethost. After a few versions, the assethost runs out of space and the playbook fails with `no space left on device`. + +When that happens, SSH into the **assethost** (not the adminhost) and clear it: + +```bash +sudo rm -rvf /opt/assets +``` + +Then re-run `setup-offline-sources` from the adminhost. From fed3b4833efb8ce9772cead343ec4c982fa796b0 Mon Sep 17 00:00:00 2001 From: Cuong Tran Date: Mon, 21 Sep 2026 17:37:04 +0200 Subject: [PATCH 2/5] WPB-28608 v5.33.0 upgrade notes - address review feedback --- src/how-to/upgrade/README.md | 1 + src/how-to/upgrade/config-references/wire-server-5.33.0.md | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/how-to/upgrade/README.md b/src/how-to/upgrade/README.md index 5003bd6..3b1aac9 100644 --- a/src/how-to/upgrade/README.md +++ b/src/how-to/upgrade/README.md @@ -19,3 +19,4 @@ Complete documentation for upgrading `wire-server` deployments. - [Wire Server 5.29.0](config-references/wire-server-5.29.0.md) - [Wire Server 5.30.0](config-references/wire-server-5.30.0.md) - [Wire Server 5.32.0](config-references/wire-server-5.32.0.md) + - [Wire Server 5.32.0](config-references/wire-server-5.33.0.md) \ No newline at end of file diff --git a/src/how-to/upgrade/config-references/wire-server-5.33.0.md b/src/how-to/upgrade/config-references/wire-server-5.33.0.md index ec5bde4..4fc405b 100644 --- a/src/how-to/upgrade/config-references/wire-server-5.33.0.md +++ b/src/how-to/upgrade/config-references/wire-server-5.33.0.md @@ -1,14 +1,18 @@ # Wire-Server `5.33.0` release -For details, see the [release changelog](https://github.com/wireapp/wire-server/releases) on the wire-server repo. +For details, see the [release changelog](https://github.com/wireapp/wire-server/releases/tag/v2026-06-12) on the wire-server repo. Artifact: [`wire-server-deploy-static-4a7c9ee5d6f0cd7bf5ef76b72324b61028176f52.tgz`](https://s3-eu-west-1.amazonaws.com/public.wire.com/artifacts/wire-server-deploy-static-4a7c9ee5d6f0cd7bf5ef76b72324b61028176f52.tgz) +Build manifest: [build.json](https://github.com/wireapp/wire-builds/blob/pinned-offline-5.33.0/build.json) + ## Heads up Coming from `5.32.0`. +The background-worker migration timeout configuration was renamed from migrateConversationsOptions to migrationOptions. The old key is no longer read, so update any custom Helm overrides to the new name to avoid unexpected defaults. + No known bugs at this release. ## What must change From e154d7c1de8c268425d98a722d99e2149909a156 Mon Sep 17 00:00:00 2001 From: Cuong Tran Date: Mon, 21 Sep 2026 17:57:50 +0200 Subject: [PATCH 3/5] WPB-28608 v5.33.0 upgrade notes - remote update on README.md --- src/how-to/upgrade/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/how-to/upgrade/README.md b/src/how-to/upgrade/README.md index 3b1aac9..048bf99 100644 --- a/src/how-to/upgrade/README.md +++ b/src/how-to/upgrade/README.md @@ -18,5 +18,4 @@ Complete documentation for upgrading `wire-server` deployments. - [Wire Server 5.28.0](config-references/wire-server-5.28.0.md) - [Wire Server 5.29.0](config-references/wire-server-5.29.0.md) - [Wire Server 5.30.0](config-references/wire-server-5.30.0.md) - - [Wire Server 5.32.0](config-references/wire-server-5.32.0.md) - - [Wire Server 5.32.0](config-references/wire-server-5.33.0.md) \ No newline at end of file + - [Wire Server 5.32.0](config-references/wire-server-5.32.0.md) \ No newline at end of file From 14980af770c50e0c8d766195998ea39039442cc2 Mon Sep 17 00:00:00 2001 From: Cuong Tran Date: Mon, 21 Sep 2026 18:00:18 +0200 Subject: [PATCH 4/5] WPB-28608 v5.33.0 upgrade notes - address review feedback --- .../upgrade/config-references/wire-server-5.33.0.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/how-to/upgrade/config-references/wire-server-5.33.0.md b/src/how-to/upgrade/config-references/wire-server-5.33.0.md index 4fc405b..a078017 100644 --- a/src/how-to/upgrade/config-references/wire-server-5.33.0.md +++ b/src/how-to/upgrade/config-references/wire-server-5.33.0.md @@ -22,15 +22,3 @@ No changes are required for this release. ## Recommended cleanup (not strictly required) If your custom values still contain duplicate `postgresMigration` entries in Brig or background-worker, remove them. Galley is the single source of truth for these settings. - -## For users of the full wire-server-deploy-static deployment package - -NOTE: Each upgrade in this series re-runs `setup-offline-sources`, which copies the new release's binaries, container images, and debs into `/opt/assets` on the assethost. After a few versions, the assethost runs out of space and the playbook fails with `no space left on device`. - -When that happens, SSH into the **assethost** (not the adminhost) and clear it: - -```bash -sudo rm -rvf /opt/assets -``` - -Then re-run `setup-offline-sources` from the adminhost. From 28e9e3d8c1b3d6dee809d46bd3281332b50731e4 Mon Sep 17 00:00:00 2001 From: Cuong Tran Date: Mon, 21 Sep 2026 18:04:42 +0200 Subject: [PATCH 5/5] WPB-28608 v5.33.0 upgrade notes - fix github raw link --- src/how-to/upgrade/config-references/wire-server-5.33.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/how-to/upgrade/config-references/wire-server-5.33.0.md b/src/how-to/upgrade/config-references/wire-server-5.33.0.md index a078017..e559437 100644 --- a/src/how-to/upgrade/config-references/wire-server-5.33.0.md +++ b/src/how-to/upgrade/config-references/wire-server-5.33.0.md @@ -5,7 +5,7 @@ For details, see the [release changelog](https://github.com/wireapp/wire-server/ Artifact: [`wire-server-deploy-static-4a7c9ee5d6f0cd7bf5ef76b72324b61028176f52.tgz`](https://s3-eu-west-1.amazonaws.com/public.wire.com/artifacts/wire-server-deploy-static-4a7c9ee5d6f0cd7bf5ef76b72324b61028176f52.tgz) -Build manifest: [build.json](https://github.com/wireapp/wire-builds/blob/pinned-offline-5.33.0/build.json) +Build manifest: [build.json](https://raw.githubusercontent.com/wireapp/wire-builds/refs/heads/pinned-offline-5.33.0/build.json) ## Heads up