Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 27, 2025

This PR contains the following updates:

Package Change Age Confidence
@astrojs/check (source) 0.9.40.9.6 age confidence
@astrojs/mdx (source) 4.2.64.3.13 age confidence
@astrojs/sitemap (source) 3.4.03.7.0 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/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

v4.3.4

Compare Source

Patch Changes

v4.3.3

Compare Source

Patch Changes

v4.3.2

Compare Source

Patch Changes

v4.3.1

Compare Source

Patch Changes

v4.3.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.

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>
    

v3.5.1

Compare Source

Patch Changes
  • #​14233 896886c Thanks @​gouravkhunger! - Fixes the issue with the option lastmod where if it is defined it applies correctly to <url> entries in each sitemap-${i}.xml file but not the <sitemap> entries in the root sitemap-index.xml file.

v3.5.0

Compare Source

Minor Changes
  • #​13682 5824b32 Thanks @​gouravkhunger! - Adds a customSitemaps option to include extra sitemaps in the sitemap-index.xml file generated by Astro.

    This is useful for multi-framework setups on the same domain as your Astro site (example.com), such as a blog at example.com/blog whose sitemap is generated by another framework.

    The following example shows configuring your Astro site to include sitemaps for an externally-generated blog and help center along with the generated sitemap entries in sitemap-index.xml:

    Example:

    import { defineConfig } from 'astro/config';
    import sitemap from '@&#8203;astrojs/sitemap';
    
    export default defineConfig({
      site: 'https://example.com',
      integrations: [
        sitemap({
          customSitemaps: [
            'https://example.com/blog/sitemap.xml',
            'https://example.com/helpcenter/sitemap.xml',
          ],
        }),
      ],
    });

    Learn more in the @astrojs/sitemap configuration documentation.

v3.4.2

Compare Source

Patch Changes

v3.4.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.

@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 33a85c7 to b9181a0 Compare March 4, 2025 17:36
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 4 times, most recently from 33cb35b to 96b829a Compare March 17, 2025 13:55
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 557f2ba to fd83219 Compare March 21, 2025 17:30
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 269a765 to 389fe3d Compare March 31, 2025 17:13
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 77a7940 to d4ca752 Compare April 8, 2025 16:21
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 6 times, most recently from 4bb9cb4 to 48f1886 Compare April 18, 2025 12:57
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 7 times, most recently from 52dc19d to f3c64de Compare April 30, 2025 14:36
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 2aa4442 to 88e636c Compare May 12, 2025 15:04
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 88e636c to e1b4c48 Compare May 13, 2025 21:24
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 5 times, most recently from 939739d to f9cee27 Compare August 4, 2025 16:12
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 273c8b9 to aeb1d59 Compare August 14, 2025 15:40
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from aeb1d59 to a22a887 Compare August 15, 2025 15:23
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from a22a887 to 69ff8d9 Compare August 22, 2025 18:55
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 69ff8d9 to acecc3d Compare September 8, 2025 19:10
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from fdbb20c to 1386030 Compare September 22, 2025 10:47
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 1386030 to db90a17 Compare September 25, 2025 17:41
@renovate renovate bot changed the title fix(deps): update astro monorepo chore(deps): update astro monorepo Sep 25, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from db90a17 to ef750e7 Compare October 9, 2025 15:37
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from f37c364 to 6e324de Compare October 28, 2025 16:58
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 6e324de to 6e9e13a Compare November 6, 2025 19:00
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 4ed66d8 to 1fcb35a Compare November 20, 2025 14:47
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 1fcb35a to be42dea Compare November 26, 2025 17:50
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from ef3a9a8 to b229948 Compare December 10, 2025 16:47
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 2a31428 to 77fbf01 Compare January 7, 2026 15:29
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 77fbf01 to 7d3eb55 Compare January 8, 2026 21:11
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 7d3eb55 to 180ba6b Compare January 16, 2026 03:40
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.

1 participant