Skip to content

chore(deps): update astro monorepo#77

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

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

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented May 21, 2025

This PR contains the following updates:

Package Change Age Confidence
@astrojs/check (source) 0.9.40.9.8 age confidence
@astrojs/mdx (source) 4.3.04.3.14 age confidence
@astrojs/rss (source) 4.0.124.0.18 age confidence
@astrojs/sitemap (source) 3.4.13.7.2 age confidence
astro (source) 5.9.05.18.1 age confidence

Release Notes

withastro/astro (@​astrojs/check)

v0.9.8

Compare Source

Patch Changes

v0.9.7

Compare Source

Patch Changes

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.14

Compare Source

Patch Changes

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
withastro/astro (@​astrojs/rss)

v4.0.18

Compare Source

Patch Changes

v4.0.17

Compare Source

Patch Changes

v4.0.16

Compare Source

Patch Changes

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.2

Compare Source

Patch Changes

v3.7.1

Compare Source

Patch Changes

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

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.

@changeset-bot
Copy link
Copy Markdown

changeset-bot bot commented May 21, 2025

⚠️ No Changeset found

Latest commit: 043a3ba

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@codecov
Copy link
Copy Markdown

codecov bot commented May 21, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 31.74%. Comparing base (3edf8a5) to head (a6f709a).

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #77   +/-   ##
=======================================
  Coverage   31.74%   31.74%           
=======================================
  Files          10       10           
  Lines         419      419           
  Branches       22       22           
=======================================
  Hits          133      133           
  Misses        281      281           
  Partials        5        5           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 8b62004 to 3b816ac Compare May 22, 2025 16:35
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.7.14 fix(deps): update astro monorepo May 22, 2025
@renovate renovate bot changed the title fix(deps): update astro monorepo fix(deps): update astro monorepo - autoclosed May 22, 2025
@renovate renovate bot closed this May 22, 2025
@renovate renovate bot deleted the renovate/astro-monorepo branch May 22, 2025 17:38
@renovate renovate bot changed the title fix(deps): update astro monorepo - autoclosed fix(deps): update astro monorepo May 29, 2025
@renovate renovate bot reopened this May 29, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from f56dcfc to 3b816ac Compare May 29, 2025 14:59
@renovate renovate bot changed the title fix(deps): update astro monorepo fix(deps): update dependency astro to v5.8.1 May 29, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 089abc6 to 9de2c2d Compare June 4, 2025 12:24
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.8.1 fix(deps): update astro monorepo Jun 4, 2025
@renovate renovate bot changed the title fix(deps): update astro monorepo fix(deps): update astro monorepo - autoclosed Jun 5, 2025
@renovate renovate bot closed this Jun 5, 2025
@renovate renovate bot changed the title fix(deps): update astro monorepo - autoclosed fix(deps): update astro monorepo Jun 7, 2025
@renovate renovate bot reopened this Jun 7, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 828c13b to 9de2c2d Compare June 7, 2025 09:08
@renovate renovate bot changed the title fix(deps): update astro monorepo fix(deps): update dependency astro to v5.9.1 Jun 7, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 71e77f5 to 185d905 Compare June 9, 2025 19:35
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.9.1 fix(deps): update dependency astro to v5.9.2 Jun 9, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 185d905 to 3bfa26b Compare June 15, 2025 08:14
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.9.2 fix(deps): update dependency astro to v5.9.3 Jun 15, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 3bfa26b to 9dc1970 Compare June 17, 2025 12:56
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.9.3 fix(deps): update dependency astro to v5.9.4 Jun 17, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 9dc1970 to 72e873c Compare June 19, 2025 14:58
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.9.4 fix(deps): update dependency astro to v5.10.0 Jun 19, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 72e873c to d2401bc Compare June 22, 2025 14:51
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 4 times, most recently from ca5e818 to 9bba243 Compare July 28, 2025 18:11
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 4 times, most recently from 01e47d4 to 9379b3b Compare August 13, 2025 15:44
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 6be411e to cda538e Compare August 19, 2025 19:01
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 2a25c26 to 05de728 Compare August 27, 2025 14:08
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 9f9d6a7 to a6f709a Compare August 31, 2025 12:32
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 87d773f to 9d02c26 Compare September 9, 2025 17:12
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from ff5c161 to 4bc15c4 Compare September 22, 2025 10:43
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 35f72be to 55f8a9b Compare September 25, 2025 21:11
@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 55f8a9b to 0099389 Compare September 26, 2025 13:46
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 89f16b1 to 78642e3 Compare October 14, 2025 15:41
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from b0d45dc to 0f0493f Compare October 20, 2025 15:07
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