Skip to content

build(deps): Bump the npm-dependencies group across 1 directory with 25 updates - #35

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-e0f107aad0
Open

build(deps): Bump the npm-dependencies group across 1 directory with 25 updates#35
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-e0f107aad0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-dependencies group with 25 updates in the / directory:

Package From To
@astrojs/starlight 0.41.7 0.42.0
astro 7.2.2 7.3.1
sharp 0.35.3 0.35.4
@vitejs/plugin-react-swc 4.3.1 4.3.3
@radix-ui/react-slot 1.3.0 1.3.3
@tanstack/react-form 1.33.0 1.33.5
@tanstack/react-query 5.101.0 5.102.8
radix-ui 1.6.0 1.6.7
@storybook/addon-links 10.4.6 10.6.0
@storybook/react 10.4.6 10.6.0
@storybook/react-vite 10.4.6 10.6.0
@tailwindcss/vite 4.3.1 4.3.3
@testing-library/react 16.3.2 16.3.3
browserslist 4.28.2 4.28.9
eslint-plugin-react-refresh 0.4.26 0.5.6
storybook 10.4.6 10.6.0
tailwindcss 4.3.1 4.3.3
@bufbuild/protobuf 2.12.0 2.14.1
prettier 3.8.4 3.9.6
@testing-library/user-event 14.6.1 14.6.7
@codemirror/commands 6.10.4 6.11.0
@codemirror/state 6.7.1 6.7.4
@codemirror/view 6.43.6 6.43.11
@xyflow/react 12.11.2 12.11.6
@playwright/test 1.61.0 1.62.1

Updates @astrojs/starlight from 0.41.7 to 0.42.0

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.42.0

Minor Changes

  • #3572 292fb17 Thanks @​HiDeoo! - Distributes package as JavaScript files with dedicated type declaration files instead of TypeScript source files.

  • #4121 2623ae6 Thanks @​delucis! - Simplifies markup for Starlight’s mobile menu toggle

    ⚠️ Potentially breaking change: If you use a theme plugin, custom styles, or component overrides targeting the MobileMenuToggle button or PageFrame components, you may need to adjust these for the new markup. The button is no longer wrapped in a <starlight-menu-button> custom element and no longer uses the aria-expanded attribute. Instead, you can use the .sl-menu-button class name to target the button and the :popover-open pseudo-class to style the menu open state specifically.

    In the following example, custom styles for the menu button are updated for the new approach:

    - starlight-menu-button button {
    + .sl-menu-button {
      color: var(--sl-color-text);
    }
    
    starlight-menu-button[aria-expanded='true'] button {
    
    
    .sl-menu-button:has(~ :popover-open) {
    color: var(--sl-color-text-accent-high);
    }

See MobileMenuToggle.astro and PageFrame.astro on GitHub for the full source code of the updated components.

  • #3572 292fb17 Thanks @​HiDeoo! - Removes the tagline configuration option, which was never used.

    If your configuration included a tagline option, you can safely remove it without any replacement.

  • #4134 6135f01 Thanks @​HiDeoo! - Updates internal @astrojs/mdx, @astrojs/markdown-satteri, and satteri dependencies.

    ⚠️ BREAKING CHANGE: The following minimum versions are now required:

    • astro v7.2.10 or later
    • @astrojs/markdown-satteri 0.4.0 or later (if you use it)
    • @astrojs/markdown-remark 7.3.0 or later (if you use it)

    Please update Starlight and Astro together:

    npx @astrojs/upgrade
  • #4121 2623ae6 Thanks @​delucis! - Refactors Starlight’s mobile menu toggle to work when JavaScript fails or is disabled

    ⚠️ BREAKING CHANGE: This release drops official support for Chromium-based browsers prior to version 116 (released August 2023), Safari-based browsers prior to version 17.0 (released September 2023), and Firefox prior to version 125 (released April 2024). You can find a list of currently supported browsers and their versions using this browserslist query.

    This change also removes the data-mobile-menu-expanded attribute, which was previously added to <body> while the mobile menu is open. If you have custom code that was depending on this attribute, you will need to update it to use a new selector to check if the mobile menu is open.

    In the following example, a custom background colour for the site header while the menu is open is updated for the new approach:

  • ... (truncated)

    Changelog

    Sourced from @​astrojs/starlight's changelog.

    0.42.0

    Minor Changes

    • #3572 292fb17 Thanks @​HiDeoo! - Distributes package as JavaScript files with dedicated type declaration files instead of TypeScript source files.

    • #4121 2623ae6 Thanks @​delucis! - Simplifies markup for Starlight’s mobile menu toggle

      ⚠️ Potentially breaking change: If you use a theme plugin, custom styles, or component overrides targeting the MobileMenuToggle button or PageFrame components, you may need to adjust these for the new markup. The button is no longer wrapped in a <starlight-menu-button> custom element and no longer uses the aria-expanded attribute. Instead, you can use the .sl-menu-button class name to target the button and the :popover-open pseudo-class to style the menu open state specifically.

      In the following example, custom styles for the menu button are updated for the new approach:

      - starlight-menu-button button {
      + .sl-menu-button {
        color: var(--sl-color-text);
      }
      
      starlight-menu-button[aria-expanded='true'] button {
      
      
      .sl-menu-button:has(~ :popover-open) {
      color: var(--sl-color-text-accent-high);
      }

    See MobileMenuToggle.astro and PageFrame.astro on GitHub for the full source code of the updated components.

  • #3572 292fb17 Thanks @​HiDeoo! - Removes the tagline configuration option, which was never used.

    If your configuration included a tagline option, you can safely remove it without any replacement.

  • #4134 6135f01 Thanks @​HiDeoo! - Updates internal @astrojs/mdx, @astrojs/markdown-satteri, and satteri dependencies.

    ⚠️ BREAKING CHANGE: The following minimum versions are now required:

    • astro v7.2.10 or later
    • @astrojs/markdown-satteri 0.4.0 or later (if you use it)
    • @astrojs/markdown-remark 7.3.0 or later (if you use it)

    Please update Starlight and Astro together:

    npx @astrojs/upgrade
  • #4121 2623ae6 Thanks @​delucis! - Refactors Starlight’s mobile menu toggle to work when JavaScript fails or is disabled

    ⚠️ BREAKING CHANGE: This release drops official support for Chromium-based browsers prior to version 116 (released August 2023), Safari-based browsers prior to version 17.0 (released September 2023), and Firefox prior to version 125 (released April 2024). You can find a list of currently supported browsers and their versions using this browserslist query.

    This change also removes the data-mobile-menu-expanded attribute, which was previously added to <body> while the mobile menu is open. If you have custom code that was depending on this attribute, you will need to update it to use a new selector to check if the mobile menu is open.

  • ... (truncated)

    Commits

    Updates astro from 7.2.2 to 7.3.1

    Release notes

    Sourced from astro's releases.

    astro@7.3.1

    Patch Changes

    astro@7.3.0

    Minor Changes

    • #17767 ce7c91f Thanks @​astro-factory! - Adds --ignore-lock flag to astro preview, allowing multiple preview servers to run simultaneously on different ports. This is useful for E2E testing workflows (e.g., Playwright) that need to run several preview servers at once.

    • #17818 c0b6581 Thanks @​florian-lefebvre! - Adds a logger parameter to image services hooks

      Custom image services now receive Astro's runtime logger as an extra argument. Messages logged with it are routed through the destination configured in logger and respect your log level, instead of being written straight to the console:

      import type { LocalImageService } from 'astro';
      const service: LocalImageService = {
      // ...
      async transform(inputBuffer, transform, imageConfig, logger) {
      logger.warn(Could not optimize &quot;${transform.src}&quot;. Passing it through unchanged.);
      return { data: inputBuffer, format: 'png' };
      },
      };

      Astro's built-in Sharp service now uses this logger for the warnings it emits when it encounters an unexpected or unsupported source format.

    • #17818 c0b6581 Thanks @​florian-lefebvre! - Adds logger to the context object passed to cache providers

      Custom cache providers now receive Astro's runtime logger on the context passed to onRequest(). Messages logged with it are routed through the destination configured in logger and respect your log level, instead of being written straight to the console:

      import type { CacheProvider } from 'astro';
      const provider: CacheProvider = {
      name: 'my-cache',
      async onRequest({ request, url, logger }, next) {
      logger.warn(Skipping cache for ${url.pathname} because the response sets a cookie.);
      return next();
      },
      // ...
      };

      Astro's built-in memoryCache() provider now uses this logger for the warnings it emits when it skips caching a response that sets cookies, and when a background revalidation fails.

    Patch Changes

    • #17818 c0b6581 Thanks @​florian-lefebvre! - Updates Astro's remaining internal warnings and errors to be written through the configured logger instead of directly to the console, when possible

    ... (truncated)

    Changelog

    Sourced from astro's changelog.

    7.3.1

    Patch Changes

    7.3.0

    Minor Changes

    • #17767 ce7c91f Thanks @​astro-factory! - Adds --ignore-lock flag to astro preview, allowing multiple preview servers to run simultaneously on different ports. This is useful for E2E testing workflows (e.g., Playwright) that need to run several preview servers at once.

    • #17818 c0b6581 Thanks @​florian-lefebvre! - Adds a logger parameter to image services hooks

      Custom image services now receive Astro's runtime logger as an extra argument. Messages logged with it are routed through the destination configured in logger and respect your log level, instead of being written straight to the console:

      import type { LocalImageService } from 'astro';
      const service: LocalImageService = {
      // ...
      async transform(inputBuffer, transform, imageConfig, logger) {
      logger.warn(Could not optimize &quot;${transform.src}&quot;. Passing it through unchanged.);
      return { data: inputBuffer, format: 'png' };
      },
      };

      Astro's built-in Sharp service now uses this logger for the warnings it emits when it encounters an unexpected or unsupported source format.

    • #17818 c0b6581 Thanks @​florian-lefebvre! - Adds logger to the context object passed to cache providers

      Custom cache providers now receive Astro's runtime logger on the context passed to onRequest(). Messages logged with it are routed through the destination configured in logger and respect your log level, instead of being written straight to the console:

      import type { CacheProvider } from 'astro';
      const provider: CacheProvider = {
      name: 'my-cache',
      async onRequest({ request, url, logger }, next) {
      logger.warn(Skipping cache for ${url.pathname} because the response sets a cookie.);
      return next();
      },
      // ...
      };

      Astro's built-in memoryCache() provider now uses this logger for the warnings it emits when it skips caching a response that sets cookies, and when a background revalidation fails.

    Patch Changes

    ... (truncated)

    Commits

    Updates sharp from 0.35.3 to 0.35.4

    Release notes

    Sourced from sharp's releases.

    v0.35.4

    https://github.com/lovell/sharp-libvips/releases/tag/v1.3.3

    v0.35.4-rc.0

    Commits
    • 7f1a0a2 Release v0.35.4
    • f927818 Upgrade to sharp-libvips v1.3.3
    • e802092 Prerelease v0.35.4-rc.0
    • e13eb2f CI: Fix wasm32 build (#4589)
    • a82a0b3 Upgrade to libvips v8.18.6
    • 8044fe4 Bound resize dimensions to coordinate limit
    • 147f859 Docs: changelog entries for #4578 #4584
    • ee5bfb8 Tests: use yauzl directly rather than via extract-zip wrapper
    • 7a77889 Bump uraimo/run-on-arch-action from 3.1.0 to 3.2.0 (#4588)
    • ea5bef2 Improve support for input Streams finishing before output is requested (#4584)
    • Additional commits viewable in compare view

    Updates @vitejs/plugin-react-swc from 4.3.1 to 4.3.3

    Release notes

    Sourced from @​vitejs/plugin-react-swc's releases.

    plugin-react-swc@4.3.3

    Add a patch for bundled-dev mode compat #1352

    Added a patch so that this plugin works with the experimental bundled dev mode. Note that because this Vite feature is experimental, compatibility in future Vite releases is not guaranteed.

    plugin-react-swc@4.3.2

    Don't apply React Refresh wrapper for non JSX files #1226

    Fixes #1225.

    Changelog

    Sourced from @​vitejs/plugin-react-swc's changelog.

    4.3.3 (2026-07-30)

    Add a patch for bundled-dev mode compat #1352

    Added a patch so that this plugin works with the experimental bundled dev mode. Note that because this Vite feature is experimental, compatibility in future Vite releases is not guaranteed.

    4.3.2 (2026-07-22)

    Don't apply React Refresh wrapper for non JSX files #1226

    Fixes #1225.

    Commits

    Updates @radix-ui/react-slot from 1.3.0 to 1.3.3

    Changelog

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

    1.3.2, 1.3.3

    • Reverted breaking changes that caused compatibility issues with React Server Components.

    1.3.1

    • Republish through CI to attach provenance attestations. The previous versions of these packages were published manually outside of CI and therefore shipped without provenance; this patch re-releases the same code through the CI pipeline so every package includes an attestation.
    • Updated dependencies: @radix-ui/primitive@1.1.7, @radix-ui/react-compose-refs@1.1.4
    Commits

    Updates @tanstack/react-form from 1.33.0 to 1.33.5

    Release notes

    Sourced from @​tanstack/react-form's releases.

    @​tanstack/react-form-nextjs@​1.33.5

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/react-form@​1.33.5

    @​tanstack/react-form-remix@​1.33.5

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/react-form@​1.33.5

    @​tanstack/react-form-start@​1.33.5

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/react-form@​1.33.5

    @​tanstack/react-form@​1.33.5

    Patch Changes

    • Updated dependencies [146ba25]:
      • @​tanstack/form-core@​1.33.5

    @​tanstack/react-form-nextjs@​1.33.4

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/react-form@​1.33.4

    @​tanstack/react-form-remix@​1.33.4

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/react-form@​1.33.4

    @​tanstack/react-form-start@​1.33.4

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/react-form@​1.33.4

    @​tanstack/react-form@​1.33.4

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/form-core@​1.33.4

    @​tanstack/react-form-nextjs@​1.33.3

    Patch Changes

    ... (truncated)

    Changelog

    Sourced from @​tanstack/react-form's changelog.

    1.33.5

    Patch Changes

    • Updated dependencies [146ba25]:
      • @​tanstack/form-core@​1.33.5

    1.33.4

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/form-core@​1.33.4

    1.33.3

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/form-core@​1.33.3

    1.33.2

    Patch Changes

    • #2240 d756476 - Use fresh FieldApi in current render on name change

    • Updated dependencies []:

      • @​tanstack/form-core@​1.33.2

    1.33.1

    Patch Changes

    1.33.1

    Patch Changes

    • Re-export useSelector from @tanstack/react-store (fixes #2203). useStore remains available but is deprecated; prefer import { useSelector } from '@tanstack/react-form'.
    Commits

    Updates @tanstack/react-query from 5.101.0 to 5.102.8

    Release notes

    Sourced from @​tanstack/react-query's releases.

    @​tanstack/react-query-devtools@​5.102.8

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/query-devtools@​5.102.8
      • @​tanstack/react-query@​5.102.8

    @​tanstack/react-query-next-experimental@​5.102.8

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/react-query@​5.102.8

    @​tanstack/react-query-persist-client@​5.102.8

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/query-persist-client-core@​5.102.8
      • @​tanstack/react-query@​5.102.8

    @​tanstack/react-query@​5.102.8

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/query-core@​5.102.8

    @​tanstack/react-query-devtools@​5.102.7

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/query-devtools@​5.102.7
      • @​tanstack/react-query@​5.102.7

    @​tanstack/react-query-next-experimental@​5.102.7

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/react-query@​5.102.7

    @​tanstack/react-query-persist-client@​5.102.7

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/query-persist-client-core@​5.102.7
      • @​tanstack/react-query@​5.102.7

    @​tanstack/react-query@​5.102.7

    Patch Changes

    • Updated dependencies []:

    ... (truncated)

    Changelog

    Sourced from @​tanstack/react-query's changelog.

    5.102.8

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/query-core@​5.102.8

    5.102.7

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/query-core@​5.102.7

    5.102.6

    Patch Changes

    • #11305 ac2b612 - fix(react-query): throw falsy errors from useQueries and useSuspenseQueries to the error boundary

    • Updated dependencies []:

      • @​tanstack/query-core@​5.102.6

    5.102.5

    Patch Changes

    • Updated dependencies [578e5c2]:
      • @​tanstack/query-core@​5.102.5

    5.102.4

    Patch Changes

    • Updated dependencies [a05df6a]:
      • @​tanstack/query-core@​5.102.4

    5.102.3

    Patch Changes

    • Updated dependencies []:
      • @​tanstack/query-core@​5.102.3

    5.102.2

    Patch Changes

    • Updated dependencies [80fbf73]:
      • @​tanstack/query-core@​5.102.2

    ... (truncated)

    Commits

    Updates radix-ui from 1.6.0 to 1.6.7

    Changelog

    Sourced from radix-ui's changelog.

    1.6.6, 1.6.7

    • Reverted breaking changes that caused compatibility issues with React Server Components.

    1.6.5

    • Republish through CI to attach provenance attestations. The previous versions of these packages were published manually outside of CI and therefore shipped without provenance; this patch re-releases the same code through the CI pipeline so every package includes an attestation.

    1.6.4

    • Fixed a regression where importing primitives from the root radix-ui entry point erased every primitive's types to any.

    1.6.3

    Dialog

    • Fixed broken ARIA references in Dialogs where title or description elements are not rendered.

    Slider

    • Fixed a bug where onValueCommit was not called when a slider thumb was dragged across another thumb.

    Toast

    • Fixed Toast removing non-focused toasts when pressing Escape.

    Tooltip

    • Fixed a bug where Tooltip.Content children were mounted to the DOM twice.

    Other updates

    • Fixed overriding inline animation style in Popper.Content.
    • Improved tree-shaking so bundlers can drop unused components. Component parts are now marked /* @__PURE__ */ and use named render functions instead of Component.displayName = ... assignments, which previously prevented dead-code elimination with some bundlers.
    • Widened virtualRef prop type to allow RefObject<Measurable | null> in popover components.
    • Fixed dev-only checks with conditional exports to drop dev-warnings from production builds.
    • Added per-primitive subpath entry points so each primitive can be imported directly, eg. import { Accordion } from 'radix-ui/accordion' or import * as Accordion from 'radix-ui/accordion'. This mirrors the namespaced exports available from the root radix-ui entry point.
    • Fixed a bug where updating a Checkbox, Switch, or RadioGroup value programmatically (eg. a "select all" control) while inside a <form> would dispatch a click event from the hidden bubble input that propagated to ancestor onClick handlers.

    1.6.2

    Other updates

    • Added CSS custom properties for Navigation Menu item indicators' translate values.
    • Fixed a bug in Dismissable Layer causing background nested popovers to close all layers on outside click
    • Fixed runtime errors for Form.Message, Form.Control, Form.Label and Form.ValidityState that are correctly rendered outside of Form.Field components
    • Fixed a bug in form control components to ensure their values are updated when their associated form's is reset. This affects RadioGroup, Slider, Select, and Switch.
    • Fixed menu items, tab triggers, toolbar links, and select items intercepting Space/Enter keys that originate from focusable descendants.
    • Fixed a bug where calling an event handler without an argument would throw, preventing successive event handlers from being called. This affected all components that accept event handlers with internal implementations.
    • Fixed a bug in Context Menu to ensure that the menu properly re-anchors to the latest pointer position when re-triggered in its open state.

    ... (truncated)

    Commits

    Updates @storybook/addon-links from 10.4.6 to 10.6.0

    Release notes

    Sourced from @​storybook/addon-links's releases.

    v10.6.0

    10.6.0

    New skills architecture for agentic workflows

    Storybook 10.6 contains hundreds of fixes and improvements:

    • 💻 CLI bindings for agent tools/skills
    • 🅰️ Angular-Vite MCP/skills support and improved docgen/snippets (experimental)
    • 🟢 Vue MCP/skills support and improved docgen/snippets (experimental)
    • 🧩 Tanstack / NextJS-Vite framework bugfixes
    • ⚡ Improved performance and reduced bundle size

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-links's changelog.

    10.6.0

    New skills architecture for agentic workflows

    Storybook 10.6 contains hundreds of fixes and improvements:

    • 💻 CLI bindings for agent tools/skills
    • 🅰️ Angular-Vite MCP/skills support and improved docgen/snippets (experimental)
    • 🟢 Vue MCP/skills support and improved docgen/snippets (experimental)
    • 🧩 Tanstack / NextJS-Vite framework bugfixes
    • ⚡ Improved performance and reduced bundle size
    • Addon MCP: Stop silently dropping composed refs from MCP composi...

      Description has been truncated

    …25 updates
    
    Bumps the npm-dependencies group with 25 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.41.7` | `0.42.0` |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `7.2.2` | `7.3.1` |
    | [sharp](https://github.com/lovell/sharp) | `0.35.3` | `0.35.4` |
    | [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc) | `4.3.1` | `4.3.3` |
    | [@radix-ui/react-slot](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/slot) | `1.3.0` | `1.3.3` |
    | [@tanstack/react-form](https://github.com/TanStack/form/tree/HEAD/packages/react-form) | `1.33.0` | `1.33.5` |
    | [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.101.0` | `5.102.8` |
    | [radix-ui](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/radix-ui) | `1.6.0` | `1.6.7` |
    | [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `10.4.6` | `10.6.0` |
    | [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `10.4.6` | `10.6.0` |
    | [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `10.4.6` | `10.6.0` |
    | [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.3.1` | `4.3.3` |
    | [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.3.2` | `16.3.3` |
    | [browserslist](https://github.com/browserslist/browserslist) | `4.28.2` | `4.28.9` |
    | [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.4.26` | `0.5.6` |
    | [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `10.4.6` | `10.6.0` |
    | [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.3.1` | `4.3.3` |
    | [@bufbuild/protobuf](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf) | `2.12.0` | `2.14.1` |
    | [prettier](https://github.com/prettier/prettier) | `3.8.4` | `3.9.6` |
    | [@testing-library/user-event](https://github.com/testing-library/user-event) | `14.6.1` | `14.6.7` |
    | [@codemirror/commands](https://github.com/codemirror/commands) | `6.10.4` | `6.11.0` |
    | [@codemirror/state](https://github.com/codemirror/state) | `6.7.1` | `6.7.4` |
    | [@codemirror/view](https://github.com/codemirror/view) | `6.43.6` | `6.43.11` |
    | [@xyflow/react](https://github.com/xyflow/xyflow/tree/HEAD/packages/react) | `12.11.2` | `12.11.6` |
    | [@playwright/test](https://github.com/microsoft/playwright) | `1.61.0` | `1.62.1` |
    
    
    
    Updates `@astrojs/starlight` from 0.41.7 to 0.42.0
    - [Release notes](https://github.com/withastro/starlight/releases)
    - [Changelog](https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md)
    - [Commits](https://github.com/withastro/starlight/commits/@astrojs/starlight@0.42.0/packages/starlight)
    
    Updates `astro` from 7.2.2 to 7.3.1
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/astro@7.3.1/packages/astro)
    
    Updates `sharp` from 0.35.3 to 0.35.4
    - [Release notes](https://github.com/lovell/sharp/releases)
    - [Commits](lovell/sharp@v0.35.3...v0.35.4)
    
    Updates `@vitejs/plugin-react-swc` from 4.3.1 to 4.3.3
    - [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
    - [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.3.3/packages/plugin-react-swc)
    
    Updates `@radix-ui/react-slot` from 1.3.0 to 1.3.3
    - [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/slot/CHANGELOG.md)
    - [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/slot)
    
    Updates `@tanstack/react-form` from 1.33.0 to 1.33.5
    - [Release notes](https://github.com/TanStack/form/releases)
    - [Changelog](https://github.com/TanStack/form/blob/main/packages/react-form/CHANGELOG.md)
    - [Commits](https://github.com/TanStack/form/commits/@tanstack/react-form@1.33.5/packages/react-form)
    
    Updates `@tanstack/react-query` from 5.101.0 to 5.102.8
    - [Release notes](https://github.com/TanStack/query/releases)
    - [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
    - [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.102.8/packages/react-query)
    
    Updates `radix-ui` from 1.6.0 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 `@storybook/addon-links` from 10.4.6 to 10.6.0
    - [Release notes](https://github.com/storybookjs/storybook/releases)
    - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
    - [Commits](https://github.com/storybookjs/storybook/commits/v10.6.0/code/addons/links)
    
    Updates `@storybook/react` from 10.4.6 to 10.6.0
    - [Release notes](https://github.com/storybookjs/storybook/releases)
    - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
    - [Commits](https://github.com/storybookjs/storybook/commits/v10.6.0/code/renderers/react)
    
    Updates `@storybook/react-vite` from 10.4.6 to 10.6.0
    - [Release notes](https://github.com/storybookjs/storybook/releases)
    - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
    - [Commits](https://github.com/storybookjs/storybook/commits/v10.6.0/code/frameworks/react-vite)
    
    Updates `@tailwindcss/vite` from 4.3.1 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/packages/@tailwindcss-vite)
    
    Updates `@testing-library/react` from 16.3.2 to 16.3.3
    - [Release notes](https://github.com/testing-library/react-testing-library/releases)
    - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
    - [Commits](testing-library/react-testing-library@v16.3.2...v16.3.3)
    
    Updates `browserslist` from 4.28.2 to 4.28.9
    - [Release notes](https://github.com/browserslist/browserslist/releases)
    - [Changelog](https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md)
    - [Commits](browserslist/browserslist@4.28.2...4.28.9)
    
    Updates `eslint-plugin-react-refresh` from 0.4.26 to 0.5.6
    - [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases)
    - [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md)
    - [Commits](ArnaudBarre/eslint-plugin-react-refresh@v0.4.26...v0.5.6)
    
    Updates `storybook` from 10.4.6 to 10.6.0
    - [Release notes](https://github.com/storybookjs/storybook/releases)
    - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
    - [Commits](https://github.com/storybookjs/storybook/commits/v10.6.0/code/core)
    
    Updates `tailwindcss` from 4.3.1 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/packages/tailwindcss)
    
    Updates `@bufbuild/protobuf` from 2.12.0 to 2.14.1
    - [Release notes](https://github.com/bufbuild/protobuf-es/releases)
    - [Commits](https://github.com/bufbuild/protobuf-es/commits/v2.14.1/packages/protobuf)
    
    Updates `prettier` from 3.8.4 to 3.9.6
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.8.4...3.9.6)
    
    Updates `@testing-library/user-event` from 14.6.1 to 14.6.7
    - [Release notes](https://github.com/testing-library/user-event/releases)
    - [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
    - [Commits](testing-library/user-event@v14.6.1...v14.6.7)
    
    Updates `@codemirror/commands` from 6.10.4 to 6.11.0
    - [Changelog](https://github.com/codemirror/commands/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/codemirror/commands/commits)
    
    Updates `@codemirror/state` from 6.7.1 to 6.7.4
    - [Changelog](https://github.com/codemirror/state/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/codemirror/state/commits)
    
    Updates `@codemirror/view` from 6.43.6 to 6.43.11
    - [Changelog](https://github.com/codemirror/view/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/codemirror/view/commits)
    
    Updates `@xyflow/react` from 12.11.2 to 12.11.6
    - [Release notes](https://github.com/xyflow/xyflow/releases)
    - [Changelog](https://github.com/xyflow/xyflow/blob/main/packages/react/CHANGELOG.md)
    - [Commits](https://github.com/xyflow/xyflow/commits/@xyflow/react@12.11.6/packages/react)
    
    Updates `@playwright/test` from 1.61.0 to 1.62.1
    - [Release notes](https://github.com/microsoft/playwright/releases)
    - [Commits](microsoft/playwright@v1.61.0...v1.62.1)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/starlight"
      dependency-version: 0.42.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: astro
      dependency-version: 7.3.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: sharp
      dependency-version: 0.35.4
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@vitejs/plugin-react-swc"
      dependency-version: 4.3.3
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@radix-ui/react-slot"
      dependency-version: 1.3.3
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@tanstack/react-form"
      dependency-version: 1.33.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@tanstack/react-query"
      dependency-version: 5.102.8
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: radix-ui
      dependency-version: 1.6.7
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@storybook/addon-links"
      dependency-version: 10.6.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@storybook/react"
      dependency-version: 10.6.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@storybook/react-vite"
      dependency-version: 10.6.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@tailwindcss/vite"
      dependency-version: 4.3.3
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@testing-library/react"
      dependency-version: 16.3.3
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: browserslist
      dependency-version: 4.28.9
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: eslint-plugin-react-refresh
      dependency-version: 0.5.6
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: storybook
      dependency-version: 10.6.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: tailwindcss
      dependency-version: 4.3.3
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@bufbuild/protobuf"
      dependency-version: 2.14.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: prettier
      dependency-version: 3.9.6
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@testing-library/user-event"
      dependency-version: 14.6.7
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@codemirror/commands"
      dependency-version: 6.11.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@codemirror/state"
      dependency-version: 6.7.4
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@codemirror/view"
      dependency-version: 6.43.11
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@xyflow/react"
      dependency-version: 12.11.6
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@playwright/test"
      dependency-version: 1.62.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-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 Sep 7, 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.

    0 participants