From 8a54dc6ffae473bc742c5b960891492dd53d8c47 Mon Sep 17 00:00:00 2001 From: "tropibot[bot]" <285933081+tropibot[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 12:47:43 +0000 Subject: [PATCH 1/3] chore: bump aztec-packages upstream to v5.0.0 --- dappnode_package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dappnode_package.json b/dappnode_package.json index 4d15a6b..4abe216 100644 --- a/dappnode_package.json +++ b/dappnode_package.json @@ -50,7 +50,7 @@ { "arg": "UPSTREAM_VERSION", "repo": "AztecProtocol/aztec-packages", - "version": "v4.3.1" + "version": "v5.0.0" } ] } From cc64ea09065b96c63bb951fb20df83bf6d214a94 Mon Sep 17 00:00:00 2001 From: "tropibot[bot]" <285933081+tropibot[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 12:47:44 +0000 Subject: [PATCH 2/3] chore: set UPSTREAM_VERSION to v5.0.0 --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 768ea0c..35fbd90 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,7 +4,7 @@ services: build: context: sequencer args: - UPSTREAM_VERSION: v4.3.1 + UPSTREAM_VERSION: v5.0.0 DATA_DIRECTORY: /data volumes: - sequencer-data:/data From 54cc55cc05c61e86c9814943bf9a3464eb81f19a Mon Sep 17 00:00:00 2001 From: Amin Sammara Date: Tue, 14 Jul 2026 16:55:37 -0400 Subject: [PATCH 3/3] fix: drop --archiver flag removed in v5.0.0 The archiver is now embedded in --node and is no longer a separate CLI flag. Passing --archiver causes the node to fail on startup with v5. --- sequencer/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sequencer/entrypoint.sh b/sequencer/entrypoint.sh index 2c251a1..e3232a6 100644 --- a/sequencer/entrypoint.sh +++ b/sequencer/entrypoint.sh @@ -18,7 +18,7 @@ FLAGS=( ) # — Append fixed mode flags -FLAGS+=(--archiver --node --sequencer) +FLAGS+=(--node --sequencer) # — Append any extra options provided by the user in EXTRA_OPTS # If EXTRA_OPTS is set, split it the same way the shell would and append