Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2025

Bumps the patch-minor group with 1 update in the / directory: @astrojs/node.

Updates @astrojs/node from 9.2.2 to 9.5.1

Release notes

Sourced from @​astrojs/node's releases.

@​astrojs/node@​9.5.1

Patch Changes

@​astrojs/node@​9.5.0

Minor Changes

  • #14441 62ec8ea Thanks @​upsuper! - Updates redirect handling to be consistent across static and server output, aligning with the behavior of other adapters.

    Previously, the Node.js adapter used default HTML files with meta refresh tags when in static output. This often resulted in an extra flash of the page on redirect, while also not applying the proper status code for redirections. It's also likely less friendly to search engines.

    This update ensures that configured redirects are always handled as HTTP redirects regardless of output mode, and the default HTML files for the redirects are no longer generated in static output. It makes the Node.js adapter more consistent with the other official adapters.

    No change to your project is required to take advantage of this new adapter functionality. It is not expected to cause any breaking changes. However, if you relied on the previous redirecting behavior, you may need to handle your redirects differently now. Otherwise you should notice smoother redirects, with more accurate HTTP status codes, and may potentially see some SEO gains.

@​astrojs/node@​9.4.6

Patch Changes

  • #14514 66a26d7 Thanks @​matthewp! - Fixes compatibility issue with older versions of Astro by making getAllowedDomains() call optional and updating peer dependency to require astro@^5.14.3

@​astrojs/node@​9.4.5

Patch Changes

  • Updated dependencies [b8ca69b]:
    • @​astrojs/internal-helpers@​0.7.4

@​astrojs/node@​9.4.4

Patch Changes

  • Updated dependencies [1e2499e]:
    • @​astrojs/internal-helpers@​0.7.3
Changelog

Sourced from @​astrojs/node's changelog.

9.5.1

Patch Changes

9.5.0

Minor Changes

  • #14441 62ec8ea Thanks @​upsuper! - Updates redirect handling to be consistent across static and server output, aligning with the behavior of other adapters.

    Previously, the Node.js adapter used default HTML files with meta refresh tags when in static output. This often resulted in an extra flash of the page on redirect, while also not applying the proper status code for redirections. It's also likely less friendly to search engines.

    This update ensures that configured redirects are always handled as HTTP redirects regardless of output mode, and the default HTML files for the redirects are no longer generated in static output. It makes the Node.js adapter more consistent with the other official adapters.

    No change to your project is required to take advantage of this new adapter functionality. It is not expected to cause any breaking changes. However, if you relied on the previous redirecting behavior, you may need to handle your redirects differently now. Otherwise you should notice smoother redirects, with more accurate HTTP status codes, and may potentially see some SEO gains.

9.4.6

Patch Changes

  • #14514 66a26d7 Thanks @​matthewp! - Fixes compatibility issue with older versions of Astro by making getAllowedDomains() call optional and updating peer dependency to require astro@^5.14.3

9.4.5

Patch Changes

  • Updated dependencies [b8ca69b]:
    • @​astrojs/internal-helpers@​0.7.4

9.4.4

Patch Changes

  • Updated dependencies [1e2499e]:
    • @​astrojs/internal-helpers@​0.7.3

9.4.3

Patch Changes

9.4.2

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 @​astrojs/node since your current version.


Updates @astrojs/svelte from 7.1.0 to 7.2.2

Release notes

Sourced from @​astrojs/svelte's releases.

@​astrojs/svelte@​7.2.2

Patch Changes

  • #14715 3d55c5d Thanks @​ascorbic! - Adds support for client hydration in getContainerRenderer()

    The getContainerRenderer() function is exported by Astro framework integrations to simplify the process of rendering framework components when using the experimental Container API inside a Vite or Vitest environment. This update adds the client hydration entrypoint to the returned object, enabling client-side interactivity for components rendered using this function. Previously this required users to manually call container.addClientRenderer() with the appropriate client renderer entrypoint.

    See the container-with-vitest demo for a usage example, and the Container API documentation for more information on using framework components with the experimental Container API.

@​astrojs/svelte@​7.2.1

Patch Changes

@​astrojs/svelte@​7.2.0

Minor Changes

  • #14430 78011ba Thanks @​ascorbic! - Adds support for async server rendering

    Svelte 5.36 added experimental support for async rendering. This allows you to use await in your components in several new places. This worked out of the box with client-rendered components, but server-rendered components needed some extra help. This update adds support for async server rendering in Svelte components used in Astro.

    To use async rendering, you must enable it in your Svelte config:

    // svelte.config.js
    export default {
      compilerOptions: {
        experimental: {
          async: true,
        },
      },
    };

    Then you can use await in your components:

    <script>
      let data = await fetch('/api/data').then(res => res.json());
    </script>
    <h1>{data.title}</h1>

    See the Svelte docs for more information on using await in Svelte components, including inside $derived blocks and directly in markup.

Patch Changes

  • #14433 9cc8f21 Thanks @​ascorbic! - Fixes a bug that prevented Svelte 5.39.1+ components rendering when multiple frameworks were present

@​astrojs/svelte@​7.1.1

... (truncated)

Changelog

Sourced from @​astrojs/svelte's changelog.

7.2.2

Patch Changes

  • #14715 3d55c5d Thanks @​ascorbic! - Adds support for client hydration in getContainerRenderer()

    The getContainerRenderer() function is exported by Astro framework integrations to simplify the process of rendering framework components when using the experimental Container API inside a Vite or Vitest environment. This update adds the client hydration entrypoint to the returned object, enabling client-side interactivity for components rendered using this function. Previously this required users to manually call container.addClientRenderer() with the appropriate client renderer entrypoint.

    See the container-with-vitest demo for a usage example, and the Container API documentation for more information on using framework components with the experimental Container API.

7.2.1

Patch Changes

7.2.0

Minor Changes

  • #14430 78011ba Thanks @​ascorbic! - Adds support for async server rendering

    Svelte 5.36 added experimental support for async rendering. This allows you to use await in your components in several new places. This worked out of the box with client-rendered components, but server-rendered components needed some extra help. This update adds support for async server rendering in Svelte components used in Astro.

    To use async rendering, you must enable it in your Svelte config:

    // svelte.config.js
    export default {
      compilerOptions: {
        experimental: {
          async: true,
        },
      },
    };

    Then you can use await in your components:

    <script>
      let data = await fetch('/api/data').then(res => res.json());
    </script>
    <h1>{data.title}</h1>

    See the Svelte docs for more information on using await in Svelte components, including inside $derived blocks and directly in markup.

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 @​astrojs/svelte since your current version.


Updates @astrojs/vercel from 8.2.0 to 8.2.11

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​8.2.11

Patch Changes

  • #14570 c96711d Thanks @​matthewp! - Fix regression in 8.2.7: validate densities-based srcset widths against configured sizes

    When using densities with the Vercel image adapter, calculated widths were not being validated against Vercel's configured sizes list. This caused images to fail when using densities, as Vercel would reject the invalid widths.

    This fix ensures densities-calculated widths are mapped to valid configured sizes, matching the behavior already implemented for the widths prop.

@​astrojs/vercel@​8.2.10

Patch Changes

@​astrojs/vercel@​8.2.9

Patch Changes

@​astrojs/vercel@​8.2.8

Patch Changes

  • Updated dependencies [1e2499e]:
    • @​astrojs/internal-helpers@​0.7.3
Changelog

Sourced from @​astrojs/vercel's changelog.

8.2.11

Patch Changes

  • #14570 c96711d Thanks @​matthewp! - Fix regression in 8.2.7: validate densities-based srcset widths against configured sizes

    When using densities with the Vercel image adapter, calculated widths were not being validated against Vercel's configured sizes list. This caused images to fail when using densities, as Vercel would reject the invalid widths.

    This fix ensures densities-calculated widths are mapped to valid configured sizes, matching the behavior already implemented for the widths prop.

8.2.10

Patch Changes

8.2.9

Patch Changes

8.2.8

Patch Changes

  • Updated dependencies [1e2499e]:
    • @​astrojs/internal-helpers@​0.7.3

8.2.7

Patch Changes

  • #14039 da4182d Thanks @​ematipico! - Fixes a bug where experimentalStaticHeaders did not work as expected.

  • #14289 ed493a6 Thanks @​ascorbic! - Fixes a bug that caused invalid image sizes to be generated when the requested widths were larger than the source image

8.2.6

Patch Changes

  • Updated dependencies [4d16de7]:
    • @​astrojs/internal-helpers@​0.7.2

8.2.5

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 @​astrojs/vercel since your current version.


Updates @nanostores/persistent from 1.0.0 to 1.2.0

Release notes

Sourced from @​nanostores/persistent's releases.

1.2.0

  • Added persistentBoolean() helper.

1.1.0

  • Added ability to delete key from storage in encode.
  • Fixed reaction on atom’s key removal.
Changelog

Sourced from @​nanostores/persistent's changelog.

1.2.0

  • Added persistentBoolean() helper.

1.1.0

  • Added ability to delete key from storage in encode.
  • Fixed reaction on atom’s key removal.
Commits
  • 5904126 Release 1.2.0 version
  • 46906de Add persistentBoolean helper
  • f5adcde Use Nano Stores naming conention
  • b8ef09d Clean up project
  • 067a6ae Update dependencies and remove c8 and tsx
  • c5bd75a Remove SSR test since new Node.js has built-in localStorage
  • b4c457b Pin CI actions
  • c962208 Add Node.js 25 to CI
  • b85a11f Release 1.1.0 version
  • 931a5e8 Fix reverting key to initial on removing key from storage
  • Additional commits viewable in compare view

Updates @shopify/hydrogen-react from 2025.5.0 to 2025.7.0

Release notes

Sourced from @​shopify/hydrogen-react's releases.

@​shopify/hydrogen-react@​2025.7.0

Major Changes

  • Update Storefront API and Customer Account API to version 2025-07 (#3082) by @​juanpprieto

    This update includes:

    • Updated API version constants to 2025-07
    • Regenerated GraphQL types for both Storefront and Customer Account APIs
    • Updated all hardcoded API version references in documentation and tests
    • Regenerated skeleton template types
    • Updated skeleton's @​shopify/cli dependency to ~3.83.3

    Breaking changes may occur due to API schema changes between versions.

Patch Changes

  • Upgrade Miniflare from v2 to v4 in mini-oxygen package. (#3039) by @​kdaviduik

    • Internal MiniOxygen API has been refactored to work with Miniflare v4's new architecture.
    • Simplified MiniOxygen class - no longer extends MiniflareCore.
    • Updated global fetch handling to use Miniflare v4's outboundService API.
    • Fixed test infrastructure to use project-relative temporary directories.
    • Added support for Oxygen compatibility parameters (compatibilityDate, compatibilityFlags).
    • Removed dependency on multiple @miniflare/* packages in favor of the consolidated miniflare package.
  • Update and pin react-router to 7.9.2 for 2025.7.0 (#3138) by @​juanpprieto

  • Fix TypeScript enum compatibility between Storefront and Customer Account APIs (#3139) by @​juanpprieto

    Updated codegen configuration to reference Storefront API's LanguageCode and CurrencyCode enums for Customer Account API types. This ensures type compatibility when passing values like i18n.language between the APIs without TypeScript errors.

  • Fix Money component compatibility with Customer Account API USDC currency (#3082) by @​juanpprieto

    The 2025-07 API update added USDC currency to Customer Account API but not Storefront API, causing TypeScript errors and runtime failures. This fix:

    • Updates Money component to accept MoneyV2 from both Storefront and Customer Account APIs
    • Handles unsupported currency codes (like USDC) that Intl.NumberFormat doesn't recognize
    • Falls back to decimal formatting with currency code suffix (e.g., "100.00 USDC")
    • Maintains 2 decimal places for USDC to reinforce its 1:1 USD peg
  • Fixed parseMetafield to correctly handle money type metafields with currency_code (#3072) by @​juanpprieto

    • Transform currency_code (from Storefront API) to currencyCode (expected by MoneyV2 type)
    • Maintain backward compatibility for metafields already using currencyCode
    • Add tests for both snake_case and camelCase formats

    Fixes #3071

  • Replace deprecated faker.internet.color() with faker.color.rgb() (#2985) by @​emmanuel-ferdman

... (truncated)

Changelog

Sourced from @​shopify/hydrogen-react's changelog.

2025.7.0

Major Changes

  • Update Storefront API and Customer Account API to version 2025-07 (#3082) by @​juanpprieto

    This update includes:

    • Updated API version constants to 2025-07
    • Regenerated GraphQL types for both Storefront and Customer Account APIs
    • Updated all hardcoded API version references in documentation and tests
    • Regenerated skeleton template types
    • Updated skeleton's @​shopify/cli dependency to ~3.83.3

    Breaking changes may occur due to API schema changes between versions.

Patch Changes

  • Upgrade Miniflare from v2 to v4 in mini-oxygen package. (#3039) by @​kdaviduik

    • Internal MiniOxygen API has been refactored to work with Miniflare v4's new architecture.
    • Simplified MiniOxygen class - no longer extends MiniflareCore.
    • Updated global fetch handling to use Miniflare v4's outboundService API.
    • Fixed test infrastructure to use project-relative temporary directories.
    • Added support for Oxygen compatibility parameters (compatibilityDate, compatibilityFlags).
    • Removed dependency on multiple @miniflare/* packages in favor of the consolidated miniflare package.
  • Update and pin react-router to 7.9.2 for 2025.7.0 (#3138) by @​juanpprieto

  • Fix TypeScript enum compatibility between Storefront and Customer Account APIs (#3139) by @​juanpprieto

    Updated codegen configuration to reference Storefront API's LanguageCode and CurrencyCode enums for Customer Account API types. This ensures type compatibility when passing values like i18n.language between the APIs without TypeScript errors.

  • Fix Money component compatibility with Customer Account API USDC currency (#3082) by @​juanpprieto

    The 2025-07 API update added USDC currency to Customer Account API but not Storefront API, causing TypeScript errors and runtime failures. This fix:

    • Updates Money component to accept MoneyV2 from both Storefront and Customer Account APIs
    • Handles unsupported currency codes (like USDC) that Intl.NumberFormat doesn't recognize
    • Falls back to decimal formatting with currency code suffix (e.g., "100.00 USDC")
    • Maintains 2 decimal places for USDC to reinforce its 1:1 USD peg
  • Fixed parseMetafield to correctly handle money type metafields with currency_code (#3072) by @​juanpprieto

    • Transform currency_code (from Storefront API) to currencyCode (expected by MoneyV2 type)
    • Maintain backward compatibility for metafields already using currencyCode
    • Add tests for both snake_case and camelCase formats

    Fixes #3071

  • Replace deprecated faker.internet.color() with faker.color.rgb() (#2985) by @​emmanuel-ferdman

  • Add @inContext language support to Customer Account API mutations (#3039) by @​kdaviduik

... (truncated)

Commits

Updates @tailwindcss/vite from 4.1.11 to 4.1.17

Release notes

Sourced from @​tailwindcss/vite's releases.

v4.1.17

Fixed

  • Substitute @variant inside legacy JS APIs (#19263)
  • Prevent occasional crash on Windows when loaded into a worker thread (#19242)

v4.1.16

Fixed

  • Discard candidates with an empty data type (#19172)
  • Fix canonicalization of arbitrary variants with attribute selectors (#19176)
  • Fix invalid colors due to nested & (#19184)
  • Improve canonicalization for & > :pseudo and & :pseudo arbitrary variants (#19178)

v4.1.15

Fixed

  • Fix Safari devtools rendering issue due to color-mix fallback (#19069)
  • Suppress Lightning CSS warnings about :deep, :slotted, and :global (#19094)
  • Fix resolving theme keys when starting with the name of another theme key in JS configs and plugins (#19097)
  • Allow named groups in combination with not-*, has-*, and in-* (#19100)
  • Prevent important utilities from affecting other utilities (#19110)
  • Don’t index into strings with the theme(…) function (#19111)
  • Fix parsing issue when \t is used in at-rules (#19130)
  • Upgrade: Canonicalize utilities containing 0 values (#19095)
  • Upgrade: Migrate deprecated break-words to wrap-break-word (#19157)

Changed

  • Remove the postinstall script from oxide (#19149)

v4.1.14

Fixed

  • Handle ' syntax in ClojureScript when extracting classes (#18888)
  • Handle @variant inside @custom-variant (#18885)
  • Merge suggestions when using @utility (#18900)
  • Ensure that file system watchers created when using the CLI are always cleaned up (#18905)
  • Do not generate grid-column utilities when configuring grid-column-start or grid-column-end (#18907)
  • Do not generate grid-row utilities when configuring grid-row-start or grid-row-end (#18907)
  • Prevent duplicate CSS when overwriting a static utility with a theme key (#18056)
  • Show Lightning CSS warnings (if any) when optimizing/minifying (#18918)
  • Use default export condition for @tailwindcss/vite (#18948)
  • Re-throw errors from PostCSS nodes (#18373)
  • Detect classes in markdown inline directives (#18967)
  • Ensure files with only @theme produce no output when built (#18979)
  • Support Maud templates when extracting classes (#18988)
  • Upgrade: Do not migrate variant = 'outline' during upgrades (#18922)
  • Upgrade: Show version mismatch (if any) when running upgrade tool (#19028)
  • Upgrade: Ensure first class inside className is migrated (#19031)

... (truncated)

Changelog

Sourced from @​tailwindcss/vite's changelog.

[4.1.17] - 2025-11-06

Fixed

  • Substitute @variant inside legacy JS APIs (#19263)
  • Prevent occasional crash on Windows when loaded into a worker thread (#19242)

[4.1.16] - 2025-10-23

Fixed

  • Discard candidates with an empty data type (#19172)
  • Fix canonicalization of arbitrary variants with attribute selectors (#19176)
  • Fix invalid colors due to nested & (#19184)
  • Improve canonicalization for & > :pseudo and & :pseudo arbitrary variants (#19178)

[4.1.15] - 2025-10-20

Fixed

  • Fix Safari devtools rendering issue due to color-mix fallback (#19069)
  • Suppress Lightning CSS warnings about :deep, :slotted, and :global (#19094)
  • Fix resolving theme keys when starting with the name of another theme key in JS configs and plugins (#19097)
  • Allow named groups in combination with not-*, has-*, and in-* (#19100)
  • Prevent important utilities from affecting other utilities (#19110)
  • Don’t index into strings with the theme(…) function (#19111)
  • Fix parsing issue when \t is used in at-rules (#19130)
  • Upgrade: Canonicalize utilities containing 0 values (#19095)
  • Upgrade: Migrate deprecated break-words to wrap-break-word (#19157)

Changed

[4.1.14] - 2025-10-01

Fixed

  • Handle ' syntax in ClojureScript when extracting classes (#18888)
  • Handle @variant inside @custom-variant (#18885)
  • Merge suggestions when using @utility (#18900)
  • Ensure that file system watchers created when using the CLI are always cleaned up (#18905)
  • Do not generate grid-column utilities when configuring grid-column-start or grid-column-end (#18907)
  • Do not generate grid-row utilities when configuring grid-row-start or grid-row-end (#18907)
  • Prevent duplicate CSS when overwriting a static utility with a theme key (#18056)
  • Show Lightning CSS warnings (if any) when optimizing/minifying (#18918)
  • Use default export condition for @tailwindcss/vite (#18948)
  • Re-throw errors from PostCSS nodes (#18373)
  • Detect classes in markdown inline directives (#18967)
  • Ensure files with only @theme produce no output when built (#18979)

... (truncated)

Commits

Updates astro from 5.10.1 to 5.16.3

Release notes

Sourced from astro's releases.

astro@5.16.3

Patch Changes

  • #14889 4bceeb0 Thanks @​florian-lefebvre! - Fixes actions types when using specific TypeScript configurations

  • #14929 e0f277d Thanks @​matthewp! - Fixes authentication bypass via double URL encoding in middleware

    Prevents attackers from bypassing path-based authentication checks using multi-level URL encoding (e.g., /%2561dmin instead of /%61dmin). Pathnames are now validated after decoding to ensure no additional encoding remains.

astro@5.16.2

Patch Changes

astro@5.16.1

Patch Changes

astro@5.16.0

Minor Changes

  • #13880 1a2ed01 Thanks @​azat-io! - Adds experimental SVGO optimization support for SVG assets

    Astro now supports automatic SVG optimization using SVGO during build time. This experimental feature helps reduce SVG file sizes while maintaining visual quality, improving your site's performance.

    To enable SVG optimization with default settings, add the following to your astro.config.mjs:

    import { defineConfig } from 'astro/config';
    export default defineConfig({
    experimental: {
    svgo: true,
    },
    });

    To customize optimization, pass a SVGO configuration object:

... (truncated)

Changelog

Sourced from astro's changelog.

5.16.3

Patch Changes

…dates

Bumps the patch-minor group with 1 update in the / directory: [@astrojs/node](https://github.com/withastro/astro/tree/HEAD/packages/integrations/node).


Updates `@astrojs/node` from 9.2.2 to 9.5.1
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/node/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/node@9.5.1/packages/integrations/node)

Updates `@astrojs/svelte` from 7.1.0 to 7.2.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/svelte/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/svelte@7.2.2/packages/integrations/svelte)

Updates `@astrojs/vercel` from 8.2.0 to 8.2.11
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/vercel/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/vercel@8.2.11/packages/integrations/vercel)

Updates `@nanostores/persistent` from 1.0.0 to 1.2.0
- [Release notes](https://github.com/nanostores/persistent/releases)
- [Changelog](https://github.com/nanostores/persistent/blob/main/CHANGELOG.md)
- [Commits](nanostores/persistent@1.0.0...1.2.0)

Updates `@shopify/hydrogen-react` from 2025.5.0 to 2025.7.0
- [Release notes](https://github.com/Shopify/hydrogen/releases)
- [Changelog](https://github.com/Shopify/hydrogen/blob/main/packages/hydrogen-react/CHANGELOG.md)
- [Commits](https://github.com/Shopify/hydrogen/commits/@shopify/hydrogen-react@2025.7.0/packages/hydrogen-react)

Updates `@tailwindcss/vite` from 4.1.11 to 4.1.17
- [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.17/packages/@tailwindcss-vite)

Updates `astro` from 5.10.1 to 5.16.3
- [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@5.16.3/packages/astro)

Updates `nanostores` from 1.0.1 to 1.1.0
- [Release notes](https://github.com/nanostores/nanostores/releases)
- [Changelog](https://github.com/nanostores/nanostores/blob/main/CHANGELOG.md)
- [Commits](nanostores/nanostores@1.0.1...1.1.0)

Updates `resend` from 4.6.0 to 4.8.0
- [Release notes](https://github.com/resend/resend-node/releases)
- [Commits](resend/resend-node@v4.6.0...v4.8.0)

Updates `svelte` from 5.34.9 to 5.45.2
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.45.2/packages/svelte)

Updates `zod` from 3.25.67 to 3.25.76
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.25.67...v3.25.76)

Updates `prettier` from 3.6.2 to 3.7.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.6.2...3.7.3)

Updates `prettier-plugin-tailwindcss` from 0.6.13 to 0.6.14
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.6.13...v0.6.14)

Updates `tailwindcss` from 4.1.11 to 4.1.17
- [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.17/packages/tailwindcss)

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

---
updated-dependencies:
- dependency-name: "@astrojs/node"
  dependency-version: 9.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@astrojs/svelte"
  dependency-version: 7.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@astrojs/vercel"
  dependency-version: 8.2.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@nanostores/persistent"
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@shopify/hydrogen-react"
  dependency-version: 2025.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.1.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: astro
  dependency-version: 5.16.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: nanostores
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: resend
  dependency-version: 4.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: svelte
  dependency-version: 5.45.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: zod
  dependency-version: 3.25.76
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: prettier
  dependency-version: 3.7.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: prettier-plugin-tailwindcss
  dependency-version: 0.6.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: tailwindcss
  dependency-version: 4.1.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
...

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 Dec 1, 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.

1 participant