What changed, and why it matters
This commit simply updates the version of a Docker container image used for building and testing the Jade firmware. It changes three configuration files to point from one published image hash to another. There is no code change, no disclosed security fix, and no evidence of a vulnerability in the commit itself.
No immediate security action is required based on this commit alone. If the builder image update was security-related, the project should document it in a changelog or security advisory and verify the new image hash against a trusted build.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff updates the pinned SHA256 digest of the blockstream/jade_builder Docker image in .gitlab-ci.yml, Dockerfile.qemu, and docker-compose.yml. This is a routine dependency/container refresh. The commit message and diff provide no information about what changed inside the builder image or whether the update addresses any security issue.
Changed components
.gitlab-ci.ymlDockerfile.qemudocker-compose.ymlInspect captured patch +3 / −3
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6e26063..173bfa2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,7 +14,7 @@ stages:
- build_diy
- docker_build
-image: blockstream/jade_builder@sha256:f0be8979a85a99c481ffdad0040822698f1a1acba773574f05b177becb796d2f
+image: blockstream/jade_builder@sha256:9f98cf9a03b6b98fcdf70cf84569304e85842452f2a3bdc5de7d8128da208013
include:
- gitlab/prod_fw.yml
diff --git a/Dockerfile.qemu b/Dockerfile.qemu
index cea28c8..3800483 100644
--- a/Dockerfile.qemu
+++ b/Dockerfile.qemu
@@ -1,4 +1,4 @@
-FROM blockstream/jade_builder@sha256:f0be8979a85a99c481ffdad0040822698f1a1acba773574f05b177becb796d2f
+FROM blockstream/jade_builder@sha256:9f98cf9a03b6b98fcdf70cf84569304e85842452f2a3bdc5de7d8128da208013
ARG QEMU_CONFIG_ARGS="--dev --ci --psram"
ARG QEMU_GDB=""
diff --git a/docker-compose.yml b/docker-compose.yml
index 819853f..592c77d 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,6 +1,6 @@
services:
dev:
- image: blockstream/jade_builder@sha256:f0be8979a85a99c481ffdad0040822698f1a1acba773574f05b177becb796d2f
+ image: blockstream/jade_builder@sha256:9f98cf9a03b6b98fcdf70cf84569304e85842452f2a3bdc5de7d8128da208013
volumes:
- .:/host/jade/
- /dev/serial/by-id:/dev/serial/by-id
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.