From cb694cc00e4d7af8fe82a3ff76091546fadd4f4c Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Fri, 26 Sep 2025 19:01:37 +0200 Subject: [PATCH] claude-code: 1.0.123 -> 1.0.126 Changelog: https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md - Enable /context command for Bedrock and Vertex - Add mTLS support for HTTP-based OpenTelemetry exporters - Set CLAUDE_BASH_NO_LOGIN environment variable to 1 or true to skip login shell for BashTool - Fix Bedrock and Vertex environment variables evaluating all strings as truthy - No longer inform Claude of the list of allowed tools when permission is denied - Fixed security vulnerability in Bash tool permission checks - Improved VSCode extension performance for large files --- pkgs/by-name/cl/claude-code/package-lock.json | 8 ++++---- pkgs/by-name/cl/claude-code/package.nix | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/cl/claude-code/package-lock.json b/pkgs/by-name/cl/claude-code/package-lock.json index af941c6b75f1..41acd208a49d 100644 --- a/pkgs/by-name/cl/claude-code/package-lock.json +++ b/pkgs/by-name/cl/claude-code/package-lock.json @@ -6,13 +6,13 @@ "packages": { "": { "dependencies": { - "@anthropic-ai/claude-code": "^1.0.123" + "@anthropic-ai/claude-code": "^1.0.126" } }, "node_modules/@anthropic-ai/claude-code": { - "version": "1.0.123", - "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-1.0.123.tgz", - "integrity": "sha512-egniOpnrjpm8pA2ygj9aDw+rZ0jKJdso94CvKlKzdVcLdw0r0FSMvgxWRGGxjHuqcl6BP6yhHGSKlZ6qzd14OA==", + "version": "1.0.126", + "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-1.0.126.tgz", + "integrity": "sha512-DvzpL0LLB5nXRgJi4h+peDVys8sjfy5/QJMiketpqUd9SebTE673KnZ28lwEY4s944t/ywA80oNaJLXHMbqfcQ==", "license": "SEE LICENSE IN README.md", "bin": { "claude": "cli.js" diff --git a/pkgs/by-name/cl/claude-code/package.nix b/pkgs/by-name/cl/claude-code/package.nix index b14495c0b8f0..ee1c6a6853b3 100644 --- a/pkgs/by-name/cl/claude-code/package.nix +++ b/pkgs/by-name/cl/claude-code/package.nix @@ -7,16 +7,16 @@ buildNpmPackage rec { pname = "claude-code"; - version = "1.0.123"; + version = "1.0.126"; nodejs = nodejs_20; # required for sandboxed Nix builds on Darwin src = fetchzip { url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${version}.tgz"; - hash = "sha256-bzI6wYnY3kBA8xKOeQqYpsi672FIrcSj3eAN0nFqz5o="; + hash = "sha256-U6uYRkmVqMoJDAAzLHpF9G5OglPhLqPuwe6gWMQPx78="; }; - npmDepsHash = "sha256-UUpss39MY/fBRVjzd1yU9zBQMVW3wMy6zJFcoasivOI="; + npmDepsHash = "sha256-m+GYa3uPfkUDV+p95uQToY3n/k0JG8hbppBn0GUeV+8="; postPatch = '' cp ${./package-lock.json} package-lock.json