123 wires and counting

$ follow Anthropic

Keep up with Anthropic in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-07-04
stories 89

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

CLAUDE CODE FIXES DOUBLE-POSTED COMMENTS AND INSTALL PIPELINE FAILURES

By RepoJournal · Filed · About Anthropic · Composed from the cited sources · methodology

The inline comment buffering bug that was posting every comment twice got fixed overnight, and the install pipeline now properly retries on network failures.

The duplicate inline comment bug [1] [2] is resolved. When `classify_inline_comments` was enabled (the default), Claude would buffer a comment, read the buffer response telling it to set `confirmed=true`, reissue with that flag to post live, but the original buffered entry would stay in the replay queue and post again. The fix reconciles the buffer after a live post succeeds, eliminating the duplicate. In parallel, the install pipeline now propagates curl failures properly [3] by prefixing with `set -o pipefail`, so the 3-attempt retry loop actually triggers on 429, 403, or connection errors instead of silently passing through. The claude-code-action team also fixed repeated `--add-dir` flags being overwritten [4] and symlinked CLAUDE.md paths crashing during config snapshots [5]. These fixes are syncing into base-action [6] [7] [8] and the Python SDK now bundles the updated CLI versions [16] [17]. On the plugin front, the official marketplace added auto-migration renames for four historically renamed plugins [18] so users on old slugs auto-upgrade when loader-side support ships. The e2e test suite on the Python SDK was failing since June 25 [14] [15] due to a clean-cwd issue, now fixed. Routine plugin SHAs continue rolling across community and official repos [9] [10] [11] [12] [13] [19] [20] [21] [22], all validated before merge.

Action items

References

  1. [1] Drop buffered inline comment when it is posted live (#1405) ↗ anthropics/claude-code-action
  2. [2] Drop buffered inline comment when it is posted live (#1405) (#1412) ↗ anthropics/claude-code-action
  3. [3] fix: propagate curl failures in install pipeline ↗ anthropics/claude-code-action
  4. [4] fix: preserve repeated add-dir flags in claude args ↗ anthropics/claude-code-action
  5. [5] fix(restore): handle symlinked CLAUDE.md paths during config snapshot ↗ anthropics/claude-code-action
  6. [6] Sync from claude-code-action base-action@235b39b ↗ anthropics/claude-code-base-action
  7. [7] Sync from claude-code-action base-action@558b1d6 ↗ anthropics/claude-code-base-action
  8. [8] Sync from claude-code-action base-action@01872cc ↗ anthropics/claude-code-base-action
  9. [9] bump(10x-team): a65e3948 → ea01f826 ↗ anthropics/claude-plugins-community
  10. [10] bump(8-habit-ai-dev): 2be64c02 → 7560936b ↗ anthropics/claude-plugins-community
  11. [11] bump(accelbyte-ai-plugins): 97a4570f → fc5963f2 ↗ anthropics/claude-plugins-community
  12. [12] bump(adcp-client): 0b54e7fc → aa5c0fad ↗ anthropics/claude-plugins-community
  13. [13] bump(agent-runway): 599909db → 15c21c20 ↗ anthropics/claude-plugins-community
  14. [14] Fix e2e stderr test by running the query from a clean cwd (#1084) ↗ anthropics/claude-agent-sdk-python
  15. [15] Fix e2e stderr test by running the query from a clean cwd ↗ anthropics/claude-agent-sdk-python
  16. [16] chore: bump bundled CLI version to 2.1.201 ↗ anthropics/claude-agent-sdk-python
  17. [17] chore: bump bundled CLI version to 2.1.200 ↗ anthropics/claude-agent-sdk-python
  18. [18] feat: add renames map for auto-migration of renamed plugins (#3176) ↗ anthropics/claude-plugins-official
  19. [19] bump(dash0): 28a71f7f → 4aed2d53 ↗ anthropics/claude-plugins-official
  20. [20] bump(slack): 9635a2f7 → 39066985 ↗ anthropics/claude-plugins-official
  21. [21] bump(sonarqube): 5b4783d8 → 63c286b5 ↗ anthropics/claude-plugins-official
  22. [22] bump(migration-to-aws): b6843251 → cc660903 ↗ anthropics/claude-plugins-official

Quick answers

What shipped in Anthropic on July 4, 2026?
The inline comment buffering bug that was posting every comment twice got fixed overnight, and the install pipeline now properly retries on network failures. In total, 15 commits, 72 pull requests, and 2 releases landed.
Who contributed to Anthropic on July 4, 2026?
6 developers shipped this update, including archievi, akhilesharora, Jerry2003826, syf2211, github-actions[bot], and qing-ant.
What were the notable Anthropic updates?
Drop buffered inline comment when it is posted live (#1405), Drop buffered inline comment when it is posted live (#1405) (#1412), and fix: propagate curl failures in install pipeline.