Commit 4f0507be authored by Markus Hauck's avatar Markus Hauck
Browse files

claude-code: 1.0.83 -> 1.0.84

Changelog: https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md

- Fixed tool use/tool result ID mismatch error during unstable network conditions
- Addressed issue where Claude sometimes ignored real-time steering when completing tasks
- Enhanced @-mention functionality by adding ~/.claude/* files to suggestions for easier editing
- Now using built-in ripgrep by default (can be disabled with USE_BUILTIN_RIPGREP=0)
parent 9512947f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -6,13 +6,13 @@
  "packages": {
    "": {
      "dependencies": {
        "@anthropic-ai/claude-code": "^1.0.83"
        "@anthropic-ai/claude-code": "^1.0.84"
      }
    },
    "node_modules/@anthropic-ai/claude-code": {
      "version": "1.0.83",
      "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-1.0.83.tgz",
      "integrity": "sha512-Mm+88khPbg9eAUbrWGirigWeC4xu2hH0ns3+lnfKWX3e8RJDOV9vnCHjzbEIVXvvvw1YmeIO7TxsFk5/MVuhGA==",
      "version": "1.0.84",
      "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-1.0.84.tgz",
      "integrity": "sha512-+Qu+z1jTdZPu0UL4dalntkofDGL0BgWqs6XmRlq+RuxurHJy58zKae4PL8naevrkbgazauIPYDDGmHF3u+B0uQ==",
      "license": "SEE LICENSE IN README.md",
      "bin": {
        "claude": "cli.js"
+3 −3
Original line number Diff line number Diff line
@@ -7,16 +7,16 @@

buildNpmPackage rec {
  pname = "claude-code";
  version = "1.0.83";
  version = "1.0.84";

  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-h6bAP6nMifQ6cfM80A1QxSYM53LYbEX1WsyPiNPby0M=";
    hash = "sha256-Uu6K2Fq4MT0jb4GsAaHo0UbjnK2bXxjQEjND3ftcFMo=";
  };

  npmDepsHash = "sha256-vxy4FvwEQrtrVzlfmZCY8EDC22yG04GYzBrN0U65gsw=";
  npmDepsHash = "sha256-G1Jrjds7Il+gmQ5SYRgbW3faB2gJd3x0r576IGwFNys=";

  postPatch = ''
    cp ${./package-lock.json} package-lock.json