Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 27, 2025

This PR contains the following updates:

Package Change Age Confidence
@astrojs/mdx (source) 4.2.6 -> 4.3.7 age confidence
@astrojs/sitemap (source) 3.4.0 -> 3.6.0 age confidence

Release Notes

withastro/astro (@​astrojs/mdx)

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.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 4 times, most recently from 8be6f11 to 7dab06d Compare June 23, 2025 18:49
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 7845a7a to 844c43a Compare July 3, 2025 18:24
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from ee1c8c1 to d17c31c Compare July 17, 2025 18:40
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 7e2db32 to c6a4d39 Compare July 23, 2025 18:46
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 5 times, most recently from 7e13e1d to 939739d Compare August 1, 2025 19:58
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 47bc6a3 to 273c8b9 Compare August 10, 2025 15:44
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently 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
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