Skip to content

chore(deps): update astro monorepo#100

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

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

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jan 16, 2026

This PR contains the following updates:

Package Change Age Confidence
@astrojs/mdx (source) 4.3.134.3.14 age confidence
@astrojs/partytown (source) 2.1.42.1.6 age confidence
@astrojs/sitemap (source) 3.6.13.7.2 age confidence
astro (source) 5.16.95.18.1 age confidence

Release Notes

withastro/astro (@​astrojs/mdx)

v4.3.14

Compare Source

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

v2.1.6

Compare Source

Patch Changes
  • #​16002 846f27f Thanks @​buley! - Fixes file descriptor leaks from read streams that were not destroyed on client disconnect or read errors

v2.1.5

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`
        },
      }),
    ],
    
    

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 requested a review from pmig as a code owner January 16, 2026 06:58
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 6 times, most recently from d8a421c to 33242f5 Compare January 23, 2026 09:53
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 5 times, most recently from 494e7c1 to 4ebc0de Compare January 29, 2026 17:55
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 4ebc0de to b63c321 Compare February 2, 2026 19:55
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 4 times, most recently from 77bc0ea to 8365e40 Compare February 18, 2026 20:57
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 8365e40 to 2855362 Compare February 25, 2026 18:55
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 3084817 to 3597412 Compare March 10, 2026 17:03
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 3597412 to 1192376 Compare March 13, 2026 11:15
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 1192376 to fd74fc8 Compare March 26, 2026 18:59
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