From 2d1ba04a2675ae40f86d0a4acef07bcb5c6c8335 Mon Sep 17 00:00:00 2001 From: bussyjd Date: Mon, 12 Jan 2026 12:26:49 +0400 Subject: [PATCH] chore: upgrade pinned dependency versions in obolup.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update dependency versions to latest stable releases: - kubectl: 1.31.0 → 1.35.0 - helm: 3.19.1 → 3.19.4 - helmfile: 1.2.2 → 1.2.3 - k9s: 0.32.5 → 0.50.18 - helm-diff: 3.9.11 → 3.14.1 k3d remains at 5.8.3 (already current). --- obolup.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/obolup.sh b/obolup.sh index 2741a53..f6430ab 100755 --- a/obolup.sh +++ b/obolup.sh @@ -49,12 +49,12 @@ fi # Pinned dependency versions # Update these versions to upgrade dependencies across all installations -readonly KUBECTL_VERSION="1.31.0" -readonly HELM_VERSION="3.19.1" +readonly KUBECTL_VERSION="1.35.0" +readonly HELM_VERSION="3.19.4" readonly K3D_VERSION="5.8.3" -readonly HELMFILE_VERSION="1.2.2" -readonly K9S_VERSION="0.32.5" -readonly HELM_DIFF_VERSION="3.9.11" +readonly HELMFILE_VERSION="1.2.3" +readonly K9S_VERSION="0.50.18" +readonly HELM_DIFF_VERSION="3.14.1" # Repository URL for building from source readonly OBOL_REPO_URL="git@github.com:ObolNetwork/obol-stack.git"