Skip to content

build(deps): bump @anthropic-ai/claude-agent-sdk from 0.2.63 to 0.2.132 in /backend#55

Merged
Gracker merged 1 commit intomainfrom
dependabot/npm_and_yarn/backend/anthropic-ai/claude-agent-sdk-0.2.132
May 7, 2026
Merged

build(deps): bump @anthropic-ai/claude-agent-sdk from 0.2.63 to 0.2.132 in /backend#55
Gracker merged 1 commit intomainfrom
dependabot/npm_and_yarn/backend/anthropic-ai/claude-agent-sdk-0.2.132

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 7, 2026

Bumps @anthropic-ai/claude-agent-sdk from 0.2.63 to 0.2.132.

Release notes

Sourced from @​anthropic-ai/claude-agent-sdk's releases.

v0.2.132

What's changed

  • Documented applyFlagSettings() in the TypeScript Agent SDK reference and added support for null on top-level keys to clear flag-settings overrides
  • Updated to parity with Claude Code v2.1.132

Update

npm install @anthropic-ai/claude-agent-sdk@0.2.132
# or
yarn add @anthropic-ai/claude-agent-sdk@0.2.132
# or
pnpm add @anthropic-ai/claude-agent-sdk@0.2.132
# or
bun add @anthropic-ai/claude-agent-sdk@0.2.132

v0.2.131

What's changed

  • Updated to parity with Claude Code v2.1.131

Update

npm install @anthropic-ai/claude-agent-sdk@0.2.131
# or
yarn add @anthropic-ai/claude-agent-sdk@0.2.131
# or
pnpm add @anthropic-ai/claude-agent-sdk@0.2.131
# or
bun add @anthropic-ai/claude-agent-sdk@0.2.131

v0.2.129

What's changed

  • Updated to parity with Claude Code v2.1.129

Update

npm install @anthropic-ai/claude-agent-sdk@0.2.129
# or
yarn add @anthropic-ai/claude-agent-sdk@0.2.129
# or
pnpm add @anthropic-ai/claude-agent-sdk@0.2.129
# or
bun add @anthropic-ai/claude-agent-sdk@0.2.129
</tr></table> 

... (truncated)

Changelog

Sourced from @​anthropic-ai/claude-agent-sdk's changelog.

0.2.132

  • Documented applyFlagSettings() in the TypeScript Agent SDK reference and added support for null on top-level keys to clear flag-settings overrides
  • Updated to parity with Claude Code v2.1.132

0.2.131

  • Updated to parity with Claude Code v2.1.131

0.2.130

  • Updated to parity with Claude Code v2.1.130

0.2.129

  • Updated to parity with Claude Code v2.1.129

0.2.128

  • Updated to parity with Claude Code v2.1.128

0.2.127

  • Updated to parity with Claude Code v2.1.127

0.2.126

  • Added origin to result messages (SDKResultSuccess / SDKResultError) — forwards the triggering message's SDKMessageOrigin so consumers can distinguish user-prompted results from task-notification followups

0.2.125

  • Updated to parity with Claude Code v2.1.125

0.2.124

  • Updated to parity with Claude Code v2.1.124

0.2.123

  • Updated to parity with Claude Code v2.1.123

0.2.122

  • Updated to parity with Claude Code v2.1.122

0.2.121

  • Added updatedToolOutput to PostToolUseHookSpecificOutput for replacing tool output on all tools. updatedMCPToolOutput is deprecated.

0.2.120

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@anthropic-ai/claude-agent-sdk](https://github.com/anthropics/claude-agent-sdk-typescript) from 0.2.63 to 0.2.132.
- [Release notes](https://github.com/anthropics/claude-agent-sdk-typescript/releases)
- [Changelog](https://github.com/anthropics/claude-agent-sdk-typescript/blob/main/CHANGELOG.md)
- [Commits](anthropics/claude-agent-sdk-typescript@v0.2.63...v0.2.132)

---
updated-dependencies:
- dependency-name: "@anthropic-ai/claude-agent-sdk"
  dependency-version: 0.2.132
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 7, 2026
@Gracker Gracker merged commit 6053dc1 into main May 7, 2026
3 checks passed
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/backend/anthropic-ai/claude-agent-sdk-0.2.132 branch May 7, 2026 05:29
mr-torto pushed a commit to mr-torto/SmartPerfetto that referenced this pull request May 8, 2026
Replace the monolithic "any code change → trace regression" rule with
an explicit four-tier policy that distinguishes work that genuinely
exercises agent behavior from contract / type-only and CRUD-only
changes that don't:

- Contract / type-only (`backend/src/types/sparkContracts.ts` etc.)
  → `npx tsc --noEmit` + the sparkContracts.test.ts case for that
  contract.
- CRUD-only service (file IO, no agent path touched)
  → that service's own `__tests__/<name>.test.ts`.
- Touches mcp / memory / report / agent runtime
  → `npm run test:scene-trace-regression` (the existing 6-trace gate).
- PR landing
  → `npm run verify:pr` (strict full gate, unchanged).

The new policy is inlined consistently in all 7 rule documents — keeping
fresh clones self-contained — and the wording is identical across files
so future drift is easy to spot.

Files touched: CLAUDE.md, AGENTS.md, docs/development/testing.md,
README.md, README.zh-CN.md, CONTRIBUTING.md,
docs/getting-started/quick-start.md.

Motivation: subsequent Spark contract scaffold commits (Gracker#41 / Gracker#44 / Gracker#50
/ Gracker#54 / Gracker#55) only add types to sparkContracts.ts and add unit tests.
Running the full 6-trace regression on each adds minutes per commit
without exercising any code path the contract touches. The tiered
policy keeps the strict gate where it earns its keep (anything wired
into the agent runtime, plus PR landing) while letting type-only work
finish in seconds. The trace regression command itself is unchanged.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant