From 0f78a685f82edfa28c0cae11932431e4059fe660 Mon Sep 17 00:00:00 2001 From: eriknordmark Date: Fri, 15 May 2026 14:49:40 +0200 Subject: [PATCH] defaults: bump DefaultAdamTag from 0.0.75 to 0.0.79 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Picks up lf-edge/adam#155, which brings the /register handler in line with the eve-api spec (APIv2.md §/register, lines 134-160): cert/serial combinations that verify cryptographically but are not in the controller's pre-registration set now return 403 Forbidden rather than 401 Unauthorized. EVE's pkg/pillar/cmd/client already maps 403 to LedBlinkOnboardingFailureNotFound, so the longstanding eve-api gap on the controller side is now closed. Pinning a specific release rather than the rolling `snapshot` tag keeps the version requirement expressible — if a future eden change needs adam ≥ x.y.z, bumping the constant is the natural way to make that explicit, and stale cached `snapshot` images on contributor machines cannot silently regress. Override at config time remains supported via `eden config set default --key=adam.tag --value=`. Signed-off-by: eriknordmark Co-Authored-By: Claude Opus 4.7 (1M context) --- pkg/defaults/defaults.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/defaults/defaults.go b/pkg/defaults/defaults.go index af33c761e..ababb4ffe 100644 --- a/pkg/defaults/defaults.go +++ b/pkg/defaults/defaults.go @@ -59,7 +59,7 @@ const ( //tags, versions, repos DefaultEVETag = "16.6.0" // DefaultEVETag tag for EVE image - DefaultAdamTag = "0.0.75" + DefaultAdamTag = "0.0.79" DefaultRedisTag = "7" DefaultRegistryTag = "2.7" DefaultProcTag = "83cfe07"