Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 15, 2024

This PR contains the following updates:

Package Change Age Confidence
@astrojs/svelte (source) 5.7.37.2.4 age confidence
@astrojs/tailwind (source) 5.1.56.0.2 age confidence

Release Notes

withastro/astro (@​astrojs/svelte)

v7.2.4

Compare Source

Patch Changes
  • #​15004 16f3994 Thanks @​antonyfaris! - Fixes an issue where Svelte components used in Astro files would incorrectly report type errors when using client:* directives.

v7.2.3

Compare Source

Patch Changes
  • #​14934 4264a36 Thanks @​antonyfaris! - Fixes an issue where Svelte 5 components used in Astro files would not have proper type checking and IntelliSense.

v7.2.2

Compare Source

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.

v7.2.1

Compare Source

Patch Changes

v7.2.0

Compare Source

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

v7.1.1

Compare Source

Patch Changes

v7.1.0

Compare Source

Minor Changes
  • #​13809 3c3b492 Thanks @​ascorbic! - Increases minimum Node.js version to 18.20.8

    Node.js 18 has now reached end-of-life and should not be used. For now, Astro will continue to support Node.js 18.20.8, which is the final LTS release of Node.js 18, as well as Node.js 20 and Node.js 22 or later. We will drop support for Node.js 18 in a future release, so we recommend upgrading to Node.js 22 as soon as possible. See Astro's Node.js support policy for more details.

    ⚠️ Important note for users of Cloudflare Pages: The current build image for Cloudflare Pages uses Node.js 18.17.1 by default, which is no longer supported by Astro. If you are using Cloudflare Pages you should override the default Node.js version to Node.js 22. This does not affect users of Cloudflare Workers, which uses Node.js 22 by default.

v7.0.13

Compare Source

Patch Changes

v7.0.12

Compare Source

Patch Changes

v7.0.11

Compare Source

Patch Changes

v7.0.10

Compare Source

Patch Changes

v7.0.9

Compare Source

Patch Changes

v7.0.8

Compare Source

Patch Changes

v7.0.7

Compare Source

Patch Changes

v7.0.6

Compare Source

Patch Changes

v7.0.5

Compare Source

Patch Changes

v7.0.4

Compare Source

Patch Changes

v7.0.3

Compare Source

Patch Changes

v7.0.2

Compare Source

Patch Changes

v7.0.1

Compare Source

Patch Changes

v7.0.0

Compare Source

Major Changes
Minor Changes
Patch Changes

v6.0.2

Compare Source

Patch Changes

v6.0.1

Compare Source

Patch Changes

v6.0.0

Compare Source

Major Changes
  • #​12364 9fc2ab8 Thanks @​jdtjenkins! - Adds support for Svelte 5. Svelte 3 and 4 are no longer supported.

    The integration will now also no longer add vitePreprocess() by default if a preprocessor is not set up in svelte.config.js. It is recommended to set up the Svelte config manually so that features like IDE completion and syntax highlighting work properly.

    If you're using SCSS, Stylus, etc in your Svelte component style tags, make sure that the preprocessor is also set up in svelte.config.js. For example:

    // svelte.config.js
    import { vitePreprocess } from '@&#8203;astrojs/svelte';
    
    export default {
      preprocess: vitePreprocess(),
    };

    Refer to the Svelte 5 migration guide and @sveltejs/vite-plugin-svelte changelog for details of their respective breaking changes.

withastro/astro (@​astrojs/tailwind)

v6.0.2

Compare Source

Patch Changes

v6.0.1

Compare Source

Patch Changes

v6.0.0

Compare Source

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.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch 2 times, most recently from 40f643f to bfbcb6f Compare November 25, 2024 04:46
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from bfbcb6f to 82f2bc7 Compare December 2, 2024 19:35
@renovate renovate bot changed the title chore(deps): update dependency @astrojs/svelte to v6 chore(deps): update dependency @astrojs/svelte to v7 Dec 3, 2024
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch 2 times, most recently from 0cb0bed to 03a5d31 Compare December 3, 2024 16:42
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch 2 times, most recently from 38f3f6f to 6511552 Compare December 20, 2024 15:20
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 6511552 to 9b87490 Compare January 2, 2025 16:09
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch 2 times, most recently from c965677 to f9764d6 Compare January 21, 2025 00:52
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from f9764d6 to 1eb0115 Compare January 30, 2025 14:36
@renovate renovate bot changed the title chore(deps): update dependency @astrojs/svelte to v7 chore(deps): update astro monorepo (major) Jan 30, 2025
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 1eb0115 to 6c1f9b0 Compare February 5, 2025 01:18
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 6c1f9b0 to a68cfd7 Compare February 19, 2025 05:51
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from a68cfd7 to 1c1ce1e Compare February 27, 2025 14:49
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 1c1ce1e to 6503314 Compare March 11, 2025 14:18
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch 2 times, most recently from 1194370 to 6150ab4 Compare March 26, 2025 12:42
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 6150ab4 to 4791924 Compare March 31, 2025 19:08
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 4791924 to 5be9356 Compare April 14, 2025 11:43
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch 2 times, most recently from c753044 to bc17f29 Compare April 29, 2025 16:35
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from bc17f29 to 9c25ce6 Compare April 30, 2025 17:33
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch 3 times, most recently from 3dcece6 to 409b7f4 Compare May 22, 2025 02:15
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 409b7f4 to 66a0234 Compare May 22, 2025 12:29
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch 4 times, most recently from 7eb78df to 64317e6 Compare August 13, 2025 17:35
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 64317e6 to ac684e3 Compare August 19, 2025 16:00
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from ac684e3 to 99d8903 Compare August 31, 2025 09:53
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 99d8903 to 781f01f Compare September 8, 2025 20:36
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 781f01f to 838baaa Compare September 24, 2025 18:23
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 838baaa to 10ba36a Compare October 21, 2025 15:47
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 10ba36a to a4ffd0b Compare October 28, 2025 15:58
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch 2 times, most recently from 90d4791 to df36223 Compare November 10, 2025 16:40
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from df36223 to 0478595 Compare November 19, 2025 00:35
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 0478595 to 75fa3a4 Compare December 3, 2025 19:50
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch 2 times, most recently from 73d15e5 to 434ec38 Compare December 16, 2025 13:06
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 434ec38 to 001d295 Compare December 31, 2025 16:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant