Skip to content

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

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/signalpilot/web/web-npm-e9ff0ed3e3
Open

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

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 17, 2026

Copy link
Copy Markdown

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

Package From To
@anywidget/types 0.2.0 0.4.0
@clerk/nextjs 6.39.5 7.5.4
@dagrejs/dagre 1.1.8 3.0.0
@glideapps/glide-data-grid 6.0.4-alpha9 6.0.4-alpha24
@mui/material 6.5.0 9.1.1
@open-rpc/client-js 1.8.1 2.0.0
@paralleldrive/cuid2 2.3.1 3.3.0
@types/react-grid-layout 1.3.6 2.1.0
@uiw/react-codemirror 4.25.4 4.25.10
@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.2
html-react-parser 5.2.17 6.1.3
iconify-icon 2.3.0 3.0.2
katex 0.16.47 0.17.0
lucide-react 0.563.0 1.20.0
marked 15.0.12 18.0.5
openapi-fetch 0.9.7 0.17.0
partysocket 1.1.13 1.2.0
radix-ui 1.4.3 1.6.0
react-aria 3.47.0 3.49.0
react-aria-components 1.16.0 1.18.0
react-codemirror-merge 4.25.4 4.25.10
react-dropzone 14.4.1 15.0.0
react-error-boundary 5.0.0 6.1.2
react-grid-layout 1.5.3 2.2.3
react-hook-form 7.54.2 7.79.0
react-markdown 9.1.0 10.1.0
react-resizable-panels 2.1.9 4.11.2
recharts 2.15.4 3.8.1
vega-embed 6.29.0 7.1.0
vega-lite 6.4.2 6.4.3
vscode-jsonrpc 8.2.1 9.0.0
web-vitals 4.2.4 5.3.0
@types/node 22.19.21 25.9.3
eslint 9.39.4 10.5.0
eslint-config-next 16.2.4 16.2.9
typescript 5.9.3 6.0.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 @clerk/nextjs from 6.39.5 to 7.5.4

Release notes

Sourced from @​clerk/nextjs's releases.

@​clerk/nextjs@​7.5.3

Patch Changes

@​clerk/nextjs@​7.5.2

Patch Changes

@​clerk/nextjs@​7.5.1

Patch Changes

  • Updated dependencies [a5c7bc7]:
    • @​clerk/shared@​4.17.0
    • @​clerk/react@​6.9.0
    • @​clerk/backend@​3.6.1

@​clerk/nextjs@​7.5.0

Minor Changes

  • Remove the <ConfigureSSO /> component from the public API in favor of usage within OrganizationProfile (#8779) by @​LauraBeatris

    Removing these exports has no breaking changes impact on production applications, as was never released as a GA component

Patch Changes

  • Harden middleware debug log output: the formatter now recursively truncates known credential keys (sessionToken, tokenInHeader, sessionTokenInCookie, secretKey, jwtKey) at any nesting depth, so a bearer token can no longer reach the logs even if a debug producer nests one. This is a defense-in-depth backstop alongside the source-level redaction in @clerk/backend. (#8744) by @​jacekradko

  • Add and improve JSDoc comments across public types and methods to support generated reference documentation for the /objects docs section. Exports a few previously-internal types (OnEventListener, OffEventListener, ClerkOptionsNavigation) so they can be referenced from the generated docs. (#8276) by @​alexisintech

  • Updated dependencies [83f50f6, 2d6670c, e7cb503, 83f50f6, af706e3, 48b187d, 27c4d75, 955e998, 032632c, 0fece6f, b295af3, 0c854c3, 27c4d75, 8e1bd48]:

    • @​clerk/react@​6.8.0
    • @​clerk/shared@​4.16.0
    • @​clerk/backend@​3.6.0

@​clerk/nextjs@​7.4.3

Patch Changes

... (truncated)

Changelog

Sourced from @​clerk/nextjs's changelog.

7.5.4

Patch Changes

7.5.3

Patch Changes

7.5.2

Patch Changes

7.5.1

Patch Changes

  • Updated dependencies [a5c7bc7]:
    • @​clerk/shared@​4.17.0
    • @​clerk/react@​6.9.0
    • @​clerk/backend@​3.6.1

7.5.0

Minor Changes

  • Remove the <ConfigureSSO /> component from the public API in favor of usage within OrganizationProfile (#8779) by @​LauraBeatris

    Removing these exports has no breaking changes impact on production applications, as was never released as a GA component

Patch Changes

  • Harden middleware debug log output: the formatter now recursively truncates known credential keys (sessionToken, tokenInHeader, sessionTokenInCookie, secretKey, jwtKey) at any nesting depth, so a bearer token can no longer reach the logs even if a debug producer nests one. This is a defense-in-depth backstop alongside the source-level redaction in @clerk/backend. (#8744) by @​jacekradko

... (truncated)

Commits

Updates @dagrejs/dagre from 1.1.8 to 3.0.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.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
  • 5bbd601 Copying minor changes from graphlib to dagre release
  • 80e2257 Typo in the release
  • 68cda58 Bumping version and building for release
  • d17ea43 Merge pull request #509 from wandri/feat-convert-the-package-into-TypeScript
  • 2dcebc1 feat: convert the package into TypeScript
  • 2595d05 Building with graphlib 4.0
  • 0b35778 Merge pull request #508 from meganlee18/meganlee
  • 7c28961 Add missing constraints to layout configuration
  • 9d445b2 Bump version and set as pre-release
  • a7c0bd1 Bumping version for release
  • 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.1.1

Release notes

Sourced from @​mui/material's releases.

v9.1.0

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

@mui/material@9.1.0

@mui/utils@9.1.0

Docs

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

9.1.1

Jun 11, 2026

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

@mui/material@9.1.1

@mui/styled-engine@9.1.1

  • [styled-engine] Prevent enableCssLayer styles from being overridden by unlayered styles (#48603) @​Janpot

Docs

Core

All contributors of this release in alphabetical order: @​aemartos, @​brijeshb42, @​ifer47, @​Janpot, @​LukasTy, @​oliviertassinari, @​rluzists1, @​siriwatknp, @​vipin8797

9.1.0

Jun 8, 2026

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

@mui/material@9.1.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 @types/react-grid-layout from 1.3.6 to 2.1.0

Commits

Updates @uiw/react-codemirror from 4.25.4 to 4.25.10

Release notes

Sourced from @​uiw/react-codemirror's releases.

v4.25.10

Buy me a coffee

Documentation v4.25.10: https://raw.githack.com/uiwjs/react-codemirror/5e24acf/index.html
Comparing Changes: uiwjs/react-codemirror@v4.25.9...v4.25.10

npm i @uiw/react-codemirror@4.25.10

v4.25.9

Buy me a coffee

Documentation v4.25.9: https://raw.githack.com/uiwjs/react-codemirror/6b3db64/index.html
Comparing Changes: uiwjs/react-codemirror@v4.25.8...v4.25.9

npm i @uiw/react-codemirror@4.25.9

v4.25.8

Buy me a coffee

Documentation v4.25.8: https://raw.githack.com/uiwjs/react-codemirror/03129ff/index.html
Comparing Changes: uiwjs/react-codemirror@v4.25.7...v4.25.8

npm i @uiw/react-codemirror@4.25.8
  • 🐞 fix: Set correct module type in all packages (#763) bfcca91 @​Methuselah96
  • 🐞 fix(package): update workspace glob patterns for themes and extensions f605ec5 @​jaywcjlove

... (truncated)

Commits

Updates @uwdata/flechette from 1.1.2 to 2.5.0

Release notes

Sourced from @​uwdata/flechette's releases.

v2.5.0

What's Changed

New Contributors

Full Changelog: uwdata/flechette@v2.4.0...v2.5.0

v2.4.0

What's Changed

  • Add useBigIntTimestamp data conversion option. (thanks @​tonygoldcrest!)
  • Fix array type checkers to be applicable cross-realm.
  • Update dependencies.

New Contributors

Full Changelog: uwdata/flechette@v2.3.0...v2.4.0

v2.3.0

Changelog

  • Add compression support.
  • Add compression codec registry for adding pluggable codecs.
  • Fix encoded buffer region lengths to contain true length, not padded length.
  • Update documentation with compression options and examples.

Full Changelog: uwdata/flechette@v2.2.7...v2.3.0

v2.2.7

Changelog

  • Fix: support empty struct fields in Arrow IPC decoding. (thanks @​roelentless!)

Full Changelog: https://github.com/uwdata/flechette/compare/v2.2...

Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [@anywidget/types](https://github.com/manzt/anywidget) | `0.2.0` | `0.4.0` |
| [@clerk/nextjs](https://github.com/clerk/javascript/tree/HEAD/packages/nextjs) | `6.39.5` | `7.5.4` |
| [@dagrejs/dagre](https://github.com/dagrejs/dagre) | `1.1.8` | `3.0.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.1.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` |
| [@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.10` |
| [@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.2` |
| [html-react-parser](https://github.com/remarkablemark/html-react-parser) | `5.2.17` | `6.1.3` |
| [iconify-icon](https://github.com/iconify/iconify/tree/HEAD/iconify-icon/icon) | `2.3.0` | `3.0.2` |
| [katex](https://github.com/KaTeX/KaTeX) | `0.16.47` | `0.17.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.563.0` | `1.20.0` |
| [marked](https://github.com/markedjs/marked) | `15.0.12` | `18.0.5` |
| [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.2.0` |
| [radix-ui](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/radix-ui) | `1.4.3` | `1.6.0` |
| [react-aria](https://github.com/adobe/react-spectrum) | `3.47.0` | `3.49.0` |
| [react-aria-components](https://github.com/adobe/react-spectrum) | `1.16.0` | `1.18.0` |
| [react-codemirror-merge](https://github.com/uiwjs/react-codemirror) | `4.25.4` | `4.25.10` |
| [react-dropzone](https://github.com/react-dropzone/react-dropzone) | `14.4.1` | `15.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.3` | `2.2.3` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.79.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.11.2` |
| [recharts](https://github.com/recharts/recharts) | `2.15.4` | `3.8.1` |
| [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.0` |
| [web-vitals](https://github.com/GoogleChrome/web-vitals) | `4.2.4` | `5.3.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.19.21` | `25.9.3` |
| [eslint](https://github.com/eslint/eslint) | `9.39.4` | `10.5.0` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.2.4` | `16.2.9` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.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 `@clerk/nextjs` from 6.39.5 to 7.5.4
- [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.0.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.0.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.1.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.1.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 `@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.10
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.25.4...v4.25.10)

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.2
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/cssnano@7.1.9...cssnano@8.0.2)

Updates `html-react-parser` from 5.2.17 to 6.1.3
- [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.3)

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

Updates `katex` from 0.16.47 to 0.17.0
- [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.17.0)

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

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

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.2.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.2.0/packages/partysocket)

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

Updates `react-aria` from 3.47.0 to 3.49.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.49.0)

Updates `react-aria-components` from 1.16.0 to 1.18.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.18.0)

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

Updates `react-dropzone` from 14.4.1 to 15.0.0
- [Release notes](https://github.com/react-dropzone/react-dropzone/releases)
- [Commits](react-dropzone/react-dropzone@v14.4.1...v15.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.3 to 2.2.3
- [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.3...2.2.3)

Updates `react-hook-form` from 7.54.2 to 7.79.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.79.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.11.2
- [Release notes](https://github.com/bvaughn/react-resizable-panels/releases)
- [Changelog](https://github.com/bvaughn/react-resizable-panels/blob/main/CHANGELOG.md)
- [Commits](https://github.com/bvaughn/react-resizable-panels/commits)

Updates `recharts` from 2.15.4 to 3.8.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.8.1)

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.0
- [Release notes](https://github.com/Microsoft/vscode-languageserver-node/releases)
- [Commits](https://github.com/Microsoft/vscode-languageserver-node/commits/release/client/9.0.0/jsonrpc)

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

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

Updates `eslint` from 9.39.4 to 10.5.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.4...v10.5.0)

Updates `eslint-config-next` from 16.2.4 to 16.2.9
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v16.2.9/packages/eslint-config-next)

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

---
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: "@clerk/nextjs"
  dependency-version: 7.5.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: "@dagrejs/dagre"
  dependency-version: 3.0.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.1.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: "@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.10
  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.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: html-react-parser
  dependency-version: 6.1.3
  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: katex
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: lucide-react
  dependency-version: 1.20.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: marked
  dependency-version: 18.0.5
  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.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: radix-ui
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: react-aria
  dependency-version: 3.49.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: react-aria-components
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-npm
- dependency-name: react-codemirror-merge
  dependency-version: 4.25.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-npm
- dependency-name: react-dropzone
  dependency-version: 15.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.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: react-hook-form
  dependency-version: 7.79.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.11.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: recharts
  dependency-version: 3.8.1
  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.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: web-vitals
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: "@types/node"
  dependency-version: 25.9.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: eslint
  dependency-version: 10.5.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: web-npm
- dependency-name: eslint-config-next
  dependency-version: 16.2.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-npm
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: web-npm
...

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

dependabot Bot commented on behalf of github Jun 17, 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 Jun 17, 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 Jun 17, 2026 10:08pm
signal-pilot-docs Ready Ready Preview, Comment Jun 17, 2026 10:08pm

Request Review

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