Skip to content

chore(deps-dev): bump the runtime-and-tooling group with 4 updates#13

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/runtime-and-tooling-ad228862b8
Closed

chore(deps-dev): bump the runtime-and-tooling group with 4 updates#13
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/runtime-and-tooling-ad228862b8

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 19, 2026

Bumps the runtime-and-tooling group with 4 updates: @mariozechner/pi-agent-core, @mariozechner/pi-ai, @mariozechner/pi-coding-agent and @mariozechner/pi-tui.

Updates @mariozechner/pi-agent-core from 0.57.1 to 0.60.0

Release notes

Sourced from @​mariozechner/pi-agent-core's releases.

v0.60.0

New Features

Breaking Changes

  • Changed package startup behavior so installed unpinned packages are no longer checked or updated during startup. Use pi update to apply npm/git package updates, while interactive mode now checks for available package updates in the background and notifies you when updates are available (#1963)

Added

  • Added --fork <path|id> CLI flag to fork an existing session file or partial session UUID directly into a new session (#2290)
  • Added createLocalBashOperations() export so extensions and SDK callers can wrap pi's built-in local bash backend for user_bash handling and other custom bash integrations (#2299)

Fixed

  • Fixed active model selection to refresh immediately after dynamic provider registrations or updates change the available model set (#2291)
  • Fixed tmux xterm modifyOtherKeys matching for Backspace, Escape, and Space, and resolved raw \x08 backspace ambiguity by treating Windows Terminal sessions differently from legacy terminals (#2293)
  • Fixed Gemini 3 and Antigravity image tool results to stay inline as multimodal tool responses instead of being rerouted through separate follow-up messages (#2052)
  • Fixed bundled Bedrock Claude 4.6 model metadata to use the correct 200K context window instead of 1M (#2305)
  • Fixed /reload to reload keybindings from disk so changes in keybindings.json apply immediately (#2309)
  • Fixed lazy built-in provider registration so compiled Bun binaries can still load providers on first use without eagerly bundling provider SDKs (#2314)
  • Fixed built-in OAuth login flows to use aligned callback handling across Anthropic, Gemini CLI, Antigravity, and OpenAI Codex, and fixed OpenAI Codex login to complete immediately once the browser callback succeeds (#2316)
  • Fixed OpenAI-compatible z.ai network_error responses to trigger error handling and retries instead of being treated as successful assistant output (#2313)
  • Fixed print mode to merge piped stdin into the initial prompt when both stdin and an explicit prompt are provided (#2315)
  • Fixed OpenAI Responses replay in coding-agent to normalize oversized resumed tool call IDs before sending them back to OpenAI Codex and other Responses-compatible targets (#2328)
  • Fixed tmux extended-keys warning to stay hidden when the tmux server is unreachable, avoiding false startup warnings in sandboxed environments (#2311 by @​kaffarell)

v0.59.0

New Features

  • Faster startup by lazy-loading @mariozechner/pi-ai provider SDKs on first use instead of import time (#2297)
  • Better provider retry behavior when providers return error messages as responses (#2264)
  • Better terminal integration via OSC 133 command-executed markers (#2242)
  • Better Git footer branch detection for repositories using reftable storage (#2300)

Breaking Changes

  • Changed custom tool system prompt behavior so extension and SDK tools are included in the default Available tools section only when they provide promptSnippet. Omitting promptSnippet now leaves the tool out of that section instead of falling back to description (#2285)

Changed

  • Lazy-load built-in @mariozechner/pi-ai provider modules and root provider wrappers so coding-agent startup no longer eagerly loads provider SDKs before first use (#2297)

Fixed

... (truncated)

Changelog

Sourced from @​mariozechner/pi-agent-core's changelog.

[0.60.0] - 2026-03-18

[0.59.0] - 2026-03-17

[0.58.4] - 2026-03-16

Fixed

  • Fixed steering messages to wait until the current assistant message's tool-call batch fully finishes instead of skipping pending tool calls.

[0.58.3] - 2026-03-15

[0.58.2] - 2026-03-15

[0.58.1] - 2026-03-14

[0.58.0] - 2026-03-14

Added

  • Added beforeToolCall and afterToolCall hooks to AgentOptions and AgentLoopConfig for preflight blocking and post-execution tool result mutation.

Changed

  • Added configurable tool execution mode to Agent and agentLoop via toolExecution: "parallel" | "sequential", with parallel as the default. Parallel mode preflights tool calls sequentially, executes allowed tools concurrently, and emits final tool results in assistant source order.
Commits
  • b002686 Release v0.60.0
  • b221d10 Add [Unreleased] section for next cycle
  • 9595be4 Release v0.59.0
  • 40a1300 Add [Unreleased] section for next cycle
  • b282404 Release v0.58.4
  • a147b91 docs(changelog): add missing unreleased entries
  • 208a2cc fix(agent): defer steering until after tool execution
  • aac0e0c Add [Unreleased] section for next cycle
  • 1c93f9f Release v0.58.3
  • fb52c26 Add [Unreleased] section for next cycle
  • Additional commits viewable in compare view

Updates @mariozechner/pi-ai from 0.57.1 to 0.60.0

Release notes

Sourced from @​mariozechner/pi-ai's releases.

v0.60.0

New Features

Breaking Changes

  • Changed package startup behavior so installed unpinned packages are no longer checked or updated during startup. Use pi update to apply npm/git package updates, while interactive mode now checks for available package updates in the background and notifies you when updates are available (#1963)

Added

  • Added --fork <path|id> CLI flag to fork an existing session file or partial session UUID directly into a new session (#2290)
  • Added createLocalBashOperations() export so extensions and SDK callers can wrap pi's built-in local bash backend for user_bash handling and other custom bash integrations (#2299)

Fixed

  • Fixed active model selection to refresh immediately after dynamic provider registrations or updates change the available model set (#2291)
  • Fixed tmux xterm modifyOtherKeys matching for Backspace, Escape, and Space, and resolved raw \x08 backspace ambiguity by treating Windows Terminal sessions differently from legacy terminals (#2293)
  • Fixed Gemini 3 and Antigravity image tool results to stay inline as multimodal tool responses instead of being rerouted through separate follow-up messages (#2052)
  • Fixed bundled Bedrock Claude 4.6 model metadata to use the correct 200K context window instead of 1M (#2305)
  • Fixed /reload to reload keybindings from disk so changes in keybindings.json apply immediately (#2309)
  • Fixed lazy built-in provider registration so compiled Bun binaries can still load providers on first use without eagerly bundling provider SDKs (#2314)
  • Fixed built-in OAuth login flows to use aligned callback handling across Anthropic, Gemini CLI, Antigravity, and OpenAI Codex, and fixed OpenAI Codex login to complete immediately once the browser callback succeeds (#2316)
  • Fixed OpenAI-compatible z.ai network_error responses to trigger error handling and retries instead of being treated as successful assistant output (#2313)
  • Fixed print mode to merge piped stdin into the initial prompt when both stdin and an explicit prompt are provided (#2315)
  • Fixed OpenAI Responses replay in coding-agent to normalize oversized resumed tool call IDs before sending them back to OpenAI Codex and other Responses-compatible targets (#2328)
  • Fixed tmux extended-keys warning to stay hidden when the tmux server is unreachable, avoiding false startup warnings in sandboxed environments (#2311 by @​kaffarell)

v0.59.0

New Features

  • Faster startup by lazy-loading @mariozechner/pi-ai provider SDKs on first use instead of import time (#2297)
  • Better provider retry behavior when providers return error messages as responses (#2264)
  • Better terminal integration via OSC 133 command-executed markers (#2242)
  • Better Git footer branch detection for repositories using reftable storage (#2300)

Breaking Changes

  • Changed custom tool system prompt behavior so extension and SDK tools are included in the default Available tools section only when they provide promptSnippet. Omitting promptSnippet now leaves the tool out of that section instead of falling back to description (#2285)

Changed

  • Lazy-load built-in @mariozechner/pi-ai provider modules and root provider wrappers so coding-agent startup no longer eagerly loads provider SDKs before first use (#2297)

Fixed

... (truncated)

Changelog

Sourced from @​mariozechner/pi-ai's changelog.

[0.60.0] - 2026-03-18

Fixed

  • Fixed Gemini 3 and Antigravity image tool results to stay inline as multimodal tool responses instead of being rerouted through separate follow-up messages (#2052)
  • Fixed Bedrock Claude 4.6 model metadata to use the correct 200K context window instead of 1M (#2305)
  • Fixed lazy built-in provider registration so compiled Bun binaries can still load providers on first use without eagerly bundling provider SDKs (#2314)
  • Fixed built-in OAuth callback flows to share aligned callback handling across Anthropic, Gemini CLI, Antigravity, and OpenAI Codex, and fixed OpenAI Codex login to resolve immediately after callback completion (#2316)
  • Fixed OpenAI-compatible z.ai network_error responses to surface as errors so callers can retry them instead of treating them as successful assistant messages (#2313)
  • Fixed OpenAI Responses replay to normalize oversized resumed tool call IDs before sending them back to Codex and other Responses-compatible targets (#2328)

[0.59.0] - 2026-03-17

Added

  • Added client injection support to AnthropicOptions, allowing callers to provide a pre-built Anthropic-compatible client instead of constructing one internally.

Changed

  • Lazy-load built-in provider modules and root provider wrappers so importing @mariozechner/pi-ai no longer eagerly loads provider SDKs, significantly reducing base startup cost without changing dependency installation footprint (#2297)

Fixed

  • Added provider-specific responseId support on AssistantMessage for providers that expose upstream response or message identifiers, including Anthropic, OpenAI, Google, Gemini CLI, and Mistral, and added end-to-end coverage for supported OAuth and API key providers (#2245)
  • Fixed Claude 4.6 context window overrides in generated model metadata so build-time catalogs reflect the intended values (#2286)

[0.58.4] - 2026-03-16

[0.58.3] - 2026-03-15

[0.58.2] - 2026-03-15

Fixed

  • Fixed Anthropic OAuth manual login and token refresh by using the localhost callback URI for pasted redirect/code flows and omitting scope from refresh-token requests (#2169)

[0.58.1] - 2026-03-14

Fixed

  • Fixed OpenAI Codex websocket protocol to include required headers and properly terminate SSE streams on connection close (#1961)
  • Fixed Bedrock prompt caching being enabled for non-Claude models, causing API errors (#2053)
  • Fixed Qwen models via OpenAI-compatible providers by adding qwen-chat-template compat mode that uses Qwen's native chat template format (#2020)
  • Fixed Bedrock unsigned thinking replay to handle edge cases with empty or malformed thinking blocks (#2063)
  • Fixed xhigh reasoning effort detection for Claude Opus 4.6 to match by model ID instead of requiring explicit capability flag (#2040)
  • Handle finish_reason: "end" from Ollama/LM Studio by mapping it to "stop" instead of throwing (#2142)

[0.58.0] - 2026-03-14

Added

... (truncated)

Commits
  • b002686 Release v0.60.0
  • 3058251 docs(changelog): audit unreleased entries
  • b2548ce fix(ai): normalize replayed responses tool call ids closes #2328
  • 453b223 fix(ai): keep image tool results inline for gemini 3+ and antigravity closes ...
  • a9f534a fix(ai): restore antigravity context override block
  • d70dfbe fix(ai): correct Bedrock Claude 4.6 context window to 200k
  • 8dc2bb9 fix(coding-agent,ai): restore Bun binary lazy provider loading closes #2314
  • 94ba13c fix(ai): align oauth callback flows closes #2316
  • 3563cc4 fix(ai): resolve codex oauth callback immediately closes #2316
  • d914d1c fix(coding-agent): handle z.ai network_error closes #2313
  • Additional commits viewable in compare view

Updates @mariozechner/pi-coding-agent from 0.57.1 to 0.60.0

Release notes

Sourced from @​mariozechner/pi-coding-agent's releases.

v0.60.0

New Features

Breaking Changes

  • Changed package startup behavior so installed unpinned packages are no longer checked or updated during startup. Use pi update to apply npm/git package updates, while interactive mode now checks for available package updates in the background and notifies you when updates are available (#1963)

Added

  • Added --fork <path|id> CLI flag to fork an existing session file or partial session UUID directly into a new session (#2290)
  • Added createLocalBashOperations() export so extensions and SDK callers can wrap pi's built-in local bash backend for user_bash handling and other custom bash integrations (#2299)

Fixed

  • Fixed active model selection to refresh immediately after dynamic provider registrations or updates change the available model set (#2291)
  • Fixed tmux xterm modifyOtherKeys matching for Backspace, Escape, and Space, and resolved raw \x08 backspace ambiguity by treating Windows Terminal sessions differently from legacy terminals (#2293)
  • Fixed Gemini 3 and Antigravity image tool results to stay inline as multimodal tool responses instead of being rerouted through separate follow-up messages (#2052)
  • Fixed bundled Bedrock Claude 4.6 model metadata to use the correct 200K context window instead of 1M (#2305)
  • Fixed /reload to reload keybindings from disk so changes in keybindings.json apply immediately (#2309)
  • Fixed lazy built-in provider registration so compiled Bun binaries can still load providers on first use without eagerly bundling provider SDKs (#2314)
  • Fixed built-in OAuth login flows to use aligned callback handling across Anthropic, Gemini CLI, Antigravity, and OpenAI Codex, and fixed OpenAI Codex login to complete immediately once the browser callback succeeds (#2316)
  • Fixed OpenAI-compatible z.ai network_error responses to trigger error handling and retries instead of being treated as successful assistant output (#2313)
  • Fixed print mode to merge piped stdin into the initial prompt when both stdin and an explicit prompt are provided (#2315)
  • Fixed OpenAI Responses replay in coding-agent to normalize oversized resumed tool call IDs before sending them back to OpenAI Codex and other Responses-compatible targets (#2328)
  • Fixed tmux extended-keys warning to stay hidden when the tmux server is unreachable, avoiding false startup warnings in sandboxed environments (#2311 by @​kaffarell)

v0.59.0

New Features

  • Faster startup by lazy-loading @mariozechner/pi-ai provider SDKs on first use instead of import time (#2297)
  • Better provider retry behavior when providers return error messages as responses (#2264)
  • Better terminal integration via OSC 133 command-executed markers (#2242)
  • Better Git footer branch detection for repositories using reftable storage (#2300)

Breaking Changes

  • Changed custom tool system prompt behavior so extension and SDK tools are included in the default Available tools section only when they provide promptSnippet. Omitting promptSnippet now leaves the tool out of that section instead of falling back to description (#2285)

Changed

  • Lazy-load built-in @mariozechner/pi-ai provider modules and root provider wrappers so coding-agent startup no longer eagerly loads provider SDKs before first use (#2297)

Fixed

... (truncated)

Changelog

Sourced from @​mariozechner/pi-coding-agent's changelog.

[0.60.0] - 2026-03-18

New Features

Breaking Changes

  • Changed package startup behavior so installed unpinned packages are no longer checked or updated during startup. Use pi update to apply npm/git package updates, while interactive mode now checks for available package updates in the background and notifies you when updates are available (#1963)

Added

  • Added --fork <path|id> CLI flag to fork an existing session file or partial session UUID directly into a new session (#2290)
  • Added createLocalBashOperations() export so extensions and SDK callers can wrap pi's built-in local bash backend for user_bash handling and other custom bash integrations (#2299)

Fixed

  • Fixed active model selection to refresh immediately after dynamic provider registrations or updates change the available model set (#2291)
  • Fixed tmux xterm modifyOtherKeys matching for Backspace, Escape, and Space, and resolved raw \x08 backspace ambiguity by treating Windows Terminal sessions differently from legacy terminals (#2293)
  • Fixed Gemini 3 and Antigravity image tool results to stay inline as multimodal tool responses instead of being rerouted through separate follow-up messages (#2052)
  • Fixed bundled Bedrock Claude 4.6 model metadata to use the correct 200K context window instead of 1M (#2305)
  • Fixed /reload to reload keybindings from disk so changes in keybindings.json apply immediately (#2309)
  • Fixed lazy built-in provider registration so compiled Bun binaries can still load providers on first use without eagerly bundling provider SDKs (#2314)
  • Fixed built-in OAuth login flows to use aligned callback handling across Anthropic, Gemini CLI, Antigravity, and OpenAI Codex, and fixed OpenAI Codex login to complete immediately once the browser callback succeeds (#2316)
  • Fixed OpenAI-compatible z.ai network_error responses to trigger error handling and retries instead of being treated as successful assistant output (#2313)
  • Fixed print mode to merge piped stdin into the initial prompt when both stdin and an explicit prompt are provided (#2315)
  • Fixed OpenAI Responses replay in coding-agent to normalize oversized resumed tool call IDs before sending them back to OpenAI Codex and other Responses-compatible targets (#2328)
  • Fixed tmux extended-keys warning to stay hidden when the tmux server is unreachable, avoiding false startup warnings in sandboxed environments (#2311 by @​kaffarell)

[0.59.0] - 2026-03-17

New Features

  • Faster startup by lazy-loading @mariozechner/pi-ai provider SDKs on first use instead of import time (#2297)
  • Better provider retry behavior when providers return error messages as responses (#2264)
  • Better terminal integration via OSC 133 command-executed markers (#2242)
  • Better Git footer branch detection for repositories using reftable storage (#2300)

Breaking Changes

  • Changed custom tool system prompt behavior so extension and SDK tools are included in the default Available tools section only when they provide promptSnippet. Omitting promptSnippet now leaves the tool out of that section instead of falling back to description (#2285)

Changed

  • Lazy-load built-in @mariozechner/pi-ai provider modules and root provider wrappers so coding-agent startup no longer eagerly loads provider SDKs before first use (#2297)

Fixed

... (truncated)

Commits
  • b002686 Release v0.60.0
  • 3058251 docs(changelog): audit unreleased entries
  • f951d45 fix(coding-agent): stop updating packages on startup closes #1963
  • 2becbbd fix(coding-agent): refresh active model after provider updates closes #2291
  • 1a9185d feat(coding-agent): add --fork session flag closes #2290
  • 9651e41 feat(coding-agent): expose local bash operations closes #2299
  • 7eb55b0 fix(coding-agent): reload keybindings on /reload closes #2309
  • 8dc2bb9 fix(coding-agent,ai): restore Bun binary lazy provider loading closes #2314
  • d914d1c fix(coding-agent): handle z.ai network_error closes #2313
  • bbd8392 fix(coding-agent): merge piped stdin into initial prompt closes #2315
  • Additional commits viewable in compare view

Updates @mariozechner/pi-tui from 0.57.1 to 0.60.0

Release notes

Sourced from @​mariozechner/pi-tui's releases.

v0.60.0

New Features

Breaking Changes

  • Changed package startup behavior so installed unpinned packages are no longer checked or updated during startup. Use pi update to apply npm/git package updates, while interactive mode now checks for available package updates in the background and notifies you when updates are available (#1963)

Added

  • Added --fork <path|id> CLI flag to fork an existing session file or partial session UUID directly into a new session (#2290)
  • Added createLocalBashOperations() export so extensions and SDK callers can wrap pi's built-in local bash backend for user_bash handling and other custom bash integrations (#2299)

Fixed

  • Fixed active model selection to refresh immediately after dynamic provider registrations or updates change the available model set (#2291)
  • Fixed tmux xterm modifyOtherKeys matching for Backspace, Escape, and Space, and resolved raw \x08 backspace ambiguity by treating Windows Terminal sessions differently from legacy terminals (#2293)
  • Fixed Gemini 3 and Antigravity image tool results to stay inline as multimodal tool responses instead of being rerouted through separate follow-up messages (#2052)
  • Fixed bundled Bedrock Claude 4.6 model metadata to use the correct 200K context window instead of 1M (#2305)
  • Fixed /reload to reload keybindings from disk so changes in keybindings.json apply immediately (#2309)
  • Fixed lazy built-in provider registration so compiled Bun binaries can still load providers on first use without eagerly bundling provider SDKs (#2314)
  • Fixed built-in OAuth login flows to use aligned callback handling across Anthropic, Gemini CLI, Antigravity, and OpenAI Codex, and fixed OpenAI Codex login to complete immediately once the browser callback succeeds (#2316)
  • Fixed OpenAI-compatible z.ai network_error responses to trigger error handling and retries instead of being treated as successful assistant output (#2313)
  • Fixed print mode to merge piped stdin into the initial prompt when both stdin and an explicit prompt are provided (#2315)
  • Fixed OpenAI Responses replay in coding-agent to normalize oversized resumed tool call IDs before sending them back to OpenAI Codex and other Responses-compatible targets (#2328)
  • Fixed tmux extended-keys warning to stay hidden when the tmux server is unreachable, avoiding false startup warnings in sandboxed environments (#2311 by @​kaffarell)

v0.59.0

New Features

  • Faster startup by lazy-loading @mariozechner/pi-ai provider SDKs on first use instead of import time (#2297)
  • Better provider retry behavior when providers return error messages as responses (#2264)
  • Better terminal integration via OSC 133 command-executed markers (#2242)
  • Better Git footer branch detection for repositories using reftable storage (#2300)

Breaking Changes

  • Changed custom tool system prompt behavior so extension and SDK tools are included in the default Available tools section only when they provide promptSnippet. Omitting promptSnippet now leaves the tool out of that section instead of falling back to description (#2285)

Changed

  • Lazy-load built-in @mariozechner/pi-ai provider modules and root provider wrappers so coding-agent startup no longer eagerly loads provider SDKs before first use (#2297)

Fixed

... (truncated)

Changelog

Sourced from @​mariozechner/pi-tui's changelog.

[0.60.0] - 2026-03-18

Fixed

  • Fixed tmux xterm modifyOtherKeys matching for Backspace, Escape, and Space, and resolved raw \x08 backspace ambiguity by treating Windows Terminal sessions differently from legacy terminals (#2293)

[0.59.0] - 2026-03-17

[0.58.4] - 2026-03-16

[0.58.3] - 2026-03-15

[0.58.2] - 2026-03-15

Added

  • Added configurable SelectList primary column sizing via SelectListLayoutOptions, including custom primary-label truncation hooks (#2154 by @​markusylisiurunen)

Fixed

  • Fixed stale scrollback remaining after full-screen redraws such as session switches by clearing the screen before wiping scrollback (#2155 by @​Perlence)
  • Fixed trailing blank lines after markdown block elements when they are followed immediately by the next block or end of document (#2152 by @​markusylisiurunen)

[0.58.1] - 2026-03-14

Fixed

  • Fixed Windows shell and path handling in autocomplete to properly handle drive letters and mixed path separators
  • Fixed editor paste to preserve literal content instead of normalizing newlines, preventing content corruption for text with embedded escape sequences (#2064)
  • Fixed tab completion to preserve ./ prefix when completing relative paths (#2087)
  • Fixed ctrl+backspace being indistinguishable from plain backspace on Windows Terminal. 0x08 is now recognized as ctrl+backspace instead of backspace, making ctrl+backspace bindable on terminals where it produces a distinct byte (#2139)

[0.58.0] - 2026-03-14

Added

  • Added paste marker atomic segment handling in editor, treating paste markers as indivisible units during word wrapping and cursor navigation (#2111 by @​haoqixu)

Fixed

  • Fixed Input horizontal scrolling for wide Unicode text (CJK, fullwidth characters) to use visual column width and strict slice boundaries, preventing rendered line overflow and TUI crashes (#1982)
  • Fixed xterm modifyOtherKeys handling for Tab in matchesKey(), restoring shift+tab and other modified Tab bindings in tmux when extended-keys-format is left at the default xterm
  • Fixed editor scroll indicator rendering crash in narrow terminal widths (#2103 by @​haoqixu)
  • Fixed tab characters in editor setText() and input paths not being normalized to spaces (#2027 by @​haoqixu)
  • Fixed wordWrapLine overflow when wide characters (CJK, fullwidth) fall exactly at the wrap boundary (#2082 by @​haoqixu)
  • Fixed tab characters in Input paste not being normalized to spaces (#1975 by @​haoqixu)
Commits

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the runtime-and-tooling group with 4 updates: [@mariozechner/pi-agent-core](https://github.com/badlogic/pi-mono/tree/HEAD/packages/agent), [@mariozechner/pi-ai](https://github.com/badlogic/pi-mono/tree/HEAD/packages/ai), [@mariozechner/pi-coding-agent](https://github.com/badlogic/pi-mono/tree/HEAD/packages/coding-agent) and [@mariozechner/pi-tui](https://github.com/badlogic/pi-mono/tree/HEAD/packages/tui).


Updates `@mariozechner/pi-agent-core` from 0.57.1 to 0.60.0
- [Release notes](https://github.com/badlogic/pi-mono/releases)
- [Changelog](https://github.com/badlogic/pi-mono/blob/main/packages/agent/CHANGELOG.md)
- [Commits](https://github.com/badlogic/pi-mono/commits/v0.60.0/packages/agent)

Updates `@mariozechner/pi-ai` from 0.57.1 to 0.60.0
- [Release notes](https://github.com/badlogic/pi-mono/releases)
- [Changelog](https://github.com/badlogic/pi-mono/blob/main/packages/ai/CHANGELOG.md)
- [Commits](https://github.com/badlogic/pi-mono/commits/v0.60.0/packages/ai)

Updates `@mariozechner/pi-coding-agent` from 0.57.1 to 0.60.0
- [Release notes](https://github.com/badlogic/pi-mono/releases)
- [Changelog](https://github.com/badlogic/pi-mono/blob/main/packages/coding-agent/CHANGELOG.md)
- [Commits](https://github.com/badlogic/pi-mono/commits/v0.60.0/packages/coding-agent)

Updates `@mariozechner/pi-tui` from 0.57.1 to 0.60.0
- [Release notes](https://github.com/badlogic/pi-mono/releases)
- [Changelog](https://github.com/badlogic/pi-mono/blob/main/packages/tui/CHANGELOG.md)
- [Commits](https://github.com/badlogic/pi-mono/commits/v0.60.0/packages/tui)

---
updated-dependencies:
- dependency-name: "@mariozechner/pi-agent-core"
  dependency-version: 0.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: runtime-and-tooling
- dependency-name: "@mariozechner/pi-ai"
  dependency-version: 0.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: runtime-and-tooling
- dependency-name: "@mariozechner/pi-coding-agent"
  dependency-version: 0.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: runtime-and-tooling
- dependency-name: "@mariozechner/pi-tui"
  dependency-version: 0.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: runtime-and-tooling
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 19, 2026

Labels

The following labels could not be found: automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot requested a review from codexstar69 as a code owner March 19, 2026 00:26
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 26, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Mar 26, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/runtime-and-tooling-ad228862b8 branch March 26, 2026 00:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants