Skip to content

chore(deps): update all non-major dependencies#1825

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#1825
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Mar 30, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@anthropic-ai/claude-agent-sdk ^0.2.79^0.2.109 age adoption passing confidence dependencies patch
@cwcss/crosswind ^0.1.6^0.2.0 age adoption passing confidence devDependencies minor
@stacksjs/bunpress (source) ^0.1.1^0.1.4 age adoption passing confidence dependencies patch
@stacksjs/stx ^0.2.7^0.2.10 age adoption passing confidence dependencies patch
@stacksjs/ts-cloud ^0.1.14^0.2.3 age adoption passing confidence dependencies minor
@stacksjs/ts-cloud ^0.2.1^0.2.3 age adoption passing confidence dependencies patch
@stacksjs/ts-validation ^0.4.9^0.4.10 age adoption passing confidence dependencies patch
@stripe/stripe-js (source) ^8.7.0^8.11.0 age adoption passing confidence devDependencies minor
@stripe/stripe-js (source) ^9.0.0^9.2.0 age adoption passing confidence dependencies minor
@types/bun (source) ^1.3.11^1.3.12 age adoption passing confidence devDependencies patch
@vscode/vsce (source) ^3.7.2-12^3.8.1 age adoption passing confidence devDependencies minor
better-dx ^0.2.5^0.2.7 age adoption passing confidence devDependencies patch
better-dx ^0.2.5^0.2.7 age adoption passing confidence dependencies patch
bun-query-builder ^0.1.12^0.1.13 age adoption passing confidence dependencies patch
oven/bun 1.3.101.3.12 age adoption passing confidence final patch
oven/bun 1.3.101.3.12 age adoption passing confidence stage patch
oven/bun 1.3.111.3.12 age adoption passing confidence final patch
oven/bun 1.3.111.3.12 age adoption passing confidence stage patch
ts-pantry (source) ^0.8.16^0.9.20 age adoption passing confidence dependencies minor
ts-rate-limiter ^0.4.0^0.4.1 age adoption passing confidence dependencies patch
vscode ^1.109.5^1.116.0 age adoption passing confidence engines minor

Release Notes

anthropics/claude-agent-sdk-typescript (@​anthropic-ai/claude-agent-sdk)

v0.2.109

Compare Source

  • Updated to parity with Claude Code v2.1.109

v0.2.108

Compare Source

  • SDKStatus now includes 'requesting'; when includePartialMessages is enabled, a {type:'system', subtype:'status', status:'requesting'} message is emitted before each API request in the stream

v0.2.107

Compare Source

  • Updated to parity with Claude Code v2.1.107

v0.2.105

Compare Source

  • Added system/memory_recall event and memory_paths on system/init for SDK renderers to surface memory operations
  • Fixed error_max_structured_output_retries being emitted when the final retry attempt succeeded, discarding valid structured output

v0.2.104

Compare Source

v0.2.101

  • Security: bumped @anthropic-ai/sdk to ^0.81.0 and @modelcontextprotocol/sdk to ^1.29.0 to resolve GHSA-5474-4w2j-mq4c and transitive hono advisories
  • Fixed resume-session temp directory leaking on Windows when subprocess file handles weren't released before cleanup, and on macOS/APFS when await using disposal raced its own cleanup callback
  • Fixed MaxListenersExceededWarning when running 11+ concurrent query() calls

v0.2.100

  • Updated to parity with Claude Code v2.1.100

v0.2.98

Compare Source

  • Updated to parity with Claude Code v2.1.98

v0.2.97

Compare Source

  • Updated to parity with Claude Code v2.1.97

v0.2.96

Compare Source

  • Updated to parity with Claude Code v2.1.96

v0.2.94

Compare Source

  • Fixed getContextUsage() to include agents passed via options.agents in the agents breakdown
  • Fixed CJK and other multibyte text being corrupted with U+FFFD in stream-json input/output when chunk boundaries split a UTF-8 sequence
  • Fixed MCP server child processes not being cleaned up when an SDK query() session ends
  • Fixed a failed error-report write crashing the SDK process with unhandledRejection
  • Updated to parity with Claude Code v2.1.94

v0.2.92

Compare Source

  • Updated to parity with Claude Code v2.1.92

v0.2.91

Compare Source

  • Added optional terminal_reason field to result messages, exposing why the query loop terminated (completed, aborted_tools, max_turns, blocking_limit, etc.)
  • Added 'auto' to the public PermissionMode type
  • Changed sandbox option to default failIfUnavailable to true when enabled: true is passed — query() will emit an error result and exit if sandbox dependencies are missing, instead of silently running unsandboxed. Set failIfUnavailable: false to allow graceful degradation.
  • Updated to parity with Claude Code v2.1.91

v0.2.90

Compare Source

  • Updated to parity with Claude Code v2.1.90

v0.2.89

Compare Source

  • Added startup() to pre-warm the CLI subprocess before query(), making the first query ~20x faster when startup cost can be paid upfront
  • Added includeSystemMessages option to getSessionMessages() to optionally include system messages in session history
  • Added listSubagents() and getSubagentMessages() functions to retrieve subagent conversation history from sessions
  • Added includeHookEvents option to enable hook lifecycle messages (hook_started, hook_progress, hook_response) for all hook event types
  • Fixed ERR_STREAM_WRITE_AFTER_END errors when single-turn queries with SDK MCP servers or hooks have control responses arriving after the result message
  • Fixed Zod v4 field .describe() metadata being dropped from createSdkMcpServer tool schemas
  • Fixed side_question returning null on resume before the first turn completes
  • Fixed settingSources empty array causing --setting-sources "" to consume the next CLI flag
  • Fixed error result messages (error_during_execution, error_max_turns, error_max_budget_usd) to correctly set is_error: true with descriptive messages
  • Fixed MCP servers getting permanently stuck in a failed state after a connection race — they now retry on the next message

v0.2.87

Compare Source

  • Updated to parity with Claude Code v2.1.87

v0.2.86

Compare Source

  • Added getContextUsage() control method to retrieve a breakdown of context window usage by category
  • Made session_id optional in SDKUserMessage type — callers no longer need to provide a session ID when sending user messages, as the SDK assigns one automatically
  • Fixed TypeScript types resolving to any by adding @anthropic-ai/sdk and @modelcontextprotocol/sdk as dependencies
  • Updated to parity with Claude Code v2.1.86

v0.2.85

Compare Source

  • Added reloadPlugins() SDK method to reload plugins and receive refreshed commands, agents, and MCP server status
  • Fixed PreToolUse hooks with permissionDecision: "ask" being ignored in SDK mode
  • Updated to parity with Claude Code v2.1.85

v0.2.84

Compare Source

  • Added taskBudget option for API-side token budget awareness, allowing the model to pace tool use within a token limit
  • Added enableChannel() method and capabilities field on McpServerStatus for SDK-driven MCP channel activation
  • Exported EffortLevel type ('low' | 'medium' | 'high' | 'max') for consumers to reference effort values directly
  • Fixed showing "[Request interrupted by user]" for errors that were not caused by user interruption
  • Updated to parity with Claude Code v2.1.84

v0.2.83

Compare Source

  • Added seed_read_state control subtype to seed readFileState with {path, mtime} so Edit works after the originating Read was removed from context
  • Changed session_state_changed events to opt-in: set CLAUDE_CODE_EMIT_SESSION_STATE_EVENTS=1 to receive them
  • Updated to parity with Claude Code v2.1.83

v0.2.81

Compare Source

  • Fixed canUseTool not providing a working addRules suggestion when a write under .claude/skills/{name}/ hits the bypass-immune safety check
  • Updated to parity with Claude Code v2.1.81

v0.2.80

Compare Source

  • Fixed getSessionMessages() dropping parallel tool results — sessions with parallel tool calls now return all tool_use/tool_result pairs
  • Updated to parity with Claude Code v2.1.80
cwcss/crosswind (@​cwcss/crosswind)

v0.2.0

Compare Source

Compare changes

🚀 Features
  • improve arbitrary values (9c6af1e)
  • handle arbitrary bracket opacity on named colors (af6f0f3)
🐛 Bug Fixes
  • resolve typecheck errors (8876156)
  • resolve typecheck errors (18bbc68)
🧹 Chores
stacksjs/bunpress (@​stacksjs/bunpress)

v0.1.4

Compare Source

v0.1.3

Compare Source

stacksjs/stx (@​stacksjs/stx)

v0.2.10

Compare Source

v0.2.9

Compare Source

stacksjs/ts-cloud (@​stacksjs/ts-cloud)

v0.2.3

Compare Source

v0.2.2

Compare Source

v0.2.1

Compare Source

v0.2.0

Compare Source

stacksjs/ts-validation (@​stacksjs/ts-validation)

v0.4.10

Compare Source

stripe/stripe-js (@​stripe/stripe-js)

v8.11.0

Compare Source

New features
Fixes
Changed
  • [Payment Form Element] Add paymentMethods and rename wallets to expressCheckout (#​894)

v8.10.0

Compare Source

Changed
  • update init method types (#​887)

v8.9.0

Compare Source

New features
  • Add types for new Payment Form Element method & change event values 👾 (#​878)
  • Add buttonColorText and buttonColorBackground Appearance API vars (#​876)
Changed
  • Bump minimatch from 3.1.2 to 3.1.5 in /examples/rollup (#​884)
  • Bump minimatch from 3.1.2 to 3.1.5 in /examples/parcel (#​882)
  • Bump rollup from 2.79.2 to 2.80.0 (#​881)

v8.8.0

Compare Source

Fixes
  • add confirmAmazonPaySetup to the types (#​874)
  • Add optional savePaymentMethod property to value (#​873)
  • publish: preflight hub auth before tagging (#​866)
Changed
  • Update Payment Form types (#​875)
  • Add Enums to options.layout.radios (#​868)
  • Use more specific types for tax ID (#​872)
  • Add lk_vat to tax id types (#​871)
  • add paymentFormConfirmEvent to confirm args type (#​867)
  • Bump lodash from 4.17.21 to 4.17.23 in /examples/rollup (#​858)
Microsoft/vsce (@​vscode/vsce)

v3.8.1

Compare Source

Changes:

This list of changes was auto generated.

v3.8.0

Compare Source

Changes:

See More

This list of changes was auto generated.

v3.7.2-13

Compare Source

Changes:

This list of changes was auto generated.

stacksjs/better-dx (better-dx)

v0.2.7

Compare Source

v0.2.6

Compare Source

stacksjs/bun-query-builder (bun-query-builder)

v0.1.13

Compare Source

oven-sh/bun (oven/bun)

v1.3.12: Bun v1.3.12

To install Bun v1.3.12

curl -fsSL https://bun.sh/install | bash

# or you can use npm
# npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.3.12:

bun upgrade
Read Bun v1.3.12's release notes on Bun's blog
Thanks to 8 contributors!

v1.3.11: Bun v1.3.11

To install Bun v1.3.11

curl -fsSL https://bun.sh/install | bash

# or you can use npm
# npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.3.11:

bun upgrade
Read Bun v1.3.11's release notes on Bun's blog
Thanks to 15 contributors!
home-lang/pantry (ts-pantry)

v0.9.20

Compare Source

Compare changes

🚀 Features
  • resolve commit SHAs in pantry install (pantry i craft@da709e6) (3559552) (by Chris <chrisbreuer93@​gmail.com>)
  • support package name aliases in short commit URLs (4e641d4) (by Chris <chrisbreuer93@​gmail.com>)
  • add pkg-pr-new style short URLs for commit packages (dda0e1a) (by Chris <chrisbreuer93@​gmail.com>)
🐛 Bug Fixes
  • resolve Windows cross-compilation errors in io_helper and timespec usage (1669bc5) (by glennmichael123 gtorregosa@gmail.com)
  • changelog extraction for versions with v prefix (ad9039c) (by Chris <chrisbreuer93@​gmail.com>)
  • replace cryptic BufferTooSmall with clear tarball size error in publish:commit (db51c02) (by glennmichael123 gtorregosa@gmail.com)
  • sort aliases in generateIndex() for deterministic index.ts output (c350510) (by Chris <chrisbreuer93@​gmail.com>)
  • remove hardcoded DOMAIN_TO_BIN, use getPrimaryBinary() from installer (bde99de) (by Chris <chrisbreuer93@​gmail.com>)
  • use full ts-pantry alias map (1700+ entries) instead of hardcoded 4 (569522f) (by Chris <chrisbreuer93@​gmail.com>)
  • resolve package aliases (bun, zig, node) to domain names in action (dc3e1db) (by Chris <chrisbreuer93@​gmail.com>)
  • make alias tests resilient to LocalStorage list limitations (7663d91) (by Chris <chrisbreuer93@​gmail.com>)
  • use consistent prefix without trailing slash for S3/local list (0211958) (by Chris <chrisbreuer93@​gmail.com>)
  • LocalStorage.list() emulates S3 prefix matching for partial paths (6fa92f2) (by Chris <chrisbreuer93@​gmail.com>)
  • remove duplicate metadata getter (already exists at line 337) (53a71d1) (by Chris <chrisbreuer93@​gmail.com>)
  • properly split path and query string in S3 V4 signature (9dcf9ea) (by Chris <chrisbreuer93@​gmail.com>)
  • include query params in S3 V4 signature for list operations (1701d98) (by Chris <chrisbreuer93@​gmail.com>)
  • short SHA resolution via direct S3 prefix search in route handler (8448b09) (by Chris <chrisbreuer93@​gmail.com>)
  • catch DynamoDB errors for short SHA lookups in getCommitPackage (b65a97a) (by Chris <chrisbreuer93@​gmail.com>)
  • improve short SHA resolution with S3 fallback (b31611b) (by Chris <chrisbreuer93@​gmail.com>)
  • resolve windows cross-compilation error in zig 0.16 (198d4b0) (by Chris <chrisbreuer93@​gmail.com>)
🧪 Tests
  • comprehensive tests for short URLs, alias resolution, and short SHA (9d4c61b) (by Chris <chrisbreuer93@​gmail.com>)
🧹 Chores
📄 Miscellaneous
Contributors

v0.9.19

Compare Source

v0.9.18

Compare Source

v0.9.16

Compare Source

v0.9.13

Compare Source

v0.9.7

Compare Source

Fix: install missing deps on cache hit, S3 redirect for tarballs, add release:patch script

v0.9.4

Compare Source

v0.9.2

Compare Source

v0.9.1

Compare Source

v0.9.0

Compare Source

v0.8.18

Compare Source

v0.8.17

Compare Source

stacksjs/ts-rate-limiter (ts-rate-limiter)

v0.4.1

Compare Source

microsoft/vscode (vscode)

v1.116.0

Compare Source

https://code.visualstudio.com/updates/v1_116

v1.115.0

Compare Source

https://code.visualstudio.com/updates/v1_115

v1.114.0

Compare Source

https://code.visualstudio.com/updates/v1_114

v1.113.0

Compare Source

https://code.visualstudio.com/updates/v1_113

v1.112.0

Compare Source

https://code.visualstudio.com/updates/v1_112

v1.111.0: March 2026 (version 1.111)

[Compare Source](https://redirect.github.com/m


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@what-the-diff
Copy link
Copy Markdown

what-the-diff bot commented Mar 30, 2026

PR Summary

  • Major dependency updates
    • Updated the @stacksjs/ts-cloud package from ^0.2.1 and ^0.1.14 to ^0.2.3. This package is updated in multiple areas of our system, ensuring we're using the latest features and bug fixes from 'ts-cloud'.
    • The better-dx version is raised from ^0.2.5 to ^0.2.7 across all relevant packages. This should improve our development experience by utilizing the latest improvements to 'better-dx'.
    • We've bumped our @anthropic-ai/claude-agent-sdk from ^0.2.79 to ^0.2.87 in a core AI part of the system. This should increase our AI capabilities by leveraging the most recent 'claude-agent-sdk'.
    • The @stacksjs/stx package version was upgraded from ^0.2.7 to ^0.2.10 in a core browser part of our platform. This gives us the benefits of the latest 'stx' functions.
  • Minor dependency updates
    • Small version increase for bun-query-builder, from ^0.1.12 to ^0.1.13 brings us the latest bug fixes and improvements. This package was updated in several places of our system.
    • We've updated ts-pantry from ^0.8.16 to ^0.9.19 in a vital configuration area. It should lead to enhanced functionality from 'ts-pantry'.
    • We've updated the @stripe/stripe-js package version in the payments sector of our system from ^8.7.0 to ^8.11.0. This version bump provides improvement to our payment features.
  • VSCode and Docker Version Updates
    • In our code editor setup, the "vscode" engine version is updated from ^1.109.5 to ^1.113.0, and the "@vscode/vsce" dependency version is updated from ^3.7.2-10 to ^3.7.2-12.
    • Docker images have been updated to oven/bun:1.3.11 from oven/bun:1.3.10. This could bring better stability and more features to our Docker build process.
  • Other Updates
    • Besides these, minor dependency upgrades were made across the system for consistency and to stay updated with the latest tweaks and fixes.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 21 times, most recently from 59d69a1 to e22be0f Compare April 6, 2026 13:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from ab302d9 to 88f9fa8 Compare April 7, 2026 14:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 19 times, most recently from b96dc5b to dadd8d0 Compare April 14, 2026 20:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6ecd8cc to 1ea9d88 Compare April 15, 2026 12:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1ea9d88 to 7b03ee0 Compare April 15, 2026 16:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants