From af174f0bf94a14e7de37efc77ca6fa5dfb85d0ae Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 17 Feb 2026 11:32:45 +0000 Subject: [PATCH 1/2] chore(deps): update bump-dependencies --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3fa9eb0..fde826e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,11 +19,11 @@ ENV \ ARG \ # renovate: datasource=npm depName=@anthropic-ai/claude-code - CLAUDE_CLI_VERSION=2.1.41 \ + CLAUDE_CLI_VERSION=2.1.42 \ # renovate: datasource=npm depName=@google/gemini-cli GEMINI_CLI_VERSION=0.28.2 \ # renovate: datasource=npm depName=opencode-ai - OPENCODE_AI_VERSION=1.1.65 + OPENCODE_AI_VERSION=1.2.1 RUN npm install -g \ "@anthropic-ai/claude-code@$CLAUDE_CLI_VERSION" \ From b96b6b4d852265feb9c86bd90f9e1991e88ff21e Mon Sep 17 00:00:00 2001 From: Joe Corall Date: Tue, 17 Feb 2026 06:33:44 -0500 Subject: [PATCH 2/2] Update .bash_aliases --- .bash_aliases | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.bash_aliases b/.bash_aliases index 881e3d0..12f722b 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -1 +1,7 @@ alias ll='ls -l' + +if [ ! -d "$HOME/.local/bin" ]; then + mkdir -p "$HOME/.local/bin" +fi + +export PATH="$HOME/.local/bin:$PATH"