Skip to content

chore(deps): update astro monorepo#82

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

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

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jan 7, 2026

This PR contains the following updates:

Package Change Age Confidence
@astrojs/cloudflare (source) 12.6.1212.6.13 age confidence
@astrojs/markdoc (source) 0.15.100.15.11 age confidence
@astrojs/partytown (source) 2.1.42.1.6 age confidence
@astrojs/sitemap (source) 3.6.03.7.2 age confidence
astro (source) 5.16.65.18.1 age confidence

Release Notes

withastro/astro (@​astrojs/cloudflare)

v12.6.13

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

v3.6.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 3 times, most recently from d254d4c to 681e717 Compare January 16, 2026 03:04
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 5 times, most recently from 36f9a5b to 329d984 Compare January 23, 2026 10:30
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 4 times, most recently from affe2d4 to 1399240 Compare January 29, 2026 18:06
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 1399240 to 8d6af33 Compare February 2, 2026 19:15
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 6dcabfc to e825217 Compare February 18, 2026 21:07
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from e825217 to 32524e5 Compare February 25, 2026 20:18
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 9a926d2 to 71ecc27 Compare March 15, 2026 02:51
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 71ecc27 to a600364 Compare March 31, 2026 16:21
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from a600364 to 26626bc Compare April 1, 2026 20: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