From 367bb2c641c5198df91045f1484b145c30d56196 Mon Sep 17 00:00:00 2001 From: John Coffey Date: Tue, 22 Sep 2026 11:55:25 -0700 Subject: [PATCH] Release 2026.9.22, and pin the cargo-chef base image The version macro drives the release tag and what the server reports. The builder's base image was the one image reference still floating on a tag. --- Dockerfile | 2 +- crates/types/src/branding.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7fb60d3..dd5a99c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM docker.io/lukemathwalker/cargo-chef:latest-rust-slim-trixie AS chef +FROM --platform=$BUILDPLATFORM docker.io/lukemathwalker/cargo-chef:latest-rust-slim-trixie@sha256:38dfdbf4fda95c516f873f33032e490baa988b75f7d83c7d12f788f770785b36 AS chef WORKDIR /build FROM --platform=$BUILDPLATFORM chef AS planner diff --git a/crates/types/src/branding.rs b/crates/types/src/branding.rs index 58a8371..8e6db76 100644 --- a/crates/types/src/branding.rs +++ b/crates/types/src/branding.rs @@ -71,7 +71,7 @@ pub fn env_var(name: &str) -> Result { #[macro_export] macro_rules! brand_version { () => { - "2026.9.20" + "2026.9.22" }; }