Skip to content

chore(deps): bump the web-npm group in /signalpilot/web with 61 updates - #252

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/signalpilot/web/web-npm-3c863d135e
Closed

chore(deps): bump the web-npm group in /signalpilot/web with 61 updates#252
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/signalpilot/web/web-npm-3c863d135e

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown

Bumps the web-npm group in /signalpilot/web with 61 updates:

Package From To
@anywidget/types 0.2.0 0.4.0
@assistant-ui/react 0.15.1 0.15.8
@clerk/nextjs 6.39.6 7.7.0
@dagrejs/dagre 1.1.8 3.1.0
@glideapps/glide-data-grid 6.0.4-alpha9 6.0.4-alpha24
@mui/material 6.5.0 9.3.1
@open-rpc/client-js 1.8.1 2.0.0
@paralleldrive/cuid2 2.3.1 3.3.0
@tanstack/react-table 8.21.3 9.0.0
@types/react-grid-layout 1.3.6 2.1.0
@uiw/react-codemirror 4.25.4 4.25.11
@uwdata/flechette 1.1.2 2.5.0
@xterm/addon-fit 0.10.0 0.11.0
@xterm/xterm 5.5.0 6.0.0
compassql 0.20.4 0.21.2
cssnano 7.1.9 8.0.4
html-react-parser 5.2.17 6.1.5
iconify-icon 2.3.0 3.0.2
jotai-scope 0.11.0 0.12.1
katex 0.16.47 0.18.1
lucide-react 0.563.0 1.30.0
marked 15.0.12 18.0.9
openapi-fetch 0.9.7 0.17.0
partysocket 1.1.13 1.3.0
radix-ui 1.4.3 1.6.7
react-aria 3.47.0 3.51.0
react-aria-components 1.16.0 1.20.0
react-codemirror-merge 4.25.4 4.25.11
react-dropzone 14.4.1 20.0.0
react-error-boundary 5.0.0 6.1.2
react-grid-layout 1.5.4 2.2.4
react-hook-form 7.54.2 7.84.0
react-markdown 9.1.0 10.1.0
react-resizable-panels 2.1.9 4.12.2
recharts 2.15.4 3.10.1
swiper 12.2.0 14.1.0
use-resize-observer 9.1.0 10.0.0
vega-embed 6.29.0 7.1.0
vega-lite 6.4.2 6.4.3
vscode-jsonrpc 8.2.1 9.0.1
web-vitals 4.2.4 6.1.0
@types/node 22.20.1 26.1.2
eslint 9.39.5 10.8.0
eslint-config-next 16.2.11 16.3.0
typescript 5.9.3 7.0.2
lightningcss-darwin-arm64 1.32.0 1.33.0
lightningcss-darwin-x64 1.32.0 1.33.0
lightningcss-linux-arm64-gnu 1.32.0 1.33.0
lightningcss-linux-arm64-musl 1.32.0 1.33.0
lightningcss-linux-x64-gnu 1.32.0 1.33.0
lightningcss-linux-x64-musl 1.32.0 1.33.0
lightningcss-win32-arm64-msvc 1.32.0 1.33.0
lightningcss-win32-x64-msvc 1.32.0 1.33.0
@tailwindcss/oxide-darwin-arm64 4.2.4 4.3.3
@tailwindcss/oxide-darwin-x64 4.2.4 4.3.3
@tailwindcss/oxide-linux-arm64-gnu 4.2.4 4.3.3
@tailwindcss/oxide-linux-arm64-musl 4.2.4 4.3.3
@tailwindcss/oxide-linux-x64-gnu 4.2.4 4.3.3
@tailwindcss/oxide-linux-x64-musl 4.2.4 4.3.3
@tailwindcss/oxide-win32-arm64-msvc 4.2.4 4.3.3
@tailwindcss/oxide-win32-x64-msvc 4.2.4 4.3.3

Updates @anywidget/types from 0.2.0 to 0.4.0

Release notes

Sourced from @​anywidget/types's releases.

@​anywidget/types@​0.4.0

Minor Changes

  • Allow initialize to return an exports object (#974)

    initialize can now return a plain object to expose a programmatic API for the widget. This API is accessible to parent widgets via host.getWidget().

    export default {
      initialize({ model }) {
        return {
          getValue: () => model.get("value"),
          setValue: (v) => {
            model.set("value", v);
            model.save_changes();
          },
        };
      },
      render({ model, el }) {
        /* ... */
      },
    };

    The return type is distinguished by typeof: functions are treated as cleanup callbacks (existing behavior), objects are treated as exports, and void means neither.

  • Add signal (AbortSignal) to initialize and render props for lifecycle cleanup (#974)

    Both initialize and render now receive an AbortSignal via the signal prop. The signal is aborted when the widget is destroyed (or during HMR). This is the preferred way to manage cleanup going forward — it composes with the broader web platform (addEventListener, fetch, child widgets) and avoids the need to manually track teardown logic.

    The previous callback-based pattern continues to work but is no longer recommended:

    // before
    export default {
      render({ model, el }) {
        let handler = () => { /* ... */ };
        model.on("change:value", handler);
        return () => model.off("change:value", handler);
      },
    };
    // after
    export default {
    render({ model, el, signal }) {
    let handler = () => { /* ... */ };
    model.on("change:value", handler);
    signal.addEventListener("abort", () => model.off("change:value", handler));
    },
    };

... (truncated)

Commits
  • 5789879 Version Packages (#986)
  • 4d15a1f Draft v0.11 release blog post (#991)
  • bd746a4 chore(deps): bump esbuild from 0.21.5 to 0.28.0 in the prod-dependencies grou...
  • c575c88 chore(deps-dev): bump @​typescript/native-preview from 7.0.0-dev.20260410.1 to...
  • aec303e chore(deps): bump @​types/node from 12.20.55 to 25.6.0 (#981)
  • 77c5b81 chore(deps): bump react-dom and @​types/react-dom (#982)
  • cb1f469 chore(deps-dev): bump the dev-dependencies group across 1 directory with 3 up...
  • b76b9c6 Fix orphaned ready promise on widget rebind (#988)
  • 0399b9a Fix HMR race when _esm changes during widget load (#987)
  • bad65ae Rename snake_case identifiers to camelCase (#977)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​anywidget/types since your current version.


Updates @assistant-ui/react from 0.15.1 to 0.15.8

Release notes

Sourced from @​assistant-ui/react's releases.

@​assistant-ui/react-a2a@​0.2.28

Patch Changes

@​assistant-ui/react-o11y@​0.0.38

Patch Changes

@​assistant-ui/react-o11y@​0.0.37

Patch Changes

@​assistant-ui/react-o11y@​0.0.34

Patch Changes

  • #5430 dcacd9b - feat: AuiProvider extends/config grammar. config={AuiConfig({...})} alone creates a top-level root client; nested providers must pass extends — a client to extend, or null to isolate (dev-enforced). An empty config creates a client extending the extends client; ref exposes the resulting client. The config prop only accepts configs built with AuiConfig(...) (branded type). AssistantRuntimeProvider gains an optional config prop whose scopes are provided alongside the runtime scope. The useAui({...}) extension overload and the AuiProvider value prop are deprecated; value={client} now exposes a client extending the given one (same scopes, new identity) rather than the exact instance. useAui({}) with an empty scope object now mounts a rooted host (so the scope set can grow across renders) instead of a passthrough derived-only client. useAuiState state enumeration (Object.keys/spread) now includes scopes inherited from parent clients, matching in-operator behavior. Clients derived from a hand-built parent (a plain object with subscribe/on) forward scoped on(...) listeners to the parent's on instead of throwing for scopes the parent does not expose. (@​Yonom)

  • #5605 afb59f2 - fix: prevent cyclic span parent links from crashing observability trees (@​Kinfe123)

  • Updated dependencies [dcacd9b, aa302ee, aa302ee, 71cf74e]:

    • @​assistant-ui/store@​0.3.4
    • @​assistant-ui/tap@​0.9.10

@​assistant-ui/react@​0.15.5

Patch Changes

  • #5476 02b9dc1 - fix: allow callers to override the default type="button" on action button primitives (@​ephraimduncan)

  • #5564 31a427a - fix: hydrate assistant transport resumes from their retained initial state (@​Kinfe123)

  • #5415 271d85d - fix: AttachmentPrimitive.Thumb now renders custom children and supports asChild instead of always overriding them with the automatic label (@​ephraimduncan)

  • #5421 e7a696c - fix: AttachmentPrimitive.Thumb no longer renders a bare "." for extension-less filenames; falls back to the attachment type (@​ephraimduncan)

  • #5430 dcacd9b - feat: AuiProvider extends/config grammar. config={AuiConfig({...})} alone creates a top-level root client; nested providers must pass extends — a client to extend, or null to isolate (dev-enforced). An empty config creates a client extending the extends client; ref exposes the resulting client. The config prop only accepts configs built with AuiConfig(...) (branded type). AssistantRuntimeProvider gains an optional config prop whose scopes are provided alongside the runtime scope. The useAui({...}) extension overload and the AuiProvider value prop are deprecated; value={client} now exposes a client extending the given one (same scopes, new identity) rather than the exact instance. useAui({}) with an empty scope object now mounts a rooted host (so the scope set can grow across renders) instead of a passthrough derived-only client. useAuiState state enumeration (Object.keys/spread) now includes scopes inherited from parent clients, matching in-operator behavior. Clients derived from a hand-built parent (a plain object with subscribe/on) forward scoped on(...) listeners to the parent's on instead of throwing for scopes the parent does not expose. (@​Yonom)

  • #5416 c5b88f1 - fix: ignore Escape during IME composition in ComposerPrimitiveInput so dismissing a composition candidate no longer cancels the composer (@​ephraimduncan)

... (truncated)

Changelog

Sourced from @​assistant-ui/react's changelog.

0.15.13

Patch Changes

  • #5745 1df4327 - refactor: move ExternalThread, SingleThreadList, and the Assistant augmentation namespace into @​assistant-ui/core (@​Yonom)

  • Updated dependencies [1df4327]:

    • @​assistant-ui/core@​0.3.12

0.15.12

Patch Changes

0.15.11

Patch Changes

  • #5723 94dc3e5 - chore: update dependencies (@​okisdev)

  • #5722 7faf0fb - fix: ExternalThread edit composer reads editing state live, so a same-tick beginEdit + setText + send dispatches the edit; send before beginEdit and double beginEdit now throw (legacy runtime parity) (@​Yonom)

  • Updated dependencies [94dc3e5, ab57969]:

    • assistant-stream@0.3.36
    • assistant-cloud@0.1.39
    • @​assistant-ui/core@​0.3.10
    • safe-content-frame@0.0.27
    • @​assistant-ui/store@​0.3.8
    • @​assistant-ui/tap@​0.9.11

0.15.10

Patch Changes

  • #5720 ab9e765 - fix: route sourceId-carrying edit sends to onEdit instead of the queue adapter, and fail fast on beginEdit without an edit handler (@​Yonom)

  • Updated dependencies [ab9e765]:

    • @​assistant-ui/core@​0.3.9

0.15.9

Patch Changes

  • #5717 99d09c8 - Edit composer send always emits: an unchanged edit re-sends the message on a new branch instead of silently closing the composer. (@​Yonom)

... (truncated)

Commits
Attestation changes

This version has no provenance attestation, while the previous version (0.15.1) was attested. Review the package versions before updating.


Updates @clerk/nextjs from 6.39.6 to 7.7.0

Release notes

Sourced from @​clerk/nextjs's releases.

@​clerk/nextjs@​7.6.4

Patch Changes

@​clerk/nextjs@​7.6.3

Patch Changes

@​clerk/nextjs@​7.6.2

Patch Changes

  • Updated dependencies [6f5fde9]:
    • @​clerk/backend@​3.13.2
    • @​clerk/react@​6.12.8

@​clerk/nextjs@​7.6.1

Patch Changes

  • Updated dependencies [01f2c12]:
    • @​clerk/shared@​4.25.8
    • @​clerk/react@​6.12.8
    • @​clerk/backend@​3.13.1
Changelog

Sourced from @​clerk/nextjs's changelog.

7.7.0

Minor Changes

  • Add <InviteMembersButton />, a control component that opens the organization invite-members form in a modal when clicked, working like <SignInButton mode="modal">. (#9124) by @​alexcarpenter

    Wrap your own button (or omit children for a default one). The button requires an active organization and should be rendered for members who can manage memberships (org:sys_memberships:manage). Opening it without an active organization or that permission is a no-op in production, and throws a descriptive error in development.

    import { InviteMembersButton } from '@clerk/nextjs';
    <InviteMembersButton>
    <button>Invite members</button>
    </InviteMembersButton>;

    This also adds Clerk.openInviteMembers() and Clerk.closeInviteMembers() for opening and closing the modal programmatically.

Patch Changes

7.6.5

Patch Changes

7.6.4

Patch Changes

7.6.3

Patch Changes

... (truncated)

Commits

Updates @dagrejs/dagre from 1.1.8 to 3.1.0

Release notes

Sourced from @​dagrejs/dagre's releases.

v2.0.0

What's Changed

Updated the dependencies to remove or replace Bower, Karma, JSHint and dependent libraries.

The old IIFE style library, for loading as a script tag and including dagre in the global namespace is available in the dagre[.min].js files.

A new import style library is available at dagre.esm.js

Full Changelog: dagrejs/dagre@v1.1.8...v2.0.0

Changelog

Sourced from @​dagrejs/dagre's changelog.

[3.1.0] - 2026

New Features

  • Per-Cluster Direction Support (PR #511): Each cluster/subgraph can now specify its own rankdir, ranksep, nodesep, and align settings. The layout engine recursively applies these settings, enabling complex nested cluster hierarchies with independent flow directions. Fully backward compatible with global rankdir and legacy layouts.
  • Dynamic Graph Layout Support (PR #512): Added support for dynamic graph layouts via useDynamic and corePath configuration options in LayoutConfig. Enables persistent node ordering and layout stability when modifying graph structures.

Refactoring & Fixes

  • TypeScript & Type Safety Improvements: Added ClusterNodeLabel and NodeCollection types, updated NodeLabel interfaces, and eliminated any type assertions across the codebase.
  • Nested Cluster Fixes: Resolved edge cases in nested cluster isolation and improved edge routing for cross-cluster edges.

[3.0.0] - 2026

Major Improvements: TypeScript Migration

  • Full TypeScript Rewrite (PR #509): Migrated the entire core codebase from JavaScript to TypeScript for improved type safety, better IDE autocompletion, and easier maintenance.
  • Native Type Definitions: Removed the need for external @types/dagre packages; high-quality types are now shipped directly with the library.
  • Modern Build Pipeline: * Replaced JSHint with ESLint for stricter code quality.
    • Replaced Browserify/Karma with modern bundling and testing tools.
    • Standardized project indentation to 2 spaces (aligning .eslintrc and .editorconfig).

Refactoring & Fixes

  • Dependency Cleanup: Removed deprecated dependencies including bower.json and legacy test configurations.
  • Module Exports: Standardized ESM and CommonJS exports to ensure compatibility with modern bundlers like Webpack 5, Vite, and Rollup.
  • Internal Logic: Refined internal graph traversal algorithms to utilize TypeScript interfaces, reducing "undefined" runtime errors.

[2.0.0] - Legacy Modernization

Major Changes

  • Organization Transfer: Formally moved the repository to the @dagrejs GitHub organization.
  • Package Renaming: Published under the @dagrejs/dagre npm scope.
  • Dropped Legacy Environments: Discontinued support for extremely old Node.js versions (pre-v10) and legacy browsers that do not support ES6 features.

Fixes

  • Performance Optimizations: Improved layout calculation speeds for large-scale directed graphs.
  • Bug Fixes: Resolved edge cases in rank constraints and node spacing that caused overlapping in specific hierarchical layouts.

[1.0.0] - Initial Stable Release

  • Legacy documentation for versions prior to the @dagrejs migration can be found in the historical archives.
Commits
  • 1e5dd44 Updating the changelog
  • 692bb21 Cleaning up lint, building and bumping the version for release
  • 5f380cc Merge pull request #512 from MatsSchrader/dynamic-graph-support
  • 33a5c83 Merge branch 'master' into dynamic-graph-support
  • a3383cb Merge pull request #511 from sjackson0109/feature/per-cluster-direction
  • 7049ce6 refactor: simplify Graph construction, remove unused subgraphRankdirs, clean ...
  • aef3eb9 approved changes
  • b8049d4 refactor: remove dead layoutWithContext code; move per-cluster notes to chang...
  • d7650e2 chore: remove AI plan block comments and stale inline annotations from layout.ts
  • 04d4f13 refactor(nesting-graph): remove 'as any' cast on graph.graph() (r3218970427)
  • Additional commits viewable in compare view

Updates @glideapps/glide-data-grid from 6.0.4-alpha9 to 6.0.4-alpha24

Commits

Updates @mui/material from 6.5.0 to 9.3.1

Release notes

Sourced from @​mui/material's releases.

v9.3.1

A big thanks to the 4 contributors who made this release possible.

@mui/material@9.3.1

@mui/codemod@9.3.1

Core

All contributors of this release in alphabetical order: @​brijeshb42, @​DanailH, @​silviuaavram, @​ZeeshanTamboli

v9.3.0

A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:

  • ♿️ Keyboard navigation in the Toggle Button Group now follows the roving tabindex pattern.
  • ♿️ The Autocomplete announces its loading and no options messages through a new status slot.

@mui/material@9.3.0

@mui/system@9.3.0

@mui/codemod@9.3.0

Docs

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

9.3.1

Aug 6, 2026

A big thanks to the 4 contributors who made this release possible.

@mui/material@9.3.1

@mui/codemod@9.3.1

Core

All contributors of this release in alphabetical order: @​brijeshb42, @​DanailH, @​silviuaavram, @​ZeeshanTamboli

9.3.0

Aug 4, 2026

A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:

  • ♿️ Keyboard navigation in the Toggle Button Group now follows the roving tabindex pattern.
  • ♿️ The Autocomplete announces its loading and no options messages through a new status slot.

@mui/material@9.3.0

@mui/system@9.3.0

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​mui/material since your current version.


Updates @open-rpc/client-js from 1.8.1 to 2.0.0

Release notes

Sourced from @​open-rpc/client-js's releases.

2.0.0

2.0.0 (2025-10-29)

Features

  • This change is breaking introduces ESM builds, ES2022 and bundling to (1096a86)

BREAKING CHANGES

  • CommonJS and ES5 no longer supported
Changelog

Sourced from @​open-rpc/client-js's changelog.

2.0.0 (2025-10-29)

Features

  • This change is breaking introduces ESM builds, ES2022 and bundling to (1096a86)

BREAKING CHANGES

  • CommonJS and ES5 no longer supported
Commits
  • 747c639 chore(release): 2.0.0 [skip ci]
  • 4312a28 Merge pull request #350 from open-rpc/feat/esm
  • 1096a86 feat: This change is breaking introduces ESM builds, ES2022 and bundling to
  • 6639ee3 Merge pull request #349 from open-rpc/fix/funding
  • de41c82 chore: bump ci
  • e4b9b29 chore: add funding.json
  • See full diff in compare view

Updates @paralleldrive/cuid2 from 2.3.1 to 3.3.0

Changelog

Sourced from @​paralleldrive/cuid2's changelog.

[3.3.0] - 2026-01-25

Fixed

  • Fix typo in package.json exports field: ./package.json path was incorrectly specified
  • Fix TypeScript compilation error (TS1203) by replacing export = with named exports in index.d.ts

Updated

  • Update AI development framework (aidd) to v2.5.0 for enhanced security reviews
  • Update all devDependencies to latest versions (@​types/node, @​types/react, eslint, eslint-config-next, eslint-config-prettier, eslint-plugin-prettier, next, prettier, react, react-dom, release-it, riteway, updtr, watch)

[3.0.2] - 2025-10-27

Changed

  • Remove collision-test from pre-commit hook to unblock release process

Fixed

  • Replace BigInt with bignumber.js for broader browser support (legacy browsers)
  • Add export module field to package.json for better ESM compatibility

Added

  • Implement CSPRNG using crypto.getRandomValues for enhanced security
  • Add validation to throw error when length > 32

Documentation

  • Fix typo: Change "Pseudo" to "Pseudo" in README.md
  • Update link for PleaseRobMe.com

[3.0.0] - 2025-10-18

⚠️ BREAKING CHANGES

  • Convert entire project from CommonJS to ES modules
    • Changed from require()/module.exports to import/export
    • Added "type": "module" to package.json
    • Users must use ESM imports or upgrade to this version carefully
    • For CommonJS compatibility, use v2.3.1 instead
Commits
  • 2275e80 chore(release): v3.3.0
  • 3af6f1b chore: update CHANGELOG for v3.2.1
  • ee1ff97 Merge pull request #119 from paralleldrive/update
  • 59541b5 chore: downgrade packages for security
  • aebdc31 chore: remove legacy Travis CI config
  • 71b5d09 ci: add GitHub Actions workflow
  • d044cfe chore: update dependencies and AI framework
  • 3bec9b1 Merge pull request #116 from paralleldrive/copilot/fix-typescript-error-ts1203
  • a910d6e Delete REVIEW.md
  • 76b5c83 docs: add comprehensive code review for TS1203 fix
  • Additional commits viewable in compare view
Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Updates @tanstack/react-table from 8.21.3 to 9.0.0

Release notes

Sourced from

Bumps the web-npm group in /signalpilot/web with 61 updates:

| Package | From | To |
| --- | --- | --- |
| [@anywidget/types](https://github.com/manzt/anywidget) | `0.2.0` | `0.4.0` |
| [@assistant-ui/react](https://github.com/assistant-ui/assistant-ui/tree/HEAD/packages/react) | `0.15.1` | `0.15.8` |
| [@clerk/nextjs](https://github.com/clerk/javascript/tree/HEAD/packages/nextjs) | `6.39.6` | `7.7.0` |
| [@dagrejs/dagre](https://github.com/dagrejs/dagre) | `1.1.8` | `3.1.0` |
| [@glideapps/glide-data-grid](https://github.com/glideapps/glide-data-grid/tree/HEAD/packages/core) | `6.0.4-alpha9` | `6.0.4-alpha24` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `6.5.0` | `9.3.1` |
| [@open-rpc/client-js](https://github.com/open-rpc/client-js) | `1.8.1` | `2.0.0` |
| [@paralleldrive/cuid2](https://github.com/ericelliott/cuid2) | `2.3.1` | `3.3.0` |
| [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) | `8.21.3` | `9.0.0` |
| [@types/react-grid-layout](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-grid-layout) | `1.3.6` | `2.1.0` |
| [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror) | `4.25.4` | `4.25.11` |
| [@uwdata/flechette](https://github.com/uwdata/flechette) | `1.1.2` | `2.5.0` |
| [@xterm/addon-fit](https://github.com/xtermjs/xterm.js) | `0.10.0` | `0.11.0` |
| [@xterm/xterm](https://github.com/xtermjs/xterm.js) | `5.5.0` | `6.0.0` |
| [compassql](https://github.com/uwdata/CompassQL) | `0.20.4` | `0.21.2` |
| [cssnano](https://github.com/cssnano/cssnano) | `7.1.9` | `8.0.4` |
| [html-react-parser](https://github.com/remarkablemark/html-react-parser) | `5.2.17` | `6.1.5` |
| [iconify-icon](https://github.com/iconify/iconify/tree/HEAD/iconify-icon/icon) | `2.3.0` | `3.0.2` |
| [jotai-scope](https://github.com/jotaijs/jotai-scope) | `0.11.0` | `0.12.1` |
| [katex](https://github.com/KaTeX/KaTeX) | `0.16.47` | `0.18.1` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.563.0` | `1.30.0` |
| [marked](https://github.com/markedjs/marked) | `15.0.12` | `18.0.9` |
| [openapi-fetch](https://github.com/openapi-ts/openapi-typescript/tree/HEAD/packages/openapi-fetch) | `0.9.7` | `0.17.0` |
| [partysocket](https://github.com/cloudflare/partykit/tree/HEAD/packages/partysocket) | `1.1.13` | `1.3.0` |
| [radix-ui](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/radix-ui) | `1.4.3` | `1.6.7` |
| [react-aria](https://github.com/adobe/react-spectrum) | `3.47.0` | `3.51.0` |
| [react-aria-components](https://github.com/adobe/react-spectrum) | `1.16.0` | `1.20.0` |
| [react-codemirror-merge](https://github.com/uiwjs/react-codemirror) | `4.25.4` | `4.25.11` |
| [react-dropzone](https://github.com/react-dropzone/react-dropzone) | `14.4.1` | `20.0.0` |
| [react-error-boundary](https://github.com/bvaughn/react-error-boundary) | `5.0.0` | `6.1.2` |
| [react-grid-layout](https://github.com/STRML/react-grid-layout) | `1.5.4` | `2.2.4` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.84.0` |
| [react-markdown](https://github.com/remarkjs/react-markdown) | `9.1.0` | `10.1.0` |
| [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `2.1.9` | `4.12.2` |
| [recharts](https://github.com/recharts/recharts) | `2.15.4` | `3.10.1` |
| [swiper](https://github.com/nolimits4web/Swiper) | `12.2.0` | `14.1.0` |
| [use-resize-observer](https://github.com/ZeeCoder/use-resize-observer) | `9.1.0` | `10.0.0` |
| [vega-embed](https://github.com/vega/vega-embed) | `6.29.0` | `7.1.0` |
| [vega-lite](https://github.com/vega/vega-lite) | `6.4.2` | `6.4.3` |
| [vscode-jsonrpc](https://github.com/Microsoft/vscode-languageserver-node/tree/HEAD/jsonrpc) | `8.2.1` | `9.0.1` |
| [web-vitals](https://github.com/GoogleChrome/web-vitals) | `4.2.4` | `6.1.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.20.1` | `26.1.2` |
| [eslint](https://github.com/eslint/eslint) | `9.39.5` | `10.8.0` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.2.11` | `16.3.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `7.0.2` |
| [lightningcss-darwin-arm64](https://github.com/parcel-bundler/lightningcss) | `1.32.0` | `1.33.0` |
| [lightningcss-darwin-x64](https://github.com/parcel-bundler/lightningcss) | `1.32.0` | `1.33.0` |
| [lightningcss-linux-arm64-gnu](https://github.com/parcel-bundler/lightningcss) | `1.32.0` | `1.33.0` |
| [lightningcss-linux-arm64-musl](https://github.com/parcel-bundler/lightningcss) | `1.32.0` | `1.33.0` |
| [lightningcss-linux-x64-gnu](https://github.com/parcel-bundler/lightningcss) | `1.32.0` | `1.33.0` |
| [lightningcss-linux-x64-musl](https://github.com/parcel-bundler/lightningcss) | `1.32.0` | `1.33.0` |
| [lightningcss-win32-arm64-msvc](https://github.com/parcel-bundler/lightningcss) | `1.32.0` | `1.33.0` |
| [lightningcss-win32-x64-msvc](https://github.com/parcel-bundler/lightningcss) | `1.32.0` | `1.33.0` |
| [@tailwindcss/oxide-darwin-arm64](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/crates/node/npm/darwin-arm64) | `4.2.4` | `4.3.3` |
| [@tailwindcss/oxide-darwin-x64](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/crates/node/npm/darwin-x64) | `4.2.4` | `4.3.3` |
| [@tailwindcss/oxide-linux-arm64-gnu](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/crates/node/npm/linux-arm64-gnu) | `4.2.4` | `4.3.3` |
| [@tailwindcss/oxide-linux-arm64-musl](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/crates/node/npm/linux-arm64-musl) | `4.2.4` | `4.3.3` |
| [@tailwindcss/oxide-linux-x64-gnu](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/crates/node/npm/linux-x64-gnu) | `4.2.4` | `4.3.3` |
| [@tailwindcss/oxide-linux-x64-musl](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/crates/node/npm/linux-x64-musl) | `4.2.4` | `4.3.3` |
| [@tailwindcss/oxide-win32-arm64-msvc](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/crates/node/npm/win32-arm64-msvc) | `4.2.4` | `4.3.3` |
| [@tailwindcss/oxide-win32-x64-msvc](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/crates/node/npm/win32-x64-msvc) | `4.2.4` | `4.3.3` |


Updates `@anywidget/types` from 0.2.0 to 0.4.0
- [Release notes](https://github.com/manzt/anywidget/releases)
- [Commits](https://github.com/manzt/anywidget/compare/@anywidget/types@0.2.0...@anywidget/types@0.4.0)

Updates `@assistant-ui/react` from 0.15.1 to 0.15.8
- [Release notes](https://github.com/assistant-ui/assistant-ui/releases)
- [Changelog](https://github.com/assistant-ui/assistant-ui/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/assistant-ui/assistant-ui/commits/HEAD/packages/react)

Updates `@clerk/nextjs` from 6.39.6 to 7.7.0
- [Release notes](https://github.com/clerk/javascript/releases)
- [Changelog](https://github.com/clerk/javascript/blob/main/packages/nextjs/CHANGELOG.md)
- [Commits](https://github.com/clerk/javascript/commits/HEAD/packages/nextjs)

Updates `@dagrejs/dagre` from 1.1.8 to 3.1.0
- [Release notes](https://github.com/dagrejs/dagre/releases)
- [Changelog](https://github.com/dagrejs/dagre/blob/master/changelog.md)
- [Commits](dagrejs/dagre@v1.1.8...v3.1.0)

Updates `@glideapps/glide-data-grid` from 6.0.4-alpha9 to 6.0.4-alpha24
- [Release notes](https://github.com/glideapps/glide-data-grid/releases)
- [Changelog](https://github.com/glideapps/glide-data-grid/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/glideapps/glide-data-grid/commits/v6.0.4-alpha24/packages/core)

Updates `@mui/material` from 6.5.0 to 9.3.1
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v9.3.1/packages/mui-material)

Updates `@open-rpc/client-js` from 1.8.1 to 2.0.0
- [Release notes](https://github.com/open-rpc/client-js/releases)
- [Changelog](https://github.com/open-rpc/client-js/blob/master/CHANGELOG.md)
- [Commits](open-rpc/client-js@1.8.1...2.0.0)

Updates `@paralleldrive/cuid2` from 2.3.1 to 3.3.0
- [Changelog](https://github.com/paralleldrive/cuid2/blob/main/CHANGELOG.md)
- [Commits](paralleldrive/cuid2@v2.3.1...v3.3.0)

Updates `@tanstack/react-table` from 8.21.3 to 9.0.0
- [Release notes](https://github.com/TanStack/table/releases)
- [Changelog](https://github.com/TanStack/table/blob/main/packages/react-table/CHANGELOG.md)
- [Commits](https://github.com/TanStack/table/commits/@tanstack/react-table@9.0.0/packages/react-table)

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

Updates `@uiw/react-codemirror` from 4.25.4 to 4.25.11
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.25.4...v4.25.11)

Updates `@uwdata/flechette` from 1.1.2 to 2.5.0
- [Release notes](https://github.com/uwdata/flechette/releases)
- [Commits](uwdata/flechette@v1.1.2...v2.5.0)

Updates `@xterm/addon-fit` from 0.10.0 to 0.11.0
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](xtermjs/xterm.js@0.10...0.11)

Updates `@xterm/xterm` from 5.5.0 to 6.0.0
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](xtermjs/xterm.js@5.5.0...6.0.0)

Updates `compassql` from 0.20.4 to 0.21.2
- [Release notes](https://github.com/uwdata/CompassQL/releases)
- [Commits](vega/compassql@v0.20.4...v0.21.2)

Updates `cssnano` from 7.1.9 to 8.0.4
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/cssnano@7.1.9...cssnano@8.0.4)

Updates `html-react-parser` from 5.2.17 to 6.1.5
- [Release notes](https://github.com/remarkablemark/html-react-parser/releases)
- [Changelog](https://github.com/remarkablemark/html-react-parser/blob/master/CHANGELOG.md)
- [Commits](remarkablemark/html-react-parser@v5.2.17...v6.1.5)

Updates `iconify-icon` from 2.3.0 to 3.0.2
- [Commits](https://github.com/iconify/iconify/commits/HEAD/iconify-icon/icon)

Updates `jotai-scope` from 0.11.0 to 0.12.1
- [Release notes](https://github.com/jotaijs/jotai-scope/releases)
- [Commits](jotaijs/jotai-scope@v0.11.0...v0.12.1)

Updates `katex` from 0.16.47 to 0.18.1
- [Release notes](https://github.com/KaTeX/KaTeX/releases)
- [Changelog](https://github.com/KaTeX/KaTeX/blob/main/CHANGELOG.md)
- [Commits](KaTeX/KaTeX@v0.16.47...v0.18.1)

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

Updates `marked` from 15.0.12 to 18.0.9
- [Release notes](https://github.com/markedjs/marked/releases)
- [Commits](markedjs/marked@v15.0.12...v18.0.9)

Updates `openapi-fetch` from 0.9.7 to 0.17.0
- [Release notes](https://github.com/openapi-ts/openapi-typescript/releases)
- [Changelog](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-fetch/CHANGELOG.md)
- [Commits](https://github.com/openapi-ts/openapi-typescript/commits/openapi-fetch@0.17.0/packages/openapi-fetch)

Updates `partysocket` from 1.1.13 to 1.3.0
- [Release notes](https://github.com/cloudflare/partykit/releases)
- [Changelog](https://github.com/cloudflare/partykit/blob/main/packages/partysocket/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/partykit/commits/partysocket@1.3.0/packages/partysocket)

Updates `radix-ui` from 1.4.3 to 1.6.7
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/radix-ui/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/1.6.7/packages/react/radix-ui)

Updates `react-aria` from 3.47.0 to 3.51.0
- [Release notes](https://github.com/adobe/react-spectrum/releases)
- [Commits](https://github.com/adobe/react-spectrum/compare/react-aria@3.47.0...react-aria@3.51.0)

Updates `react-aria-components` from 1.16.0 to 1.20.0
- [Release notes](https://github.com/adobe/react-spectrum/releases)
- [Commits](https://github.com/adobe/react-spectrum/compare/react-aria-components@1.16.0...react-aria-components@1.20.0)

Updates `react-codemirror-merge` from 4.25.4 to 4.25.11
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.25.4...v4.25.11)

Updates `react-dropzone` from 14.4.1 to 20.0.0
- [Release notes](https://github.com/react-dropzone/react-dropzone/releases)
- [Commits](react-dropzone/react-dropzone@v14.4.1...v20.0.0)

Updates `react-error-boundary` from 5.0.0 to 6.1.2
- [Release notes](https://github.com/bvaughn/react-error-boundary/releases)
- [Commits](bvaughn/react-error-boundary@5.0.0...6.1.2)

Updates `react-grid-layout` from 1.5.4 to 2.2.4
- [Release notes](https://github.com/STRML/react-grid-layout/releases)
- [Changelog](https://github.com/react-grid-layout/react-grid-layout/blob/master/CHANGELOG.md)
- [Commits](react-grid-layout/react-grid-layout@1.5.4...v2.2.4)

Updates `react-hook-form` from 7.54.2 to 7.84.0
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.54.2...v7.84.0)

Updates `react-markdown` from 9.1.0 to 10.1.0
- [Release notes](https://github.com/remarkjs/react-markdown/releases)
- [Changelog](https://github.com/remarkjs/react-markdown/blob/main/changelog.md)
- [Commits](remarkjs/react-markdown@9.1.0...10.1.0)

Updates `react-resizable-panels` from 2.1.9 to 4.12.2
- [Release notes](https://github.com/bvaughn/react-resizable-panels/releases)
- [Changelog](https://github.com/bvaughn/react-resizable-panels/blob/main/CHANGELOG.md)
- [Commits](bvaughn/react-resizable-panels@2.1.9...4.12.2)

Updates `recharts` from 2.15.4 to 3.10.1
- [Release notes](https://github.com/recharts/recharts/releases)
- [Changelog](https://github.com/recharts/recharts/blob/main/CHANGELOG.md)
- [Commits](recharts/recharts@v2.15.4...v3.10.1)

Updates `swiper` from 12.2.0 to 14.1.0
- [Release notes](https://github.com/nolimits4web/Swiper/releases)
- [Changelog](https://github.com/nolimits4web/swiper/blob/master/CHANGELOG.md)
- [Commits](nolimits4web/swiper@v12.2.0...v14.1.0)

Updates `use-resize-observer` from 9.1.0 to 10.0.0
- [Release notes](https://github.com/ZeeCoder/use-resize-observer/releases)
- [Changelog](https://github.com/ZeeCoder/use-resize-observer/blob/master/CHANGELOG.md)
- [Commits](ZeeCoder/use-resize-observer@v9.1.0...v10.0.0)

Updates `vega-embed` from 6.29.0 to 7.1.0
- [Release notes](https://github.com/vega/vega-embed/releases)
- [Changelog](https://github.com/vega/vega-embed/blob/main/CHANGELOG.md)
- [Commits](vega/vega-embed@v6.29.0...v7.1.0)

Updates `vega-lite` from 6.4.2 to 6.4.3
- [Release notes](https://github.com/vega/vega-lite/releases)
- [Changelog](https://github.com/vega/vega-lite/blob/main/CHANGELOG.md)
- [Commits](vega/vega-lite@v6.4.2...v6.4.3)

Updates `vscode-jsonrpc` from 8.2.1 to 9.0.1
- [Release notes](https://github.com/Microsoft/vscode-languageserver-node/releases)
- [Commits](https://github.com/Microsoft/vscode-languageserver-node/commits/release/client/9.0.1/jsonrpc)

Updates `web-vitals` from 4.2.4 to 6.1.0
- [Changelog](https://github.com/GoogleChrome/web-vitals/blob/main/CHANGELOG.md)
- [Commits](GoogleChrome/web-vitals@v4.2.4...v6.1.0)

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

Updates `eslint` from 9.39.5 to 10.8.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.5...v10.8.0)

Updates `eslint-config-next` from 16.2.11 to 16.3.0
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/commits/v16.3.0/packages/eslint-config-next)

Updates `typescript` from 5.9.3 to 7.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/commits)

Updates `lightningcss-darwin-arm64` from 1.32.0 to 1.33.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](parcel-bundler/lightningcss@v1.32.0...v1.33.0)

Updates `lightningcss-darwin-x64` from 1.32.0 to 1.33.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](parcel-bundler/lightningcss@v1.32.0...v1.33.0)

Updates `lightningcss-linux-arm64-gnu` from 1.32.0 to 1.33.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](parcel-bundler/lightningcss@v1.32.0...v1.33.0)

Updates `lightningcss-linux-arm64-musl` from 1.32.0 to 1.33.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](parcel-bundler/lightningcss@v1.32.0...v1.33.0)

Updates `lightningcss-linux-x64-gnu` from 1.32.0 to 1.33.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](parcel-bundler/lightningcss@v1.32.0...v1.33.0)

Updates `lightningcss-linux-x64-musl` from 1.32.0 to 1.33.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](parcel-bundler/lightningcss@v1.32.0...v1.33.0)

Updates `lightningcss-win32-arm64-msvc` from 1.32.0 to 1.33.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](parcel-bundler/lightningcss@v1.32.0...v1.33.0)

Updates `lightningcss-win32-x64-msvc` from 1.32.0 to 1.33.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](parcel-bundler/lightningcss@v1.32.0...v1.33.0)

Updates `@tailwindcss/oxide-darwin-arm64` from 4.2.4 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/crates/node/npm/darwin-arm64)

Updates `@tailwindcss/oxide-darwin-x64` from 4.2.4 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/crates/node/npm/darwin-x64)

Updates `@tailwindcss/oxide-linux-arm64-gnu` from 4.2.4 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/crates/node/npm/linux-arm64-gnu)

Updates `@tailwindcss/oxide-linux-arm64-musl` from 4.2.4 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/crates/node/npm/linux-arm64-musl)

Updates `@tailwindcss/oxide-linux-x64-gnu` from 4.2.4 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/crates/node/npm/linux-x64-gnu)

Updates `@tailwindcss/oxide-linux-x64-musl` from 4.2.4 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/crates/node/npm/linux-x64-musl)

Updates `@tailwindcss/oxide-win32-arm64-msvc` from 4.2.4 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/crates/node/npm/win32-arm64-msvc)

Updates `@tailwindcss/oxide-win32-x64-msvc` from 4.2.4 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/crates/node/npm/win32-x64-msvc)

---
updated-dependencies:
- dependency-name: "@anywidget/types"
  dependency-version: 0.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: "@assistant-ui/react"
  dependency-version: 0.15.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-npm
- dependency-name: "@clerk/nextjs"
  dependency-version: 7.7.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: "@dagrejs/dagre"
  dependency-version: 3.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: "@glideapps/glide-data-grid"
  dependency-version: 6.0.4-alpha24
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-npm
- dependency-name: "@mui/material"
  dependency-version: 9.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: "@open-rpc/client-js"
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: "@paralleldrive/cuid2"
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: "@tanstack/react-table"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: "@types/react-grid-layout"
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: "@uiw/react-codemirror"
  dependency-version: 4.25.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-npm
- dependency-name: "@uwdata/flechette"
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: "@xterm/addon-fit"
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: "@xterm/xterm"
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: compassql
  dependency-version: 0.21.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: cssnano
  dependency-version: 8.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: html-react-parser
  dependency-version: 6.1.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: iconify-icon
  dependency-version: 3.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: jotai-scope
  dependency-version: 0.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: katex
  dependency-version: 0.18.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: lucide-react
  dependency-version: 1.30.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: marked
  dependency-version: 18.0.9
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: openapi-fetch
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: partysocket
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: radix-ui
  dependency-version: 1.6.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: react-aria
  dependency-version: 3.51.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: react-aria-components
  dependency-version: 1.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: react-codemirror-merge
  dependency-version: 4.25.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-npm
- dependency-name: react-dropzone
  dependency-version: 20.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: react-error-boundary
  dependency-version: 6.1.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: react-grid-layout
  dependency-version: 2.2.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: react-hook-form
  dependency-version: 7.84.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: react-markdown
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: react-resizable-panels
  dependency-version: 4.12.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: recharts
  dependency-version: 3.10.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: swiper
  dependency-version: 14.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: use-resize-observer
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: vega-embed
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: vega-lite
  dependency-version: 6.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-npm
- dependency-name: vscode-jsonrpc
  dependency-version: 9.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: web-vitals
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: "@types/node"
  dependency-version: 26.1.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: eslint
  dependency-version: 10.8.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: eslint-config-next
  dependency-version: 16.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: lightningcss-darwin-arm64
  dependency-version: 1.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: lightningcss-darwin-x64
  dependency-version: 1.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: lightningcss-linux-arm64-gnu
  dependency-version: 1.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: lightningcss-linux-arm64-musl
  dependency-version: 1.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: lightningcss-linux-x64-gnu
  dependency-version: 1.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: lightningcss-linux-x64-musl
  dependency-version: 1.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: lightningcss-win32-arm64-msvc
  dependency-version: 1.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: lightningcss-win32-x64-msvc
  dependency-version: 1.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: "@tailwindcss/oxide-darwin-arm64"
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: "@tailwindcss/oxide-darwin-x64"
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: "@tailwindcss/oxide-linux-arm64-gnu"
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: "@tailwindcss/oxide-linux-arm64-musl"
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: "@tailwindcss/oxide-linux-x64-gnu"
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: "@tailwindcss/oxide-linux-x64-musl"
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: "@tailwindcss/oxide-win32-arm64-msvc"
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: "@tailwindcss/oxide-win32-x64-msvc"
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Author

Labels

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

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

@vercel

vercel Bot commented Aug 10, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
signal-pilot Error Error Aug 10, 2026 1:20pm
signal-pilot-docs Ready Ready Preview Aug 10, 2026 1:20pm

Request Review

@dependabot @github

dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown
Author

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

@dependabot dependabot Bot closed this Aug 17, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/signalpilot/web/web-npm-3c863d135e branch August 17, 2026 13:13
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