Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 4 updates#9

Open
dependabot[bot] wants to merge 14 commits intomainfrom
dependabot/npm_and_yarn/production-dependencies-8b34a6e26c
Open

chore(deps): bump the production-dependencies group across 1 directory with 4 updates#9
dependabot[bot] wants to merge 14 commits intomainfrom
dependabot/npm_and_yarn/production-dependencies-8b34a6e26c

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2026

Bumps the production-dependencies group with 4 updates in the / directory: typescript, @mariozechner/pi-tui, lucide-react and @opentelemetry/exporter-trace-otlp-http.

Updates typescript from 5.9.3 to 6.0.2

Release notes

Sourced from typescript's releases.

TypeScript 6.0

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits

Updates @mariozechner/pi-tui from 0.57.1 to 0.64.0

Release notes

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

v0.64.0

New Features

Breaking Changes

  • ModelRegistry no longer has a public constructor. SDK callers and tests must use ModelRegistry.create(authStorage, modelsJsonPath?) for file-backed registries or ModelRegistry.inMemory(authStorage) for built-in-only registries. Direct new ModelRegistry(...) calls no longer compile.

Added

  • Added ToolDefinition.prepareArguments hook to prepare raw tool call arguments before schema validation, enabling compatibility shims for resumed sessions with outdated tool schemas
  • Built-in edit tool now uses prepareArguments to silently fold legacy top-level oldText/newText into edits[] when resuming old sessions
  • Added ctx.ui.setHiddenThinkingLabel() so extensions can customize the collapsed thinking label in interactive mode, with a no-op in RPC mode and a runnable example extension in examples/extensions/hidden-thinking-label.ts (#2673)

Fixed

  • Fixed extension-queued user messages to refresh the interactive pending-message list so messages submitted while a turn is active are no longer silently dropped (#2674 by @​mrexodia)
  • Fixed monorepo tsconfig.json path mappings to resolve @mariozechner/pi-ai subpath exports to source files in development checkouts (#2625 by @​ferologics)
  • Fixed TUI cell size response handling to consume only exact CSI 6 ; height ; width t replies, so bare Escape is no longer swallowed while waiting for terminal image metadata (#2661)
  • Fixed Kitty keyboard protocol keypad functional keys to normalize to logical digits, symbols, and navigation keys, so numpad input in terminals such as iTerm2 no longer inserts Private Use Area gibberish or gets ignored (#2650)

v0.63.2

New Features

Added

  • Added ctx.signal to ExtensionContext and wired it to the active agent turn so extension handlers can forward cancellation into nested model calls, fetch(), and other abort-aware work (#2660)

Fixed

  • Fixed built-in edit tool input to use edits[] as the only replacement shape, eliminating the mixed single-edit and multi-edit modes that caused repeated invalid tool calls and retries (#2639)
  • Fixed edit tool TUI rendering to defer large multi-edit diffs to the settled result, avoiding full-screen redraws when the tool completes (#2664)

v0.63.1

Added

  • Added gemini-3.1-pro-preview-customtools model availability for the google-vertex provider (#2610 by @​gordonhwc)

Fixed

  • Documented tool_call input mutation as supported extension API behavior, clarified that post-mutation inputs are not re-validated, and added regression coverage for executing mutated tool arguments (#2611)

... (truncated)

Changelog

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

[0.64.0] - 2026-03-29

Fixed

  • Fixed TUI cell size response handling to consume only exact CSI 6 ; height ; width t replies, so bare Escape is no longer swallowed while waiting for terminal image metadata (#2661)
  • Fixed Kitty keyboard protocol keypad functional keys to normalize to logical digits, symbols, and navigation keys, so numpad input in terminals such as iTerm2 no longer inserts Private Use Area gibberish or gets ignored (#2650)

[0.63.2] - 2026-03-29

[0.63.1] - 2026-03-27

[0.63.0] - 2026-03-27

Added

  • Added support for PI_TUI_WRITE_LOG directory paths, creating a unique log file (tui-<timestamp>-<pid>.log) per instance for easier debugging of multiple pi sessions (#2508 by @​mrexodia)

Fixed

  • Fixed blockquote text color breaking after inline links (and other inline elements) due to missing style restoration prefix
  • Fixed slash-command Tab completion from immediately chaining into argument autocomplete after completing the command name, restoring flows like /model that submit into a selector dialog (#2577)
  • Fixed stale content and incorrect viewport tracking after TUI content shrinks or transient components inflate the working area (#2126 by @​Perlence)
  • Fixed @ autocomplete to debounce editor-triggered searches, cancel in-flight fd lookups cleanly, and keep suggestions visible while results refresh (#1278)

[0.62.0] - 2026-03-23

Fixed

  • Fixed truncateToWidth() to stream truncation for very large strings, keep contiguous prefixes, and always terminate truncated SGR styling safely (#2447)
  • Fixed markdown heading styling being lost after inline code spans within headings

[0.61.1] - 2026-03-20

Fixed

  • Fixed shared keybinding resolution to stop user overrides from evicting unrelated default shortcuts such as selector confirm and editor cursor keys (#2455)
  • Fixed Termux software keyboard height changes from forcing full-screen redraws and replaying TUI history on every toggle (#2467)

[0.61.0] - 2026-03-20

Breaking Changes

  • Replaced the editor-only keybinding store with a single global keybindings manager in @mariozechner/pi-tui. TUI keybinding ids are now namespaced: cursorUp -> tui.editor.cursorUp, cursorDown -> tui.editor.cursorDown, cursorLeft -> tui.editor.cursorLeft, cursorRight -> tui.editor.cursorRight, cursorWordLeft -> tui.editor.cursorWordLeft, cursorWordRight -> tui.editor.cursorWordRight, cursorLineStart -> tui.editor.cursorLineStart, cursorLineEnd -> tui.editor.cursorLineEnd, jumpForward -> tui.editor.jumpForward, jumpBackward -> tui.editor.jumpBackward, pageUp -> tui.editor.pageUp, pageDown -> tui.editor.pageDown, deleteCharBackward -> tui.editor.deleteCharBackward, deleteCharForward -> tui.editor.deleteCharForward, deleteWordBackward -> tui.editor.deleteWordBackward, deleteWordForward -> tui.editor.deleteWordForward, deleteToLineStart -> tui.editor.deleteToLineStart, deleteToLineEnd -> tui.editor.deleteToLineEnd, yank -> tui.editor.yank, yankPop -> tui.editor.yankPop, undo -> tui.editor.undo, newLine -> tui.input.newLine, submit -> tui.input.submit, tab -> tui.input.tab, copy -> tui.input.copy, selectUp -> tui.select.up, selectDown -> tui.select.down, selectPageUp -> tui.select.pageUp, selectPageDown -> tui.select.pageDown, selectConfirm -> tui.select.confirm, selectCancel -> tui.select.cancel. keybindings.json stays backward compatible because each keybinding definition maps the new internal id back to the existing public config key. Apps extend interface Keybindings via declaration merging, create one manager with both TUI and app definitions, then install it with setKeybindings(...) (#2391)

Fixed

  • Fixed user-defined keybindings to shadow conflicting default bindings across the shared registry, so app-level defaults no longer stay active when the same key is explicitly reassigned (#2391)

[0.60.0] - 2026-03-18

... (truncated)

Commits
  • d0404a4 Release v0.64.0
  • 8c64058 fix(tui): normalize keypad functional keys closes #2650
  • 49c0d86 fix(tui): stop swallowing escape during cell size detection closes #2661
  • 567249e Add [Unreleased] section for next cycle
  • 41039e8 Release v0.63.2
  • 576e5e1 fix(tui): align attachment debounce test
  • ec1cf54 Add [Unreleased] section for next cycle
  • d9727c4 Release v0.63.1
  • e24a61e Add [Unreleased] section for next cycle
  • 83c8682 Release v0.63.0
  • Additional commits viewable in compare view

Updates lucide-react from 0.577.0 to 1.7.0

Release notes

Sourced from lucide-react's releases.

Version 1.7.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.6.0...1.7.0

Version 1.6.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.5.0...1.6.0

Version 1.5.0

What's Changed

Full Changelog: lucide-icons/lucide@1.4.0...1.5.0

Version 1.4.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.3.0...1.4.0

Version 1.3.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.2.0...1.3.0

Version 1.2.0

What's Changed

New Contributors

... (truncated)

Commits

Updates @opentelemetry/exporter-trace-otlp-http from 0.213.0 to 0.214.0

Release notes

Sourced from @​opentelemetry/exporter-trace-otlp-http's releases.

experimental/v0.214.0

0.214.0

💥 Breaking Changes

  • feat(configuration)!: rename OTEL_EXPERIMENTAL_CONFIG_FILE to OTEL_CONFIG_FILE #6486 @​maryliag
  • refactor!(otlp-grpc-exporter-base): remove headers from gRPC exporter config type, passing headers now results in a compile-time error instead of being silently ignored #6487

🚀 Features

🐛 Bug Fixes

  • fix(opentelemetry-instrumentation): access require via globalThis to avoid webpack analysis #6481 @​overbalance
  • fix(sdk-logs): fix inflated droppedAttributesCount when updating existing attribute keys #6479 @​overbalance
  • fix(instrumentation-fetch): do not modify the returned type of fetch #6521 @​dyladan
  • fix(opentelemetry-sdk-node): add missing @opentelemetry/otlp-exporter-base dependency #6520 @​gotgenes

🏠 Internal

Commits
  • 7e74509 chore: prepare next release (#6510)
  • c846919 fix(instrumentation-fetch): do not modify the returned type of fetch (#6521)
  • 99fb3fb fix(api): re-introduce fallback chain for global utils (#6523)
  • b842717 test(bundlers): add node webpack tests, expand edge coverage, assert known pr...
  • b5a6b12 fix(opentelemetry-sdk-node): add missing @​opentelemetry/otlp-exporter-base de...
  • dc93ed4 perf(sdk-trace-base): optimize Span.{addEvent,addLink} performance (#6516)
  • e9831e7 perf(sdk-trace-base): avoid Object.entries in Span.setAttributes (#6514)
  • d56af69 chore(deps): lock file maintenance (#6517)
  • f3a10ab chore(deps): update github/codeql-action digest to 3869755 (#6513)
  • 2f73776 chore(deps): update github/codeql-action digest to c6f9311 (#6511)
  • Additional commits viewable in compare view

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

broomva and others added 14 commits March 18, 2026 13:22
Redact npm access tokens from session-2026-02-25-50f4bb4d.md to pass
GitHub push protection.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Add ARCHITECTURE.md, CONTROL_LOOP.md, and OBSERVABILITY.md for the
control metalayer integration. Update .gitignore.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The fumadocs-mdx .source/ directory contains auto-generated files that
don't follow biome formatting rules, causing CI lint failures.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
…y with 23 updates

Bumps the production-dependencies group with 23 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@changesets/changelog-github](https://github.com/changesets/changesets) | `0.5.2` | `0.6.0` |
| [zod](https://github.com/colinhacks/zod) | `3.25.76` | `4.3.6` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.19.15` | `25.4.0` |
| [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `3.23.0` | `4.0.2` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.28` | `19.2.14` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.3.7` | `19.2.3` |
| [@mariozechner/pi-tui](https://github.com/badlogic/pi-mono/tree/HEAD/packages/tui) | `0.55.4` | `0.57.1` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.446.0` | `0.577.0` |
| [next-themes](https://github.com/pacocoursey/next-themes) | `0.3.0` | `0.4.6` |
| [sonner](https://github.com/emilkowalski/sonner) | `1.7.4` | `2.0.7` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `2.6.1` | `3.5.0` |
| [@scalar/nextjs-api-reference](https://github.com/scalar/scalar/tree/HEAD/integrations/nextjs) | `0.9.26` | `0.10.2` |
| [@opentelemetry/sdk-trace-base](https://github.com/open-telemetry/opentelemetry-js) | `1.30.1` | `2.6.0` |
| [@opentelemetry/sdk-trace-node](https://github.com/open-telemetry/opentelemetry-js) | `1.30.1` | `2.6.0` |
| [@opentelemetry/exporter-trace-otlp-http](https://github.com/open-telemetry/opentelemetry-js) | `0.57.2` | `0.213.0` |
| [@opentelemetry/resources](https://github.com/open-telemetry/opentelemetry-js) | `1.30.1` | `2.6.0` |
| [redis](https://github.com/redis/node-redis) | `4.7.1` | `5.11.0` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.34.1` | `0.45.1` |
| [@neondatabase/serverless](https://github.com/neondatabase/serverless) | `0.10.4` | `1.0.2` |
| [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) | `0.25.0` | `0.31.9` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.6.1` | `17.3.1` |
| [@vercel/blob](https://github.com/vercel/storage/tree/HEAD/packages/blob) | `0.27.3` | `2.3.1` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.2.4` | `4.0.18` |



Updates `@changesets/changelog-github` from 0.5.2 to 0.6.0
- [Release notes](https://github.com/changesets/changesets/releases)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/read@0.5.2...@changesets/changelog-github@0.6.0)

Updates `zod` from 3.25.76 to 4.3.6
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.25.76...v4.3.6)

Updates `@types/node` from 22.19.15 to 25.4.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `shiki` from 3.23.0 to 4.0.2
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v4.0.2/packages/shiki)

Updates `@types/react` from 18.3.28 to 19.2.14
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@types/react-dom` from 18.3.7 to 19.2.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@mariozechner/pi-tui` from 0.55.4 to 0.57.1
- [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.57.1/packages/tui)

Updates `lucide-react` from 0.446.0 to 0.577.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.577.0/packages/lucide-react)

Updates `next-themes` from 0.3.0 to 0.4.6
- [Release notes](https://github.com/pacocoursey/next-themes/releases)
- [Commits](pacocoursey/next-themes@v0.3.0...v0.4.6)

Updates `sonner` from 1.7.4 to 2.0.7
- [Release notes](https://github.com/emilkowalski/sonner/releases)
- [Commits](https://github.com/emilkowalski/sonner/commits/v2.0.7)

Updates `tailwind-merge` from 2.6.1 to 3.5.0
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v2.6.1...v3.5.0)

Updates `@scalar/nextjs-api-reference` from 0.9.26 to 0.10.2
- [Release notes](https://github.com/scalar/scalar/releases)
- [Changelog](https://github.com/scalar/scalar/blob/main/integrations/nextjs/CHANGELOG.md)
- [Commits](https://github.com/scalar/scalar/commits/HEAD/integrations/nextjs)

Updates `@opentelemetry/sdk-trace-base` from 1.30.1 to 2.6.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@v1.30.1...v2.6.0)

Updates `@opentelemetry/sdk-trace-node` from 1.30.1 to 2.6.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@v1.30.1...v2.6.0)

Updates `@opentelemetry/exporter-trace-otlp-http` from 0.57.2 to 0.213.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.57.2...experimental/v0.213.0)

Updates `@opentelemetry/resources` from 1.30.1 to 2.6.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@v1.30.1...v2.6.0)

Updates `redis` from 4.7.1 to 5.11.0
- [Release notes](https://github.com/redis/node-redis/releases)
- [Changelog](https://github.com/redis/node-redis/blob/master/CHANGELOG.md)
- [Commits](https://github.com/redis/node-redis/compare/redis@4.7.1...redis@5.11.0)

Updates `drizzle-orm` from 0.34.1 to 0.45.1
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](drizzle-team/drizzle-orm@0.34.1...0.45.1)

Updates `@neondatabase/serverless` from 0.10.4 to 1.0.2
- [Changelog](https://github.com/neondatabase/serverless/blob/main/CHANGELOG.md)
- [Commits](https://github.com/neondatabase/serverless/commits/v1.0.2)

Updates `drizzle-kit` from 0.25.0 to 0.31.9
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/compare/drizzle-kit@0.25.0...drizzle-kit@0.31.9)

Updates `dotenv` from 16.6.1 to 17.3.1
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.6.1...v17.3.1)

Updates `@vercel/blob` from 0.27.3 to 2.3.1
- [Release notes](https://github.com/vercel/storage/releases)
- [Changelog](https://github.com/vercel/storage/blob/main/packages/blob/CHANGELOG.md)
- [Commits](https://github.com/vercel/storage/commits/@vercel/blob@2.3.1/packages/blob)

Updates `vitest` from 3.2.4 to 4.0.18
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.18/packages/vitest)

---
updated-dependencies:
- dependency-name: "@changesets/changelog-github"
  dependency-version: 0.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.3.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.4.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: shiki
  dependency-version: 4.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.14
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@mariozechner/pi-tui"
  dependency-version: 0.57.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: lucide-react
  dependency-version: 0.577.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: next-themes
  dependency-version: 0.4.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: sonner
  dependency-version: 2.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: tailwind-merge
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@scalar/nextjs-api-reference"
  dependency-version: 0.10.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/sdk-trace-base"
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/sdk-trace-node"
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/exporter-trace-otlp-http"
  dependency-version: 0.213.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/resources"
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: redis
  dependency-version: 5.11.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: drizzle-orm
  dependency-version: 0.45.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@neondatabase/serverless"
  dependency-version: 1.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: drizzle-kit
  dependency-version: 0.31.9
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: dotenv
  dependency-version: 17.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@vercel/blob"
  dependency-version: 2.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: vitest
  dependency-version: 4.0.18
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
- Add @types/node to packages/db devDependencies (drizzle-orm v0.45 no
  longer provides it transitively)
- Migrate OpenTelemetry SDK from v1 to v2 API: replace Resource class
  with resourceFromAttributes(), pass spanProcessors via constructor
  instead of addSpanProcessor()
- Fix redis v5 sIsMember return type (number -> boolean) in state adapter
- Regenerate bun.lock to match updated package.json files

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…checkout-6

chore(deps): bump actions/checkout from 4 to 6
…-dependencies-ef100af857

chore(deps): bump the production-dependencies group across 1 directory with 23 updates
…y with 4 updates

Bumps the production-dependencies group with 4 updates in the / directory: [typescript](https://github.com/microsoft/TypeScript), [@mariozechner/pi-tui](https://github.com/badlogic/pi-mono/tree/HEAD/packages/tui), [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) and [@opentelemetry/exporter-trace-otlp-http](https://github.com/open-telemetry/opentelemetry-js).


Updates `typescript` from 5.9.3 to 6.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.2)

Updates `@mariozechner/pi-tui` from 0.57.1 to 0.64.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.64.0/packages/tui)

Updates `lucide-react` from 0.577.0 to 1.7.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.7.0/packages/lucide-react)

Updates `@opentelemetry/exporter-trace-otlp-http` from 0.213.0 to 0.214.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.213.0...experimental/v0.214.0)

---
updated-dependencies:
- dependency-name: typescript
  dependency-version: 6.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@mariozechner/pi-tui"
  dependency-version: 0.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: lucide-react
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/exporter-trace-otlp-http"
  dependency-version: 0.214.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

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 Apr 1, 2026
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