Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the version-updates group across 1 directory with 25 updates #227

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 3, 2025

Bumps the version-updates group with 25 updates in the / directory:

Package From To
@astrojs/markdown-remark 6.0.1 6.2.0
@astrojs/react 4.1.3 4.2.1
@astrojs/starlight 0.30.6 0.32.2
@astrojs/tailwind 5.1.4 6.0.0
@faker-js/faker 9.3.0 9.5.1
@fontsource-variable/jetbrains-mono 5.1.2 5.2.5
@types/react 19.0.6 19.0.10
@types/react-dom 19.0.3 19.0.4
astro 5.1.5 5.4.1
axios 1.7.9 1.8.1
ky 1.7.4 1.7.5
starlight-links-validator 0.14.1 0.14.3
starlight-package-managers 0.9.0 0.10.0
tailwindcss 3.4.17 4.0.9
typescript 5.7.3 5.8.2
@aws-sdk/client-dynamodb 3.726.1 3.758.0
@aws-sdk/lib-dynamodb 3.726.1 3.758.0
msw 2.7.0 2.7.3
nock 13.5.6 14.0.1
npm-check-updates 17.1.13 17.1.15
prettier 3.4.2 3.5.3
testcontainers 10.16.0 10.18.0
vitest 2.1.8 3.0.7
zod 3.24.1 3.24.2
zx 8.3.0 8.3.2

Updates @astrojs/markdown-remark from 6.0.1 to 6.2.0

Release notes

Sourced from @​astrojs/markdown-remark's releases.

@​astrojs/markdown-remark@​6.2.0

Minor Changes

  • #13254 1e11f5e Thanks @​p0lyw0lf! - Adds remote image optimization in Markdown

    Previously, an internal remark plugin only looked for images in ![]() syntax that referred to a relative file path. This meant that only local images stored in src/ were passed through to an internal rehype plugin that would transform them for later processing by Astro's image service.

    Now, the plugins recognize and transform both local and remote images using this syntax. Only authorized remote images specified in your config are transformed; remote images from other sources will not be processed.

    While not configurable at this time, this process outputs two separate metadata fields (localImagePaths and remoteImagePaths) which allow for the possibility of controlling the behavior of each type of image separately in the future.

Patch Changes

  • Updated dependencies [1e11f5e]:
    • @​astrojs/internal-helpers@​0.6.0

@​astrojs/markdown-remark@​6.1.0

Minor Changes

  • #12850 db252e0 Thanks @​colinbate! - Adds support for TOML frontmatter in .md and .mdx files

    Astro 5.2 automatically identifies the format of your Markdown and MDX frontmatter based on the delimiter used. With +++ as a delimiter (instead of the --- YAML code fence), your frontmatter will automatically be recognized and parsed as TOML.

    This is useful for adding existing content files with TOML frontmatter to your project from another framework such as Hugo.

    TOML frontmatter can also be used with content collections, and files with different frontmatter languages can live together in the same project.

    No configuration is required to use TOML frontmatter in your content files. Your delimiter will indicate your chosen frontmatter language:

    +++
    date = 2025-01-30
    title = 'Use TOML frontmatter in Astro!'
    [author]
    name = 'Colin Bate'
    +++
    Support for TOML frontmatter is here!

@​astrojs/markdown-remark@​6.0.2

Patch Changes

Changelog

Sourced from @​astrojs/markdown-remark's changelog.

6.2.0

Minor Changes

  • #13254 1e11f5e Thanks @​p0lyw0lf! - Adds remote image optimization in Markdown

    Previously, an internal remark plugin only looked for images in ![]() syntax that referred to a relative file path. This meant that only local images stored in src/ were passed through to an internal rehype plugin that would transform them for later processing by Astro's image service.

    Now, the plugins recognize and transform both local and remote images using this syntax. Only authorized remote images specified in your config are transformed; remote images from other sources will not be processed.

    While not configurable at this time, this process outputs two separate metadata fields (localImagePaths and remoteImagePaths) which allow for the possibility of controlling the behavior of each type of image separately in the future.

Patch Changes

  • Updated dependencies [1e11f5e]:
    • @​astrojs/internal-helpers@​0.6.0

6.1.0

Minor Changes

  • #12850 db252e0 Thanks @​colinbate! - Adds support for TOML frontmatter in .md and .mdx files

    Astro 5.2 automatically identifies the format of your Markdown and MDX frontmatter based on the delimiter used. With +++ as a delimiter (instead of the --- YAML code fence), your frontmatter will automatically be recognized and parsed as TOML.

    This is useful for adding existing content files with TOML frontmatter to your project from another framework such as Hugo.

    TOML frontmatter can also be used with content collections, and files with different frontmatter languages can live together in the same project.

    No configuration is required to use TOML frontmatter in your content files. Your delimiter will indicate your chosen frontmatter language:

    +++
    date = 2025-01-30
    title = 'Use TOML frontmatter in Astro!'
    [author]
    name = 'Colin Bate'
    +++
    Support for TOML frontmatter is here!

6.0.2

Patch Changes

Commits

Updates @astrojs/react from 4.1.3 to 4.2.1

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​4.2.1

Patch Changes

  • #13323 80926fa Thanks @​ematipico! - Updates esbuild and vite to the latest to avoid false positives audits warnings caused by esbuild.

@​astrojs/react@​4.2.0

Minor Changes

  • #13036 3c90d8f Thanks @​artmsilva! - Adds experimental support for disabling streaming

    This is useful to support libraries that are not compatible with streaming such as some CSS-in-JS libraries. To disable streaming for all React components in your project, set experimentalDisableStreaming: true as a configuration option for @astrojs/react:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import react from '@astrojs/react';
    export default defineConfig({
    integrations: [
    react({
    
    
     experimentalDisableStreaming: true,
    
    }),
    ],
    });

@​astrojs/react@​4.1.6

Patch Changes

  • #12996 80c6801 Thanks @​bluwy! - Removes hardcoded ssr.external: ['react-dom/server', 'react-dom/client'] config that causes issues with adapters that bundle all dependencies (e.g. Cloudflare). These externals should already be inferred by default by Vite when deploying to a server environment.

  • #13011 cf30880 Thanks @​ascorbic! - Upgrades Vite

@​astrojs/react@​4.1.5

Patch Changes

  • #12887 ea603ae Thanks @​louisescher! - Adds a warning message when multiple JSX-based UI frameworks are being used without either the include or exclude property being set on the integration.

@​astrojs/react@​4.1.4

Patch Changes

  • #12923 c7642fb Thanks @​bluwy! - Removes react-specific entrypoints in optimizeDeps.include and rely on @vitejs/plugin-react to add
Changelog

Sourced from @​astrojs/react's changelog.

4.2.1

Patch Changes

  • #13323 80926fa Thanks @​ematipico! - Updates esbuild and vite to the latest to avoid false positives audits warnings caused by esbuild.

4.2.0

Minor Changes

  • #13036 3c90d8f Thanks @​artmsilva! - Adds experimental support for disabling streaming

    This is useful to support libraries that are not compatible with streaming such as some CSS-in-JS libraries. To disable streaming for all React components in your project, set experimentalDisableStreaming: true as a configuration option for @astrojs/react:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import react from '@astrojs/react';
    export default defineConfig({
    integrations: [
    react({
    
    
     experimentalDisableStreaming: true,
    
    }),
    ],
    });

4.1.6

Patch Changes

  • #12996 80c6801 Thanks @​bluwy! - Removes hardcoded ssr.external: ['react-dom/server', 'react-dom/client'] config that causes issues with adapters that bundle all dependencies (e.g. Cloudflare). These externals should already be inferred by default by Vite when deploying to a server environment.

  • #13011 cf30880 Thanks @​ascorbic! - Upgrades Vite

4.1.5

Patch Changes

  • #12887 ea603ae Thanks @​louisescher! - Adds a warning message when multiple JSX-based UI frameworks are being used without either the include or exclude property being set on the integration.

4.1.4

Patch Changes

  • #12923 c7642fb Thanks @​bluwy! - Removes react-specific entrypoints in optimizeDeps.include and rely on @vitejs/plugin-react to add
Commits

Updates @astrojs/starlight from 0.30.6 to 0.32.2

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.32.2

Patch Changes

@​astrojs/starlight@​0.32.1

Patch Changes

@​astrojs/starlight@​0.32.0

Minor Changes

  • #2390 f493361 Thanks @​delucis! - Moves route data to Astro.locals instead of passing it down via component props

    ⚠️ Breaking change: Previously, all of Starlight’s templating components, including user or plugin overrides, had access to a data object for the current route via Astro.props. This data is now available as Astro.locals.starlightRoute instead.

    To update, refactor any component overrides you have:

    • Remove imports of @astrojs/starlight/props, which is now deprecated.
    • Update code that accesses Astro.props to use Astro.locals.starlightRoute instead.
    • Remove any spreading of {...Astro.props} into child components, which is no longer required.

    In the following example, a custom override for Starlight’s LastUpdated component is updated for the new style:

    ---
    import Default from '@astrojs/starlight/components/LastUpdated.astro';
    - import type { Props } from '@astrojs/starlight/props';
    
    const { lastUpdated } = Astro.props;
    
    
    const { lastUpdated } = Astro.locals.starlightRoute;
    
    const updatedThisYear = lastUpdated?.getFullYear() === new Date().getFullYear();
    {updatedThisYear && (
    
    <Default {...Astro.props}><slot /></Default>
    
    
    <Default><slot /></Default>
    )}

Community Starlight plugins may also need to be manually updated to work with Starlight 0.32. If you encounter any issues, please reach out to the plugin author to see if it is a known issue or if an updated version is being worked on.

  • #2578 f895f75 Thanks @​HiDeoo! - Deprecates the Starlight plugin setup hook in favor of the new config:setup hook which provides the same functionality.

  • ... (truncated)

    Changelog

    Sourced from @​astrojs/starlight's changelog.

    0.32.2

    Patch Changes

    0.32.1

    Patch Changes

    0.32.0

    Minor Changes

    • #2390 f493361 Thanks @​delucis! - Moves route data to Astro.locals instead of passing it down via component props

      ⚠️ Breaking change: Previously, all of Starlight’s templating components, including user or plugin overrides, had access to a data object for the current route via Astro.props. This data is now available as Astro.locals.starlightRoute instead.

      To update, refactor any component overrides you have:

      • Remove imports of @astrojs/starlight/props, which is now deprecated.
      • Update code that accesses Astro.props to use Astro.locals.starlightRoute instead.
      • Remove any spreading of {...Astro.props} into child components, which is no longer required.

      In the following example, a custom override for Starlight’s LastUpdated component is updated for the new style:

      ---
      import Default from '@astrojs/starlight/components/LastUpdated.astro';
      - import type { Props } from '@astrojs/starlight/props';
      
      const { lastUpdated } = Astro.props;
      
      
      const { lastUpdated } = Astro.locals.starlightRoute;
      
      const updatedThisYear = lastUpdated?.getFullYear() === new Date().getFullYear();
      {updatedThisYear && (
      
      <Default {...Astro.props}><slot /></Default>
      
      
      <Default><slot /></Default>
      )}

    Community Starlight plugins may also need to be manually updated to work with Starlight 0.32. If you encounter any issues, please reach out to the plugin author to see if it is a known issue or if an updated version is being worked on.

    ... (truncated)

    Commits

    Updates @astrojs/tailwind from 5.1.4 to 6.0.0

    Release notes

    Sourced from @​astrojs/tailwind's releases.

    @​astrojs/tailwind@​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.

    @​astrojs/tailwind@​5.1.5

    Patch Changes

    Changelog

    Sourced from @​astrojs/tailwind's changelog.

    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 @faker-js/faker from 9.3.0 to 9.5.1

    Release notes

    Sourced from @​faker-js/faker's releases.

    v9.5.1

    What's Changed

    New Contributors

    Full Changelog: faker-js/faker@v9.5.0...v9.5.1

    v9.5.0

    What's Changed

    Full Changelog: faker-js/faker@v9.4.0...v9.5.0

    v9.4.0

    What's Changed

    ... (truncated)

    Changelog

    Sourced from @​faker-js/faker's changelog.

    9.5.1 (2025-02-28)

    Bug Fixes

    9.5.0 (2025-02-10)

    Features

    9.4.0 (2025-01-15)

    Features

    • finance: use fake patterns for transactionDescription (#3202) (5ec4a6c)
    • internet: update to simplified modern user-agent list (#3324) (3c7abb5)
    • location: add list of spoken languages (#3333) (ff6dda9)

    Changed Locales

    • locale: fix various locale data with trailing spaces (#3329) (e5eec0e)
    • locale: improve product_name data in en and tr (#3372) (773fc1f)

    Bug Fixes

    • animal: re-moo-ved some incorrect cow data (#3326) (47f835b)
    • basic wildcard range handling + add more tests (#3322) (817f8a0)
    • finance: update Discover card number format to ensure accuracy (#3336) (69c0063)
    • image: dataUri should return random type (#3347) (eceb17d)
    • locales: update chemical element names in zh_CN (#3371) (6ec6f84)
    • location: fix bad uz street_name_part data (#3328) (b6132cb)
    • music: fix truncated song names with commas (#3327) (f36fc71), closes #996
    • system: semver parts should not be limited to 0-9 (#3349) (c0d92b8)
    Commits

    Updates @fontsource-variable/jetbrains-mono from 5.1.2 to 5.2.5

    Commits

    Updates @types/react from 19.0.6 to 19.0.10

    Commits

    Updates @types/react-dom from 19.0.3 to 19.0.4

    Commits

    Updates astro from 5.1.5 to 5.4.1

    Release notes

    Sourced from astro's releases.

    [email protected]

    Patch Changes

    • #13336 8f632ef Thanks @​ematipico! - Fixes a regression where some asset utilities were move across monorepo, and not re-exported anymore.

    • #13320 b5dabe9 Thanks @{! - Adds support for typing experimental session data

      You can add optional types to your session data by creating a src/env.d.ts file in your project that extends the global App.SessionData interface. For example:

      declare namespace App {
        interface SessionData {
        id: string;
        email: string;
      };
      lastLogin: Date;
      
      }
      }

      Any keys not defined in this interface will be treated as any.

      Then when you access Astro.session in your components, any defined keys will be typed correctly:

      ---
      const user = await Astro.session.get('user');
      //    ^? const: user: { id: string; email: string; } | undefined
      const something = await Astro.session.get('something');
      //    ^? const: something: any
      Astro.session.set('user', 1);
      //    ^? Argument of type 'number' is not assignable to parameter of type '{ id: string; email: string; }'.

      See the experimental session docs for more information.

    • #13330 5e7646e Thanks @​ematipico! - Fixes an issue with the conditional rendering of scripts.

      This change updates a v5.0 breaking change when experimental.directRenderScript became the default script handling behavior.

      If you have already successfully upgraded to Astro v5, you may need to review your script tags again and make sure they still behave as desired after this release. See the v5 Upgrade Guide for more details.

    [email protected]

    Minor Changes

    ... (truncated)

    Changelog

    Sourced from astro's changelog.

    5.4.1

    Patch Changes

    • #13336 8f632ef Thanks @​ematipico! - Fixes a regression where some asset utilities were move across monorepo, and not re-exported anymore.

    • #13320 b5dabe9 Thanks @{! - Adds support for typing experimental session data

      You can add optional types to your session data by creating a src/env.d.ts file in your project that extends the global App.SessionData interface. For example:

      declare namespace App {
        interface SessionData {
        id: string;
        email: string;
      };
      lastLogin: Date;
      
      }
      }

      Any keys not defined in this interface will be treated as any.

      Then when you access Astro.session in your components, any defined keys will be typed correctly:

      ---
      const user = await Astro.session.get('user');
      //    ^? const: user: { id: string; email: string; } | undefined
      const something = await Astro.session.get('something');
      //    ^? const: something: any
      Astro.session.set('user', 1);
      //    ^? Argument of type 'number' is not assignable to parameter of type '{ id: string; email: string; }'.

      See the experimental session docs for more information.

    • #13330 5e7646e Thanks @​ematipico! - Fixes an issue with the conditional rendering of scripts.

      This change updates a v5.0 breaking change when experimental.directRenderScript became the default script handling behavior.

      If you have already successfully upgraded to Astro v5, you may need to review your script tags again and make sure they still behave as desired after this release. See the v5 Upgrade Guide for more details.

    5.4.0

    Minor Changes

    ... (truncated)

    Commits

    Updates axios from 1.7.9 to 1.8.1

    Release notes

    Sourced from axios's releases.

    Release v1.8.1

    Release notes:

    Bug Fixes

    • utils: move generateString to platform utils to avoid importing crypto m...

      Description has been truncated

    …5 updates
    
    Bumps the version-updates group with 25 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/markdown-remark](https://github.com/withastro/astro/tree/HEAD/packages/markdown/remark) | `6.0.1` | `6.2.0` |
    | [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react) | `4.1.3` | `4.2.1` |
    | [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.30.6` | `0.32.2` |
    | [@astrojs/tailwind](https://github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind) | `5.1.4` | `6.0.0` |
    | [@faker-js/faker](https://github.com/faker-js/faker) | `9.3.0` | `9.5.1` |
    | [@fontsource-variable/jetbrains-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/jetbrains-mono) | `5.1.2` | `5.2.5` |
    | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.0.6` | `19.0.10` |
    | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.0.3` | `19.0.4` |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.1.5` | `5.4.1` |
    | [axios](https://github.com/axios/axios) | `1.7.9` | `1.8.1` |
    | [ky](https://github.com/sindresorhus/ky) | `1.7.4` | `1.7.5` |
    | [starlight-links-validator](https://github.com/HiDeoo/starlight-links-validator/tree/HEAD/packages/starlight-links-validator) | `0.14.1` | `0.14.3` |
    | [starlight-package-managers](https://github.com/HiDeoo/starlight-package-managers/tree/HEAD/packages/starlight-package-managers) | `0.9.0` | `0.10.0` |
    | [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.17` | `4.0.9` |
    | [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.2` |
    | [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.726.1` | `3.758.0` |
    | [@aws-sdk/lib-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-dynamodb) | `3.726.1` | `3.758.0` |
    | [msw](https://github.com/mswjs/msw) | `2.7.0` | `2.7.3` |
    | [nock](https://github.com/nock/nock) | `13.5.6` | `14.0.1` |
    | [npm-check-updates](https://github.com/raineorshine/npm-check-updates) | `17.1.13` | `17.1.15` |
    | [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.5.3` |
    | [testcontainers](https://github.com/testcontainers/testcontainers-node) | `10.16.0` | `10.18.0` |
    | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.8` | `3.0.7` |
    | [zod](https://github.com/colinhacks/zod) | `3.24.1` | `3.24.2` |
    | [zx](https://github.com/google/zx) | `8.3.0` | `8.3.2` |
    
    
    
    Updates `@astrojs/markdown-remark` from 6.0.1 to 6.2.0
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/markdown/remark/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/markdown/remark)
    
    Updates `@astrojs/react` from 4.1.3 to 4.2.1
    - [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.30.6 to 0.32.2
    - [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/tailwind` from 5.1.4 to 6.0.0
    - [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 `@faker-js/faker` from 9.3.0 to 9.5.1
    - [Release notes](https://github.com/faker-js/faker/releases)
    - [Changelog](https://github.com/faker-js/faker/blob/next/CHANGELOG.md)
    - [Commits](faker-js/faker@v9.3.0...v9.5.1)
    
    Updates `@fontsource-variable/jetbrains-mono` from 5.1.2 to 5.2.5
    - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/jetbrains-mono)
    
    Updates `@types/react` from 19.0.6 to 19.0.10
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)
    
    Updates `@types/react-dom` from 19.0.3 to 19.0.4
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)
    
    Updates `astro` from 5.1.5 to 5.4.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 `axios` from 1.7.9 to 1.8.1
    - [Release notes](https://github.com/axios/axios/releases)
    - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
    - [Commits](axios/axios@v1.7.9...v1.8.1)
    
    Updates `ky` from 1.7.4 to 1.7.5
    - [Release notes](https://github.com/sindresorhus/ky/releases)
    - [Commits](sindresorhus/ky@v1.7.4...v1.7.5)
    
    Updates `starlight-links-validator` from 0.14.1 to 0.14.3
    - [Release notes](https://github.com/HiDeoo/starlight-links-validator/releases)
    - [Changelog](https://github.com/HiDeoo/starlight-links-validator/blob/main/packages/starlight-links-validator/CHANGELOG.md)
    - [Commits](https://github.com/HiDeoo/starlight-links-validator/commits/[email protected]/packages/starlight-links-validator)
    
    Updates `starlight-package-managers` from 0.9.0 to 0.10.0
    - [Release notes](https://github.com/HiDeoo/starlight-package-managers/releases)
    - [Changelog](https://github.com/HiDeoo/starlight-package-managers/blob/main/packages/starlight-package-managers/CHANGELOG.md)
    - [Commits](https://github.com/HiDeoo/starlight-package-managers/commits/[email protected]/packages/starlight-package-managers)
    
    Updates `tailwindcss` from 3.4.17 to 4.0.9
    - [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.0.9/packages/tailwindcss)
    
    Updates `typescript` from 5.7.3 to 5.8.2
    - [Release notes](https://github.com/microsoft/TypeScript/releases)
    - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
    - [Commits](microsoft/TypeScript@v5.7.3...v5.8.2)
    
    Updates `@aws-sdk/client-dynamodb` from 3.726.1 to 3.758.0
    - [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
    - [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-dynamodb/CHANGELOG.md)
    - [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.758.0/clients/client-dynamodb)
    
    Updates `@aws-sdk/lib-dynamodb` from 3.726.1 to 3.758.0
    - [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
    - [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/lib/lib-dynamodb/CHANGELOG.md)
    - [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.758.0/lib/lib-dynamodb)
    
    Updates `msw` from 2.7.0 to 2.7.3
    - [Release notes](https://github.com/mswjs/msw/releases)
    - [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
    - [Commits](mswjs/msw@v2.7.0...v2.7.3)
    
    Updates `nock` from 13.5.6 to 14.0.1
    - [Release notes](https://github.com/nock/nock/releases)
    - [Changelog](https://github.com/nock/nock/blob/main/CHANGELOG.md)
    - [Commits](nock/nock@v13.5.6...v14.0.1)
    
    Updates `npm-check-updates` from 17.1.13 to 17.1.15
    - [Release notes](https://github.com/raineorshine/npm-check-updates/releases)
    - [Changelog](https://github.com/raineorshine/npm-check-updates/blob/main/CHANGELOG.md)
    - [Commits](raineorshine/npm-check-updates@v17.1.13...v17.1.15)
    
    Updates `prettier` from 3.4.2 to 3.5.3
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.4.2...3.5.3)
    
    Updates `testcontainers` from 10.16.0 to 10.18.0
    - [Release notes](https://github.com/testcontainers/testcontainers-node/releases)
    - [Commits](testcontainers/testcontainers-node@v10.16.0...v10.18.0)
    
    Updates `vitest` from 2.1.8 to 3.0.7
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.7/packages/vitest)
    
    Updates `zod` from 3.24.1 to 3.24.2
    - [Release notes](https://github.com/colinhacks/zod/releases)
    - [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
    - [Commits](colinhacks/zod@v3.24.1...v3.24.2)
    
    Updates `zx` from 8.3.0 to 8.3.2
    - [Release notes](https://github.com/google/zx/releases)
    - [Commits](google/zx@8.3.0...8.3.2)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/markdown-remark"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: version-updates
    - dependency-name: "@astrojs/react"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: version-updates
    - dependency-name: "@astrojs/starlight"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: version-updates
    - dependency-name: "@astrojs/tailwind"
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: version-updates
    - dependency-name: "@faker-js/faker"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: version-updates
    - dependency-name: "@fontsource-variable/jetbrains-mono"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: version-updates
    - dependency-name: "@types/react"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: version-updates
    - dependency-name: "@types/react-dom"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: version-updates
    - dependency-name: astro
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: version-updates
    - dependency-name: axios
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: version-updates
    - dependency-name: ky
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: version-updates
    - dependency-name: starlight-links-validator
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: version-updates
    - dependency-name: starlight-package-managers
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: version-updates
    - dependency-name: tailwindcss
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: version-updates
    - dependency-name: typescript
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: version-updates
    - dependency-name: "@aws-sdk/client-dynamodb"
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: version-updates
    - dependency-name: "@aws-sdk/lib-dynamodb"
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: version-updates
    - dependency-name: msw
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: version-updates
    - dependency-name: nock
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: version-updates
    - dependency-name: npm-check-updates
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: version-updates
    - dependency-name: prettier
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: version-updates
    - dependency-name: testcontainers
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: version-updates
    - dependency-name: vitest
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: version-updates
    - dependency-name: zod
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: version-updates
    - dependency-name: zx
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: version-updates
    ...
    
    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 Mar 3, 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.

    0 participants