From 3e0e0e1b6295cda9d3363c0622fbc3ac265c8f5a Mon Sep 17 00:00:00 2001 From: dydx <25685+dydx@users.noreply.github.com> Date: Fri, 1 Aug 2025 04:29:03 +0000 Subject: [PATCH] Update KOTS image dependency tags --- .image.env | 4 ++-- Makefile | 2 +- migrations/Makefile | 2 +- pkg/image/constants.go | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.image.env b/.image.env index fed4a898ab..6c9a68aa6b 100644 --- a/.image.env +++ b/.image.env @@ -2,7 +2,7 @@ # most recent tag is interpolated from the source repository and used to generate a fully qualified image # name. MINIO_TAG='0.20250723.155402-r0' -RQLITE_TAG='8.42.0-r0' +RQLITE_TAG='8.43.0-r0' DEX_TAG='2.43.1-r3' -SCHEMAHERO_TAG='0.21.0' +SCHEMAHERO_TAG='0.22.0' LVP_TAG='0.6.10' \ No newline at end of file diff --git a/Makefile b/Makefile index a3ea4f58eb..62826a78bf 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ include Makefile.build.mk CURRENT_USER := $(shell id -u -n) MINIO_TAG ?= 0.20250723.155402-r0 -RQLITE_TAG ?= 8.42.0-r0 +RQLITE_TAG ?= 8.43.0-r0 DEX_TAG ?= 2.43.1-r3 LVP_TAG ?= 0.6.10 PACT_PUBLISH_CONTRACT ?= false diff --git a/migrations/Makefile b/migrations/Makefile index b8ed33e416..4427ec4813 100644 --- a/migrations/Makefile +++ b/migrations/Makefile @@ -1,5 +1,5 @@ SHELL:=/bin/bash -SCHEMAHERO_TAG ?= 0.21.0 +SCHEMAHERO_TAG ?= 0.22.0 DOCKER_BUILD_ARGS ?= build_schema: diff --git a/pkg/image/constants.go b/pkg/image/constants.go index b7016a1d52..14807fab7f 100644 --- a/pkg/image/constants.go +++ b/pkg/image/constants.go @@ -6,8 +6,8 @@ package image const ( Minio = "kotsadm/minio:0.20250723.155402-r0" - Rqlite = "kotsadm/rqlite:8.42.0-r0" + Rqlite = "kotsadm/rqlite:8.43.0-r0" Dex = "kotsadm/dex:2.43.1-r3" - Schemahero = "schemahero/schemahero:0.21.0" + Schemahero = "schemahero/schemahero:0.22.0" Lvp = "replicated/local-volume-provider:0.6.10" )