Commit 5e0a32fe authored by Markus Hauck's avatar Markus Hauck
Browse files

claude-code: 1.0.109 -> 1.0.113

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

- 1.0.110: Added WezTerm support for terminal-setup, improved OAuth token refresh, and fixed Bash process reliability
- 1.0.111: Validated model names and fixed Bash tool crashes from malformed shell syntax
- 1.0.112: Added model used to transcript mode, fixed recognition of Claude Max users, added systemMessage support for SessionEnd hooks, and introduced spinnerTipsEnabled setting
- 1.0.113: Deprecated piped input in interactive mode and moved Ctrl+R keybinding for toggling transcript to Ctrl+O
parent c2ec310f
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.109"
        "@anthropic-ai/claude-code": "^1.0.113"
      }
    },
    "node_modules/@anthropic-ai/claude-code": {
      "version": "1.0.109",
      "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-1.0.109.tgz",
      "integrity": "sha512-gjj76f/+M5KfI+ORA9VNVJgR7s8eyur66XCWIIO66q4poNWcszxidXo+TDTqokLLwuNV+qFGx4JkK/PDmtwqMA==",
      "version": "1.0.113",
      "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-1.0.113.tgz",
      "integrity": "sha512-K/+N/rECfWa1ZauWLD6C/CnX6bxxAck5CFDuK58JjRN8v6QDuJVX7HZcNCanB0ucxEkaczAwvWnEM+UjFQsdqw==",
      "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.109";
  version = "1.0.113";

  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-bmva84iO0iDf8V537DX6Ggh1PyjKEkfebx4CSB3f4/U=";
    hash = "sha256-N3lKbu3OtF1X65Dr9JghMdgsqQD2RYS/YJUNtPJVyyw=";
  };

  npmDepsHash = "sha256-jpvy7b4A+E5iI7Y7kYnwH51BZAQGVXKaf3lQjI9e3OM=";
  npmDepsHash = "sha256-z+EXesi9nfoTE+eX7BUZv50BzCWSxqKFfvRlJWWdWDU=";

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