Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 27, 2025

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

Package From To
@astrojs/check 0.9.4 0.9.5
@astrojs/react 4.1.5 4.4.0
@astrojs/starlight 0.31.1 0.36.1
@astrojs/starlight-tailwind 3.0.0 4.0.1
@astrojs/tailwind 5.1.4 6.0.2
@scalar/api-reference-react 0.4.14 0.8.1
mermaid 11.4.1 11.12.0
ramda 0.30.1 0.32.0
react 19.0.0 19.2.0
@types/react 19.0.7 19.2.2
react-dom 19.0.0 19.2.0
@types/react-dom 19.0.3 19.2.2
sharp 0.33.5 0.34.4
tailwindcss 3.4.17 4.1.16
typescript 5.7.3 5.9.3

Updates @astrojs/check from 0.9.4 to 0.9.5

Changelog

Sourced from @​astrojs/check's changelog.

0.9.5

Patch Changes

  • d415d4e: When no errors or warnings are detected, display "0 errors" or "0 warnings" in a dimmed color on the console instead of red or yellow.
Commits
Maintainer changes

This version was pushed to npm by matthewp, a new releaser for @​astrojs/check since your current version.


Updates @astrojs/react from 4.1.5 to 4.4.0

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​4.4.0

Minor Changes

  • #14386 f75f446 Thanks @​yanthomasdev! - Stabilizes the formerly experimental getActionState() and withState() functions introduced in @astrojs/react v3.4.0 used to integrate Astro Actions with React 19's useActionState() hook.

    This example calls a like action that accepts a postId and returns the number of likes. Pass this action to the withState() function to apply progressive enhancement info, and apply to useActionState() to track the result:

    import { actions } from 'astro:actions';
    import { withState } from '@astrojs/react/actions';
    import { useActionState } from 'react';
    

    export function Like({ postId }: { postId: string }) { const [state, action, pending] = useActionState( withState(actions.like), 0, // initial likes );

    return ( <form action={action}> <input type="hidden" name="postId" value={postId} /> <button disabled={pending}>{state} ❤️</button> </form> ); }

    You can also access the state stored by useActionState() from your action handler. Call getActionState() with the API context, and optionally apply a type to the result:

    import { defineAction } from 'astro:actions';
    import { z } from 'astro:schema';
    import { getActionState } from '@astrojs/react/actions';
    

    export const server = { like: defineAction({ input: z.object({ postId: z.string(), }), handler: async ({ postId }, ctx) => { const currentLikes = getActionState<number>(ctx); // write to database return currentLikes + 1; }, }), };

    If you were previously using this experimental feature, you will need to update your code to use the new stable exports:

    // src/components/Form.jsx
    import { actions } from 'astro:actions';
    -import { experimental_withState } from '@astrojs/react/actions';

... (truncated)

Changelog

Sourced from @​astrojs/react's changelog.

4.4.0

Minor Changes

  • #14386 f75f446 Thanks @​yanthomasdev! - Stabilizes the formerly experimental getActionState() and withState() functions introduced in @astrojs/react v3.4.0 used to integrate Astro Actions with React 19's useActionState() hook.

    This example calls a like action that accepts a postId and returns the number of likes. Pass this action to the withState() function to apply progressive enhancement info, and apply to useActionState() to track the result:

    import { actions } from 'astro:actions';
    import { withState } from '@astrojs/react/actions';
    import { useActionState } from 'react';
    

    export function Like({ postId }: { postId: string }) { const [state, action, pending] = useActionState( withState(actions.like), 0, // initial likes );

    return ( <form action={action}> <input type="hidden" name="postId" value={postId} /> <button disabled={pending}>{state} ❤️</button> </form> ); }

    You can also access the state stored by useActionState() from your action handler. Call getActionState() with the API context, and optionally apply a type to the result:

    import { defineAction } from 'astro:actions';
    import { z } from 'astro:schema';
    import { getActionState } from '@astrojs/react/actions';
    

    export const server = { like: defineAction({ input: z.object({ postId: z.string(), }), handler: async ({ postId }, ctx) => { const currentLikes = getActionState<number>(ctx); // write to database return currentLikes + 1; }, }), };

    If you were previously using this experimental feature, you will need to update your code to use the new stable exports:

... (truncated)

Commits

Updates @astrojs/starlight from 0.31.1 to 0.36.1

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.36.1

Patch Changes

@​astrojs/starlight@​0.36.0

Minor Changes

  • #3427 c3b2d0f Thanks @​delucis! - Fixes styling of labels that wrap across multiple lines in <Tabs> component

    ⚠️ Potentially breaking change: Tab labels now have a narrower line-height and additional vertical padding. If you have custom CSS targetting the <Tabs> component, you may want to double check the visual appearance of your tabs when updating.

    If you want to preserve the previous styling, you can add the following custom CSS to your site:

    .tab > [role='tab'] {
      line-height: var(--sl-line-height);
      padding-block: 0;
    }
  • #3380 3364af3 Thanks @​HiDeoo! - Makes head entry parsing stricter in Starlight config and content frontmatter.

    ⚠️ Potentially breaking change: Previously Starlight would accept a head entry for a meta tag defining some content which generates invalid HTML as <meta> is a void element which cannot have any child nodes. Now, it is an error to define a meta tag including some content.

    If you see errors after updating, look for head entries in the Starlight configuration in the astro.config.mjs file or in the frontmatter of your content files that include a content property for a meta tag. To fix the error, move the content property to the attrs object with at least an additional attribute to identify the kind of metadata it represents:

    head: {
      tag: 'meta',
    - content: 'foo',
      attrs: {
        name: 'my-meta',
    +   content: 'foo',
      },
    },
  • #3340 2018c31 Thanks @​HiDeoo! - Adds missing vertical spacing between Markdown content and UI Framework components using client directives.

... (truncated)

Changelog

Sourced from @​astrojs/starlight's changelog.

0.36.1

Patch Changes

0.36.0

Minor Changes

  • #3427 c3b2d0f Thanks @​delucis! - Fixes styling of labels that wrap across multiple lines in <Tabs> component

    ⚠️ Potentially breaking change: Tab labels now have a narrower line-height and additional vertical padding. If you have custom CSS targetting the <Tabs> component, you may want to double check the visual appearance of your tabs when updating.

    If you want to preserve the previous styling, you can add the following custom CSS to your site:

    .tab > [role='tab'] {
      line-height: var(--sl-line-height);
      padding-block: 0;
    }
  • #3380 3364af3 Thanks @​HiDeoo! - Makes head entry parsing stricter in Starlight config and content frontmatter.

    ⚠️ Potentially breaking change: Previously Starlight would accept a head entry for a meta tag defining some content which generates invalid HTML as <meta> is a void element which cannot have any child nodes. Now, it is an error to define a meta tag including some content.

    If you see errors after updating, look for head entries in the Starlight configuration in the astro.config.mjs file or in the frontmatter of your content files that include a content property for a meta tag. To fix the error, move the content property to the attrs object with at least an additional attribute to identify the kind of metadata it represents:

    head: {
      tag: 'meta',
    - content: 'foo',
      attrs: {
        name: 'my-meta',
    +   content: 'foo',
      },
    },

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by matthewp, a new releaser for @​astrojs/starlight since your current version.


Updates @astrojs/starlight-tailwind from 3.0.0 to 4.0.1

Release notes

Sourced from @​astrojs/starlight-tailwind's releases.

@​astrojs/starlight-tailwind@​4.0.1

Patch Changes

@​astrojs/starlight-tailwind@​4.0.0

Major Changes

  • #2322 f14eb0c Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now 0.34.0

    Please use the @astrojs/upgrade command to upgrade your project:

    npx @astrojs/upgrade
  • #2322 f14eb0c Thanks @​HiDeoo! - Adds support for Tailwind v4, drops support for Tailwind v3.

    ⚠️ BREAKING CHANGE: Tailwind v3 is no longer supported. Tailwind v4 support in Astro is now provided using a Vite plugin and the Astro Tailwind integration is no longer required.

    1. Remove the Astro Tailwind integration. The Astro Tailwind integration is no longer required with Tailwind v4.

       // astro.config.mjs
       import { defineConfig } from "astro/config";
       import starlight from "@astrojs/starlight";
      -import tailwind from "@astrojs/tailwind";
      export default defineConfig({
      integrations: [
      starlight({
      title: "Docs with Tailwind",
      customCss: ["./src/tailwind.css"],
      }),
      
      tailwind({ applyBaseStyles: false }),
      ],
      });
  • Install Tailwind v4. Install the latest version of the tailwindcss and @tailwindcss/vite packages.

    Use the astro add tailwind command to install and configure both packages:

    npx astro add tailwind
  • Update Tailwind base styles. Tailwind CSS base styles needs to be updated for Tailwind v4 and also to use Starlight Tailwind CSS.

  • ... (truncated)

    Changelog

    Sourced from @​astrojs/starlight-tailwind's changelog.

    4.0.1

    Patch Changes

    4.0.0

    Major Changes

    • #2322 f14eb0c Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now 0.34.0

      Please use the @astrojs/upgrade command to upgrade your project:

      npx @astrojs/upgrade
    • #2322 f14eb0c Thanks @​HiDeoo! - Adds support for Tailwind v4, drops support for Tailwind v3.

      ⚠️ BREAKING CHANGE: Tailwind v3 is no longer supported. Tailwind v4 support in Astro is now provided using a Vite plugin and the Astro Tailwind integration is no longer required.

      1. Remove the Astro Tailwind integration. The Astro Tailwind integration is no longer required with Tailwind v4.

         // astro.config.mjs
         import { defineConfig } from "astro/config";
         import starlight from "@astrojs/starlight";
        -import tailwind from "@astrojs/tailwind";
        export default defineConfig({
        integrations: [
        starlight({
        title: "Docs with Tailwind",
        customCss: ["./src/tailwind.css"],
        }),
        
        tailwind({ applyBaseStyles: false }),
        ],
        });
  • Install Tailwind v4. Install the latest version of the tailwindcss and @tailwindcss/vite packages.

    Use the astro add tailwind command to install and configure both packages:

    npx astro add tailwind
  • Update Tailwind base styles. Tailwind CSS base styles needs to be updated for Tailwind v4 and also to use Starlight Tailwind CSS.

  • ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by matthewp, a new releaser for @​astrojs/starlight-tailwind since your current version.


    Updates @astrojs/tailwind from 5.1.4 to 6.0.2

    Release notes

    Sourced from @​astrojs/tailwind's releases.

    [email protected]

    Patch Changes

    • #14612 18552c7 Thanks @​ematipico! - Fixes a regression introduced in Astro v5.14.7 that caused ?url imports to not work correctly. This release reverts #14142.

    [email protected]

    Minor Changes

    • #14543 9b3241d Thanks @​matthewp! - Adds two new adapter configuration options assetQueryParams and internalFetchHeaders to the Adapter API.

      Official and community-built adapters can now use client.assetQueryParams to specify query parameters that should be appended to asset URLs (CSS, JavaScript, images, fonts, etc.). The query parameters are automatically appended to all generated asset URLs during the build process.

      Adapters can also use client.internalFetchHeaders to specify headers that should be included in Astro's internal fetch calls (Actions, View Transitions, Server Islands, Prefetch).

      This enables features like Netlify's skew protection, which requires the deploy ID to be sent with both internal requests and asset URLs to ensure client and server versions match during deployments.

    • #14489 add4277 Thanks @​dev-shetty! - Adds a new Copy to Clipboard button to the error overlay stack trace.

      When an error occurs in dev mode, you can now copy the stack trace with a single click to more easily share it in a bug report, a support thread, or with your favorite LLM.

    • #14564 5e7cebb Thanks @​florian-lefebvre! - Updates astro add cloudflare to scaffold more configuration files

      Running astro add cloudflare will now emit wrangler.jsonc and public/.assetsignore, allowing your Astro project to work out of the box as a worker.

    Patch Changes

    • #14591 3e887ec Thanks @​matthewp! - Adds TypeScript support for the components prop on MDX Content component when using await render(). Developers now get proper IntelliSense and type checking when passing custom components to override default MDX element rendering.

    • #14598 7b45c65 Thanks @​delucis! - Reduces terminal text styling dependency size by switching from kleur to picocolors

    • #13826 8079482 Thanks @​florian-lefebvre! - Adds the option to specify in the preload directive which weights, styles, or subsets to preload for a given font family when using the experimental Fonts API:

      ---
      import { Font } from 'astro:assets';
      ---
      <Font
      cssVariable="--font-roboto"
      preload={[{ subset: 'latin', style: 'normal' }, { weight: '400' }]}
      />

      Variable weight font files will be preloaded if any weight within its range is requested. For example, a font file for font weight 100 900 will be included when 400 is specified in a preload object.

    [email protected]

    Patch Changes

    • #14590 577d051 Thanks @​matthewp! - Fixes image path resolution in content layer collections to support bare filenames. The image() helper now normalizes bare filenames like "cover.jpg" to relative paths "./cover.jpg" for consistent resolution behavior between markdown frontmatter and JSON content collections.

    ... (truncated)

    Changelog

    Sourced from @​astrojs/tailwind's changelog.

    6.0.2

    Patch Changes

    6.0.1

    Patch Changes

    6.0.0

    Major Changes

    • #13049 2ed4bd9 Thanks @​florian-lefebvre! - Deprecates the integration

      Tailwind CSS now offers a Vite plugin which is the preferred way to use Tailwind 4 in Astro. Please uninstall @astrojs/tailwind and follow the Tailwind documentation for manual installation.

      This updated major version is only provided as a convenience for existing projects until they are able to migrate to the new plugin. It offers no additional functionality and is no longer recommended, but may continue to be used in your projects until it is removed entirely.

    5.1.5

    Patch Changes

    Commits

    Updates @scalar/api-reference-react from 0.4.14 to 0.8.1

    Changelog

    Sourced from @​scalar/api-reference-react's changelog.

    0.8.1

    Patch Changes

    • Updated dependencies [f3e17d8]
    • Updated dependencies [ef98f35]
    • Updated dependencies [f8efecd]
    • Updated dependencies [9c65f51]
      • @​scalar/types@​0.3.2
      • @​scalar/api-reference@​1.38.1

    0.8.0

    Minor Changes

    • 1e01464: Adds a new ApiReferenceConfigWithSource type and make the base ApiReferenceConfig type agnostic of any document sources.

    Patch Changes

    • Updated dependencies [debdcf6]
    • Updated dependencies [a747da6]
    • Updated dependencies [1e01464]
    • Updated dependencies [90d54b6]
      • @​scalar/api-reference@​1.38.0
      • @​scalar/types@​0.3.1

    0.7.55

    Patch Changes

    • Updated dependencies [008a0f3]
    • Updated dependencies [f833196]
      • @​scalar/api-reference@​1.37.0
      • @​scalar/types@​0.3.0

    0.7.54

    Patch Changes

    • Updated dependencies [894343a]
    • Updated dependencies [9b7f5e4]
    • Updated dependencies [8ad6af0]
    • Updated dependencies [395e822]
    • Updated dependencies [2b98503]
    • Updated dependencies [c6736fd]
    • Updated dependencies [5e268a4]
    • Updated dependencies [e8915c6]
    • Updated dependencies [a46a700]
      • @​scalar/api-reference@​1.36.3

    ... (truncated)

    Commits

    Updates astro from 5.1.7 to 5.15.1

    Release notes

    Sourced from astro's releases.

    [email protected]

    Patch Changes

    • #14612 18552c7 Thanks @​ematipico! - Fixes a regression introduced in Astro v5.14.7 that caused ?url imports to not work correctly. This release reverts #14142.

    [email protected]

    Minor Changes

    • #14543 9b3241d Thanks @​matthewp! - Adds two new adapter configuration options assetQueryParams and internalFetchHeaders to the Adapter API.

      Official and community-built adapters can now use client.assetQueryParams to specify query parameters that should be appended to asset URLs (CSS, JavaScript, images, fonts, etc.). The query parameters are automatically appended to all generated asset URLs during the build process.

      Adapters can also use client.internalFetchHeaders to specify headers that should be included in Astro's internal fetch calls (Actions, View Transitions, Server Islands, Prefetch).

      This enables features like Netlify's skew protection, which requires the deploy ID to be sent with both internal requests and asset URLs to ensure client and server versions match during deployments.

    • #14489 add4277 Thanks @​dev-shetty! - Adds a new Copy to Clipboard button to the error overlay stack trace.

      When an error occurs in dev mode, you can now copy the stack trace with a single click to more easily share it in a bug report, a support thread, or with your favorite LLM.

    • #14564 5e7cebb Thanks @​florian-lefebvre! - Updates astro add cloudflare to scaffold more configuration files

      Running astro add cloudflare will now emit wrangler.jsonc and public/.assetsignore, allowing your Astro project to work out of the box as a worker.

    Patch Changes

    • #14591 3e887ec Thanks @​matthewp! - Adds TypeScript support for the components prop on MDX Content component when using await render(). Developers now get proper IntelliSense and type checking when passing custom components to override default MDX element rendering.

    • #14598 7b45c65 Thanks @​delucis! - Reduces terminal text styling dependency size by switching from kleur to picocolors

    • #13826 8079482 Thanks @​florian-lefebvre! - Adds the option to specify in the preload directive which weights, styles, or subsets to preload for a given font family when using the experimental Fonts API:

      ---
      import { Font } from 'astro:assets';
      ---
      <Font
      cssVariable="--font-roboto"
      preload={[{ subset: 'latin', style: 'normal' }, { weight: '400' }]}
      />

      Variable weight font files will be preloaded if any weight within its range is requested. For example, a font file for font weight 100 900 will be included when 400 is specified in a preload object.

    [email protected]

    Patch Changes

    • #14590 577d051 Thanks @​matthewp! - Fixes image path resolution in content layer collections to support bare filenames. The image() helper now normalizes bare filenames like "cover.jpg" to relative paths "./cover.jpg" for consistent resolution behavior between markdown frontmatter and JSON content collections.

    ... (truncated)

    Changelog

    Sourced from astro's changelog.

    5.15.1

    Patch Changes

    • #14612 18552c7 Thanks @​ematipico! - Fixes a regression introduced in Astro v5.14.7 that caused ?url imports to not work correctly. This release reverts #14142.

    5.15.0

    Minor Changes

    • #14543 9b3241d Thanks @​matthewp! - Adds two new adapter configuration options assetQueryParams and internalFetchHeaders to the Adapter API.

      Official and community-built adapters can now use client.assetQueryParams to specify query parameters that should be appended to asset URLs (CSS, JavaScript, images, fonts, etc.). The query parameters are automatically appended to all generated asset URLs during the build process.

      Adapters can also use client.internalFetchHeaders to specify headers that should be included in Astro's internal fetch calls (Actions, View Transitions, Server Islands, Prefetch).

      This enables features like Netlify's skew protection, which requires the deploy ID to be sent with both internal requests and asset URLs to ensure client and server versions match during deployments.

    • #14489 add4277 Thanks @​dev-shetty! - Adds a new Copy to Clipboard button to the error overlay stack trace.

      When an error occurs in dev mode, you can now copy the stack trace with a single click to more easily share it in a bug report, a support thread, or with your favorite LLM.

    • #14564 5e7cebb Thanks @​florian-lefebvre! - Updates astro add cloudflare to scaffold more configuration files

      Running astro add cloudflare will now emit wrangler.jsonc and public/.assetsignore, allowing your Astro project to work out of the box as a worker.

    Patch Changes

    • #14591 3e887ec Thanks @​matthewp! - Adds TypeScript support for the components prop on MDX Content component when using await render(). Developers now get proper IntelliSense and type checking when passing custom components to override default MDX element rendering.

    • #14598 7b45c65 Thanks @​delucis! - Reduces terminal text styling dependency size by switching from kleur to picocolors

    • #13826 8079482 Thanks @​florian-lefebvre! - Adds the option to specify in the preload directive which weights, styles, or subsets to preload for a given font family when using the experimental Fonts API:

      ---
      import { Font } from 'astro:assets';
      ---
      <Font
      cssVariable="--font-roboto"
      preload={[{ subset: 'latin', style: 'normal' }, { weight: '400' }]}
      />

      Variable weight font files will be preloaded if any weight within its range is requested. For example, a font file for font weight 100 900 will be included when 400 is specified in a preload object.

    5.14.8

    Patch Changes

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for astro since your current version.


    Updates mermaid from 11.4.1 to 11.12.0

    Release notes

    Sourced from mermaid's releases.

    [email protected]

    Minor Changes

    Patch Changes

    [email protected]

    Minor Changes

    • #6704 012530e Thanks @​omkarht! - feat: Added support for new participant types (actor, boundary, control, entity, database, collections, queue) in sequenceDiagram.

    • #6802 c8e5027 Thanks @​darshanr0107! - feat: Update mindmap rendering to support multiple layouts, improved edge intersections, and new shapes

    Patch Changes

    [email protected]

    Patch Changes

    [email protected]

    Minor Changes

    Patch Changes

    …y with 16 updates
    
    Bumps the production-dependencies group with 15 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) | `0.9.4` | `0.9.5` |
    | [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react) | `4.1.5` | `4.4.0` |
    | [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.31.1` | `0.36.1` |
    | [@astrojs/starlight-tailwind](https://github.com/withastro/starlight/tree/HEAD/packages/tailwind) | `3.0.0` | `4.0.1` |
    | [@astrojs/tailwind](https://github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind) | `5.1.4` | `6.0.2` |
    | [@scalar/api-reference-react](https://github.com/scalar/scalar/tree/HEAD/packages/api-reference-react) | `0.4.14` | `0.8.1` |
    | [mermaid](https://github.com/mermaid-js/mermaid) | `11.4.1` | `11.12.0` |
    | [ramda](https://github.com/ramda/ramda) | `0.30.1` | `0.32.0` |
    | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.0.0` | `19.2.0` |
    | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.0.7` | `19.2.2` |
    | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.0.0` | `19.2.0` |
    | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.0.3` | `19.2.2` |
    | [sharp](https://github.com/lovell/sharp) | `0.33.5` | `0.34.4` |
    | [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.17` | `4.1.16` |
    | [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.9.3` |
    
    
    
    Updates `@astrojs/check` from 0.9.4 to 0.9.5
    - [Release notes](https://github.com/withastro/language-tools/releases)
    - [Changelog](https://github.com/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md)
    - [Commits](https://github.com/withastro/language-tools/commits/HEAD/packages/astro-check)
    
    Updates `@astrojs/react` from 4.1.5 to 4.4.0
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/react/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/react)
    
    Updates `@astrojs/starlight` from 0.31.1 to 0.36.1
    - [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/[email protected]/packages/starlight)
    
    Updates `@astrojs/starlight-tailwind` from 3.0.0 to 4.0.1
    - [Release notes](https://github.com/withastro/starlight/releases)
    - [Changelog](https://github.com/withastro/starlight/blob/main/packages/tailwind/CHANGELOG.md)
    - [Commits](https://github.com/withastro/starlight/commits/@astrojs/[email protected]/packages/tailwind)
    
    Updates `@astrojs/tailwind` from 5.1.4 to 6.0.2
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/tailwind/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/tailwind)
    
    Updates `@scalar/api-reference-react` from 0.4.14 to 0.8.1
    - [Changelog](https://github.com/scalar/scalar/blob/main/packages/api-reference-react/CHANGELOG.md)
    - [Commits](https://github.com/scalar/scalar/commits/HEAD/packages/api-reference-react)
    
    Updates `astro` from 5.1.7 to 5.15.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/[email protected]/packages/astro)
    
    Updates `mermaid` from 11.4.1 to 11.12.0
    - [Release notes](https://github.com/mermaid-js/mermaid/releases)
    - [Commits](https://github.com/mermaid-js/mermaid/compare/[email protected]@11.12.0)
    
    Updates `ramda` from 0.30.1 to 0.32.0
    - [Release notes](https://github.com/ramda/ramda/releases)
    - [Changelog](https://github.com/ramda/ramda/blob/master/CHANGELOG.md)
    - [Commits](ramda/ramda@v0.30.1...v0.32.0)
    
    Updates `react` from 19.0.0 to 19.2.0
    - [Release notes](https://github.com/facebook/react/releases)
    - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react)
    
    Updates `@types/react` from 19.0.7 to 19.2.2
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)
    
    Updates `react-dom` from 19.0.0 to 19.2.0
    - [Release notes](https://github.com/facebook/react/releases)
    - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react-dom)
    
    Updates `@types/react-dom` from 19.0.3 to 19.2.2
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)
    
    Updates `sharp` from 0.33.5 to 0.34.4
    - [Release notes](https://github.com/lovell/sharp/releases)
    - [Commits](lovell/sharp@v0.33.5...v0.34.4)
    
    Updates `tailwindcss` from 3.4.17 to 4.1.16
    - [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.1.16/packages/tailwindcss)
    
    Updates `typescript` from 5.7.3 to 5.9.3
    - [Release notes](https://github.com/microsoft/TypeScript/releases)
    - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
    - [Commits](microsoft/TypeScript@v5.7.3...v5.9.3)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/check"
      dependency-version: 0.9.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: "@astrojs/react"
      dependency-version: 4.4.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: "@astrojs/starlight"
      dependency-version: 0.36.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: "@astrojs/starlight-tailwind"
      dependency-version: 4.0.1
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: "@astrojs/tailwind"
      dependency-version: 6.0.2
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: "@scalar/api-reference-react"
      dependency-version: 0.8.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: astro
      dependency-version: 5.15.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: mermaid
      dependency-version: 11.12.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: ramda
      dependency-version: 0.32.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: react
      dependency-version: 19.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: "@types/react"
      dependency-version: 19.2.2
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: react-dom
      dependency-version: 19.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: "@types/react-dom"
      dependency-version: 19.2.2
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: sharp
      dependency-version: 0.34.4
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: tailwindcss
      dependency-version: 4.1.16
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: typescript
      dependency-version: 5.9.3
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    @dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 27, 2025
    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.

    2 participants