mirror of
https://github.com/anthropics/claude-code.git
synced 2026-05-01 02:09:52 +00:00
Compare commits
4 Commits
v2.1.120
...
oct/update
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c2e4210003 | ||
|
|
0074b4422a | ||
|
|
c128568da0 | ||
|
|
7e936457e4 |
12
.github/workflows/claude-dedupe-issues.yml
vendored
12
.github/workflows/claude-dedupe-issues.yml
vendored
@@ -38,10 +38,11 @@ jobs:
|
||||
if: always()
|
||||
env:
|
||||
STATSIG_API_KEY: ${{ secrets.STATSIG_API_KEY }}
|
||||
ISSUE_NUMBER: ${{ github.event.issue.number || inputs.issue_number }}
|
||||
REPO: ${{ github.repository }}
|
||||
TRIGGERED_BY: ${{ github.event_name }}
|
||||
WORKFLOW_RUN_ID: ${{ github.run_id }}
|
||||
run: |
|
||||
ISSUE_NUMBER=${{ github.event.issue.number || inputs.issue_number }}
|
||||
REPO=${{ github.repository }}
|
||||
|
||||
if [ -z "$STATSIG_API_KEY" ]; then
|
||||
echo "STATSIG_API_KEY not found, skipping Statsig logging"
|
||||
exit 0
|
||||
@@ -51,7 +52,8 @@ jobs:
|
||||
EVENT_PAYLOAD=$(jq -n \
|
||||
--arg issue_number "$ISSUE_NUMBER" \
|
||||
--arg repo "$REPO" \
|
||||
--arg triggered_by "${{ github.event_name }}" \
|
||||
--arg triggered_by "$TRIGGERED_BY" \
|
||||
--arg workflow_run_id "$WORKFLOW_RUN_ID" \
|
||||
'{
|
||||
events: [{
|
||||
eventName: "github_duplicate_comment_added",
|
||||
@@ -60,7 +62,7 @@ jobs:
|
||||
repository: $repo,
|
||||
issue_number: ($issue_number | tonumber),
|
||||
triggered_by: $triggered_by,
|
||||
workflow_run_id: "${{ github.run_id }}"
|
||||
workflow_run_id: $workflow_run_id
|
||||
},
|
||||
time: (now | floor | tostring)
|
||||
}]
|
||||
|
||||
25
CHANGELOG.md
25
CHANGELOG.md
@@ -1,30 +1,5 @@
|
||||
# Changelog
|
||||
|
||||
## 2.1.120
|
||||
|
||||
- Windows: Git for Windows (Git Bash) is no longer required — when absent, Claude Code uses PowerShell as the shell tool
|
||||
- Added `claude ultrareview [target]` subcommand to run `/ultrareview` non-interactively from CI or scripts — prints findings to stdout (`--json` for raw output) and exits 0 on completion or 1 on failure
|
||||
- Skills can now reference the current effort level with `${CLAUDE_EFFORT}` in their content
|
||||
- Set `AI_AGENT` environment variable for subprocesses so `gh` can attribute traffic to Claude Code
|
||||
- Spinner tips that recommend installing the desktop app or creating skills/agents are now hidden when you already have them
|
||||
- Show a "use PgUp/PgDn to scroll" hint when the terminal sends arrow keys instead of scroll events
|
||||
- Faster session start when you have many claude.ai connectors configured but not authorized
|
||||
- The auto mode denial message now links to the configuration docs
|
||||
- `claude plugin validate` now accepts `$schema`, `version`, and `description` at the top level of `marketplace.json` and `$schema` in `plugin.json`
|
||||
- Auto-compact in auto mode now displays `auto` (lowercase, no token count) instead of a misleading token value
|
||||
- Fixed pressing Esc during a stdio MCP tool call closing the entire server connection (regression in 2.1.105)
|
||||
- Fixed `/rewind` and other interactive overlays not responding to keyboard input after launching with `claude --resume`
|
||||
- Fixed terminal scrollback duplication in non-fullscreen mode (resize, dialog dismiss, long sessions)
|
||||
- Fixed `DISABLE_TELEMETRY` / `CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC` not suppressing usage metrics telemetry for API and enterprise users
|
||||
- Fixed false-positive "Dangerous rm operation" permission prompts in auto mode for multi-line bash commands containing both a pipe and a redirect
|
||||
- Fixed long selection menus clipping below the terminal in fullscreen mode — the focused option now stays on screen as you scroll
|
||||
- Fixed Write tool output collapsing instead of expanding when clicking "+N lines" in fullscreen
|
||||
- Fixed slash command picker jumping while typing, and improved highlight to only match contiguous substrings in blue
|
||||
- Fixed `/plugin` marketplace failing to load when one entry uses an unrecognized source format — that entry is shown but installing it prompts you to update
|
||||
- [VSCode] `/usage` now opens the native Account & Usage dialog instead of returning plain-text session cost
|
||||
- [VSCode] Voice dictation now respects the `language` setting in `~/.claude/settings.json`
|
||||
- Fixed `find` in the Bash tool exhausting open file descriptors on large directory trees, causing host-wide crashes (macOS/Linux native builds)
|
||||
|
||||
## 2.1.119
|
||||
|
||||
- `/config` settings (theme, editor mode, verbose, etc.) now persist to `~/.claude/settings.json` and participate in project/local/policy override precedence
|
||||
|
||||
@@ -5,8 +5,8 @@ Thank you for helping us keep Claude Code secure!
|
||||
|
||||
The security of our systems and user data is Anthropic's top priority. We appreciate the work of security researchers acting in good faith in identifying and reporting potential vulnerabilities.
|
||||
|
||||
Our security program is managed on HackerOne and we ask that any validated vulnerability in this functionality be reported through their [submission form](https://hackerone.com/anthropic-vdp/reports/new?type=team&report_type=vulnerability).
|
||||
Our security program is managed on HackerOne and we ask that any validated vulnerability in this functionality be reported through their [submission form](https://hackerone.com/4f1f16ba-10d3-4d09-9ecc-c721aad90f24/embedded_submissions/new).
|
||||
|
||||
## Vulnerability Disclosure Program
|
||||
## Anthropic Bug Bounty
|
||||
|
||||
Our Vulnerability Program Guidelines are defined on our [HackerOne program page](https://hackerone.com/anthropic-vdp).
|
||||
Our Bug Bounty Program Guidelines are defined on our [HackerOne program page](https://hackerone.com/anthropic).
|
||||
|
||||
Reference in New Issue
Block a user