Skip to content

Comments

chore(deps): update astro monorepo#283

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/astro-monorepo
Open

chore(deps): update astro monorepo#283
renovate[bot] wants to merge 1 commit intomainfrom
renovate/astro-monorepo

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 1, 2025

This PR contains the following updates:

Package Change Age Confidence
@astrojs/check (source) 0.9.40.9.6 age confidence
@astrojs/markdown-remark (source) 6.3.66.3.10 age confidence
@astrojs/mdx (source) 4.3.44.3.13 age confidence
@astrojs/rss (source) 4.0.124.0.15 age confidence
@astrojs/sitemap (source) 3.5.13.7.0 age confidence
@astrojs/svelte (source) 7.1.07.2.5 age confidence

Release Notes

withastro/astro (@​astrojs/check)

v0.9.6

Patch Changes

v0.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.
withastro/astro (@​astrojs/markdown-remark)

v6.3.10

Compare Source

Patch Changes

v6.3.9

Compare Source

Patch Changes

v6.3.8

Compare Source

Patch Changes

v6.3.7

Compare Source

Patch Changes
withastro/astro (@​astrojs/mdx)

v4.3.13

Compare Source

Patch Changes

v4.3.12

Compare Source

Patch Changes

v4.3.11

Compare Source

Patch Changes

v4.3.10

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.

v4.3.9

Patch Changes

v4.3.8

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

v4.3.7

Compare Source

Patch Changes

v4.3.6

Compare Source

Patch Changes

v4.3.5

Compare Source

Patch Changes
withastro/astro (@​astrojs/rss)

v4.0.15

Compare Source

Patch Changes

v4.0.14

Compare Source

Patch Changes

v4.0.13

Compare Source

Patch Changes
withastro/astro (@​astrojs/sitemap)

v3.7.0

Compare Source

Minor Changes
  • #​14471 4296373 Thanks @​Slackluky! - Adds the ability to split sitemap generation into chunks based on customizable logic. This allows for better management of large sitemaps and improved performance. The new chunks option in the sitemap configuration allows users to define functions that categorize sitemap items into different chunks. Each chunk is then written to a separate sitemap file.

    integrations: [
      sitemap({
        serialize(item) { th
          return item
        },
        chunks: { // this property will be treated last on the configuration
          'blog': (item) => {  // will produce a sitemap file with `blog` name (sitemap-blog-0.xml)
            if (/blog/.test(item.url)) { // filter path that will be included in this specific sitemap file
              item.changefreq = 'weekly';
              item.lastmod = new Date();
              item.priority = 0.9; // define specific properties for this filtered path
              return item;
            }
          },
          'glossary': (item) => {
            if (/glossary/.test(item.url)) {
              item.changefreq = 'weekly';
              item.lastmod = new Date();
              item.priority = 0.7;
              return item;
            }
          }
    
          // the rest of the path will be stored in `sitemap-pages.0.xml`
        },
      }),
    ],
    
    

v3.6.1

Compare Source

Patch Changes

v3.6.0

Compare Source

Minor Changes
  • #​14285 bedc31b Thanks @​jdcolombo! - Adds a new configuration option namespaces for more control over XML namespaces used in sitemap generation

    Excluding unused namespaces can help create cleaner, more focused sitemaps that are faster for search engines to parse and use less bandwidth. If your site doesn't have news content, videos, or multiple languages, you can exclude those namespaces to reduce XML bloat.

    The namespaces option allows you to configure news, xhtml, image, and video namespaces independently. All namespaces are enabled by default for backward compatibility and no change to existing projects is necessary. But now, you can choose to streamline your XML and avoid unnecessary code.

    For example, to exclude the video namespace from your sitemap, set video: false in your configuration:

    // astro.config.mjs
    import { sitemap } from '@​astrojs/sitemap';
    
    export default {
      integrations: [
        sitemap({
          namespaces: {
            video: false,
            // other namespaces remain enabled by default
          }
        })
      ]
    };
    

    The generated XML will not include the xmlns:video namespace:

    <?xml version="1.0" encoding="UTF-8"?>
    <urlset
      xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
      xmlns:news="http://www.google.com/schemas/sitemap-news/0.9"
      xmlns:xhtml="http://www.w3.org/1999/xhtml"
      xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
    >
      <!-- ... -->
    </urlset>
    
withastro/astro (@​astrojs/svelte)

v7.2.5

Compare Source

Patch Changes

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

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.

@github-actions
Copy link

github-actions bot commented Jul 1, 2025

🎊 PR Preview 931c602 has been successfully built and deployed to https://catppuccin-website-build-pr-283.surge.sh

🕐 Build time: 0.011s

🤖 By surge-preview

@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from f56388c to d6efea7 Compare July 3, 2025 16:58
@renovate renovate bot changed the title chore(deps): update dependency astro to v5.10.2 chore(deps): update dependency astro to v5.11.0 Jul 3, 2025
@renovate renovate bot changed the title chore(deps): update dependency astro to v5.11.0 chore(deps): update dependency astro to v5.11.0 - autoclosed Jul 8, 2025
@renovate renovate bot closed this Jul 8, 2025
@renovate renovate bot deleted the renovate/astro-monorepo branch July 8, 2025 00:18
@renovate renovate bot changed the title chore(deps): update dependency astro to v5.11.0 - autoclosed chore(deps): update dependency astro to v5.11.0 Jul 14, 2025
@renovate renovate bot reopened this Jul 14, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 5fa996f to d6efea7 Compare July 14, 2025 11:05
@renovate renovate bot changed the title chore(deps): update dependency astro to v5.11.0 chore(deps): update dependency astro to v5.11.1 Jul 14, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from d1cad1e to 290d8fe Compare July 16, 2025 21:07
@renovate renovate bot changed the title chore(deps): update dependency astro to v5.11.1 chore(deps): update dependency astro to v5.11.2 Jul 16, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 290d8fe to c16cff2 Compare July 17, 2025 14:58
@renovate renovate bot changed the title chore(deps): update dependency astro to v5.11.2 chore(deps): update astro monorepo Jul 17, 2025
@renovate renovate bot changed the title chore(deps): update astro monorepo chore(deps): update astro monorepo - autoclosed Jul 18, 2025
@renovate renovate bot closed this Jul 18, 2025
@renovate renovate bot changed the title chore(deps): update astro monorepo - autoclosed chore(deps): update astro monorepo Jul 21, 2025
@renovate renovate bot reopened this Jul 21, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from c15bf98 to c16cff2 Compare July 21, 2025 23:09
@renovate renovate bot changed the title chore(deps): update astro monorepo chore(deps): update dependency astro to v5.12.1 Jul 21, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from cc74cdc to 0444426 Compare July 22, 2025 23:39
@renovate renovate bot changed the title chore(deps): update dependency astro to v5.12.1 chore(deps): update dependency astro to v5.12.2 Jul 22, 2025
@renovate renovate bot changed the title chore(deps): update dependency astro to v5.12.2 chore(deps): update dependency astro to v5.12.3 Jul 23, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from d4103bb to 71461d2 Compare July 28, 2025 11:59
@renovate renovate bot changed the title chore(deps): update dependency astro to v5.12.3 chore(deps): update astro monorepo Jul 28, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 71461d2 to d18a568 Compare August 7, 2025 11:22
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 56c6960 to 00b31c0 Compare September 22, 2025 09:29
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from fe75b85 to ff4250b Compare September 26, 2025 12:45
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 2646e84 to 8e3026c Compare October 11, 2025 00:36
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 854e0f2 to 2ca3d17 Compare October 28, 2025 19:46
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from bbff30c to 4635f0f Compare November 10, 2025 18:37
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from b0bc5f9 to ef4cf65 Compare November 20, 2025 13:52
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from ef4cf65 to 9a43dcb Compare November 26, 2025 15:45
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 9a43dcb to a5bb9d2 Compare December 3, 2025 18:40
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from ea8d644 to 7389f87 Compare December 16, 2025 15:03
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 7389f87 to 30d515e Compare December 31, 2025 14:48
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from bfb1195 to fa4f811 Compare January 8, 2026 17:33
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 2afc042 to 97462dd Compare January 19, 2026 19:31
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 97462dd to a55f0f0 Compare January 23, 2026 20:29
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from a55f0f0 to 263b32b Compare February 2, 2026 19:48
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 263b32b to 47b4127 Compare February 12, 2026 17:34
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 47b4127 to 931c602 Compare February 17, 2026 16:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants