fix(deps): update astro monorepo #135

Open
renovate wants to merge 1 commit from renovate/astro-monorepo into main
Collaborator

This PR contains the following updates:

Package Change Age Confidence
@astrojs/check (source) 0.9.40.9.10 age confidence
@astrojs/mdx (source) 4.3.74.3.14 age confidence
@astrojs/rss (source) 4.0.124.0.19 age confidence
@astrojs/sitemap (source) 3.6.03.7.3 age confidence
astro (source) 5.14.45.18.2 age confidence

Release Notes

withastro/astro (@​astrojs/check)

v0.9.10

Compare Source

Patch Changes

v0.9.9

Compare Source

Patch Changes

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

withastro/astro (@​astrojs/rss)

v4.0.19

Compare Source

Patch Changes
  • #​17209 fbcfa03 Thanks @​matthewp! - Hardens RSS feed generation by escaping the source and enclosure item fields. These fields are now serialized as structured XML values, ensuring that special characters in values like source.title and enclosure.type are always treated as text rather than markup, consistent with how other feed fields are handled.

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

Compare Source

Patch Changes
  • #​16837 783c4a6 Thanks @​jdevalk! - Improves <lastmod> accuracy in the sitemap index. Each <sitemap> entry in sitemap-index.xml is now stamped with the most recent lastmod of the URLs in the child sitemap it points to, instead of repeating a single global date on every entry. When a child sitemap has no per-URL lastmod, the entry falls back to the lastmod option as before. This gives search engines a per-file freshness signal, so they can tell which child sitemaps actually changed without refetching all of them.

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: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate CLI.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@astrojs/check](https://github.com/withastro/astro/tree/main/packages/language-tools/astro-check) ([source](https://github.com/withastro/astro/tree/HEAD/packages/language-tools/astro-check)) | [`0.9.4` → `0.9.10`](https://renovatebot.com/diffs/npm/@astrojs%2fcheck/0.9.4/0.9.10) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@astrojs%2fcheck/0.9.10?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@astrojs%2fcheck/0.9.4/0.9.10?slim=true) | | [@astrojs/mdx](https://docs.astro.build/en/guides/integrations-guide/mdx/) ([source](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx)) | [`4.3.7` → `4.3.14`](https://renovatebot.com/diffs/npm/@astrojs%2fmdx/4.3.7/4.3.14) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@astrojs%2fmdx/4.3.14?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@astrojs%2fmdx/4.3.7/4.3.14?slim=true) | | [@astrojs/rss](https://astro.build) ([source](https://github.com/withastro/astro/tree/HEAD/packages/astro-rss)) | [`4.0.12` → `4.0.19`](https://renovatebot.com/diffs/npm/@astrojs%2frss/4.0.12/4.0.19) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@astrojs%2frss/4.0.19?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@astrojs%2frss/4.0.12/4.0.19?slim=true) | | [@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/) ([source](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap)) | [`3.6.0` → `3.7.3`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.6.0/3.7.3) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@astrojs%2fsitemap/3.7.3?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@astrojs%2fsitemap/3.6.0/3.7.3?slim=true) | | [astro](https://astro.build) ([source](https://github.com/withastro/astro/tree/HEAD/packages/astro)) | [`5.14.4` → `5.18.2`](https://renovatebot.com/diffs/npm/astro/5.14.4/5.18.2) | ![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.18.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.14.4/5.18.2?slim=true) | --- ### Release Notes <details> <summary>withastro/astro (@&#8203;astrojs/check)</summary> ### [`v0.9.10`](https://github.com/withastro/astro/blob/HEAD/packages/language-tools/astro-check/CHANGELOG.md#0910) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/check@0.9.9...@astrojs/check@0.9.10) ##### Patch Changes - [#&#8203;17447](https://github.com/withastro/astro/pull/17447) [`b01a692`](https://github.com/withastro/astro/commit/b01a6921cd8be574db2d82a6d2bbde7c7d319295) Thanks [@&#8203;ocavue](https://github.com/ocavue)! - Update dependency `yargs` to version 18. See the [yargs changelog](https://github.com/yargs/yargs/releases/tag/v18.0.0) for details. ### [`v0.9.9`](https://github.com/withastro/astro/blob/HEAD/packages/language-tools/astro-check/CHANGELOG.md#099) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/check@0.9.8...@astrojs/check@0.9.9) ##### Patch Changes - [#&#8203;16471](https://github.com/withastro/astro/pull/16471) [`f56bb3f`](https://github.com/withastro/astro/commit/f56bb3fb8fdee7839805a6514016001fff0787d7) Thanks [@&#8203;delucis](https://github.com/delucis)! - Adds support for TypeScript v6 to peer dependencies range - Updated dependencies \[[`8c62159`](https://github.com/withastro/astro/commit/8c62159eac6a77c32ac533e81d9c561409993db9)]: - [@&#8203;astrojs/language-server](https://github.com/astrojs/language-server)@&#8203;2.16.7 ### [`v0.9.8`](https://github.com/withastro/astro/blob/HEAD/packages/language-tools/astro-check/CHANGELOG.md#098) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/check@0.9.7...@astrojs/check@0.9.8) ##### Patch Changes - [#&#8203;15892](https://github.com/withastro/astro/pull/15892) [`a2f597d`](https://github.com/withastro/astro/commit/a2f597d02c70c1d8aa4b0f88168de6a8b5f5186e) Thanks [@&#8203;Princesseuh](https://github.com/Princesseuh)! - Fixes Astro not being able to find astro check sometimes - Updated dependencies \[[`7b4b254`](https://github.com/withastro/astro/commit/7b4b2549437eb099c5e96025dcf8d24ea56f30d0)]: - [@&#8203;astrojs/language-server](https://github.com/astrojs/language-server)@&#8203;2.16.5 ### [`v0.9.7`](https://github.com/withastro/astro/blob/HEAD/packages/language-tools/astro-check/CHANGELOG.md#097) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/check@0.9.6...@astrojs/check@0.9.7) ##### Patch Changes - [#&#8203;15187](https://github.com/withastro/astro/pull/15187) [`bbb5811`](https://github.com/withastro/astro/commit/bbb5811eb801a42dc091bb09ea19d6cde3033795) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Update to Astro 6 beta - [#&#8203;15198](https://github.com/withastro/astro/pull/15198) [`55107a1`](https://github.com/withastro/astro/commit/55107a1bc6e578e036be45ade5e259e77f31105b) Thanks [@&#8203;HiDeoo](https://github.com/HiDeoo)! - Updates to Astro 6 beta - Updated dependencies \[[`bbb5811`](https://github.com/withastro/astro/commit/bbb5811eb801a42dc091bb09ea19d6cde3033795), [`df6d2d7`](https://github.com/withastro/astro/commit/df6d2d7bbcaf6b6a327a37a6437d4adade6e2485)]: - [@&#8203;astrojs/language-server](https://github.com/astrojs/language-server)@&#8203;2.16.1 ### [`v0.9.6`](https://github.com/withastro/astro/blob/HEAD/packages/language-tools/astro-check/CHANGELOG.md#096-beta1) ##### Patch Changes - [#&#8203;15187](https://github.com/withastro/astro/pull/15187) [`bbb5811`](https://github.com/withastro/astro/commit/bbb5811eb801a42dc091bb09ea19d6cde3033795) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Update to Astro 6 beta - Updated dependencies \[[`bbb5811`](https://github.com/withastro/astro/commit/bbb5811eb801a42dc091bb09ea19d6cde3033795)]: - [@&#8203;astrojs/language-server](https://github.com/astrojs/language-server)@&#8203;2.16.1-beta.1 ### [`v0.9.5`](https://github.com/withastro/astro/blob/HEAD/packages/language-tools/astro-check/CHANGELOG.md#095) ##### Patch Changes - [`d415d4e`](https://github.com/withastro/astro/commit/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. </details> <details> <summary>withastro/astro (@&#8203;astrojs/mdx)</summary> ### [`v4.3.14`](https://github.com/withastro/astro/releases/tag/%40astrojs/mdx%404.3.14) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/mdx@4.3.13...@astrojs/mdx@4.3.14) ##### Patch Changes - Updated dependencies \[]: - [@&#8203;astrojs/markdown-remark](https://github.com/astrojs/markdown-remark)@&#8203;6.3.11 ### [`v4.3.13`](https://github.com/withastro/astro/blob/HEAD/packages/integrations/mdx/CHANGELOG.md#4313) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/mdx@4.3.12...@astrojs/mdx@4.3.13) ##### Patch Changes - Updated dependencies \[[`d8305f8`](https://github.com/withastro/astro/commit/d8305f8abdf92db6fa505ee9c1774553ba90b7bd)]: - [@&#8203;astrojs/markdown-remark](https://github.com/astrojs/markdown-remark)@&#8203;6.3.10 ### [`v4.3.12`](https://github.com/withastro/astro/blob/HEAD/packages/integrations/mdx/CHANGELOG.md#4312) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/mdx@4.3.11...@astrojs/mdx@4.3.12) ##### Patch Changes - [#&#8203;14813](https://github.com/withastro/astro/pull/14813) [`e1dd377`](https://github.com/withastro/astro/commit/e1dd377398a3dcf6ba0697dc8d4bde6d77a45700) Thanks [@&#8203;ematipico](https://github.com/ematipico)! - Removes `picocolors` as dependency in favor of the fork `piccolore`. ### [`v4.3.11`](https://github.com/withastro/astro/blob/HEAD/packages/integrations/mdx/CHANGELOG.md#4311) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/mdx@4.3.10...@astrojs/mdx@4.3.11) ##### Patch Changes - Updated dependencies \[]: - [@&#8203;astrojs/markdown-remark](https://github.com/astrojs/markdown-remark)@&#8203;6.3.9 ### [`v4.3.10`](https://github.com/withastro/astro/blob/HEAD/packages/integrations/mdx/CHANGELOG.md#4310) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/mdx@4.3.9...@astrojs/mdx@4.3.10) ##### Patch Changes - [#&#8203;14715](https://github.com/withastro/astro/pull/14715) [`3d55c5d`](https://github.com/withastro/astro/commit/3d55c5d0fb520d470b33d391e5b68861f5b51271) Thanks [@&#8203;ascorbic](https://github.com/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](https://github.com/withastro/astro/blob/main/examples/container-with-vitest/test/ReactWrapper.test.ts) for a usage example, and [the Container API documentation](https://docs.astro.build/en/reference/container-reference/#renderers-option) for more information on using framework components with the experimental Container API. ### [`v4.3.9`](https://github.com/withastro/astro/blob/HEAD/packages/integrations/mdx/CHANGELOG.md#439) ##### Patch Changes - [#&#8203;14621](https://github.com/withastro/astro/pull/14621) [`e3175d9`](https://github.com/withastro/astro/commit/e3175d9ccbf070150ab2229b2564ca0b12a86c30) Thanks [@&#8203;GameRoMan](https://github.com/GameRoMan)! - Updates `vite` version to fix CVE ### [`v4.3.8`](https://github.com/withastro/astro/blob/HEAD/packages/integrations/mdx/CHANGELOG.md#438) ##### Patch Changes - [#&#8203;14591](https://github.com/withastro/astro/pull/14591) [`3e887ec`](https://github.com/withastro/astro/commit/3e887ec523b8e4ec4d01978f0fedf246dfdfbc81) Thanks [@&#8203;matthewp](https://github.com/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. - [#&#8203;14598](https://github.com/withastro/astro/pull/14598) [`7b45c65`](https://github.com/withastro/astro/commit/7b45c65c62e37d4225fb14ea378e2301de31cbea) Thanks [@&#8203;delucis](https://github.com/delucis)! - Reduces terminal text styling dependency size by switching from `kleur` to `picocolors` </details> <details> <summary>withastro/astro (@&#8203;astrojs/rss)</summary> ### [`v4.0.19`](https://github.com/withastro/astro/blob/HEAD/packages/astro-rss/CHANGELOG.md#4019) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/rss@4.0.18...@astrojs/rss@4.0.19) ##### Patch Changes - [#&#8203;17209](https://github.com/withastro/astro/pull/17209) [`fbcfa03`](https://github.com/withastro/astro/commit/fbcfa039dfe3d700b239f595a6c55ee35e45bd06) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Hardens RSS feed generation by escaping the `source` and `enclosure` item fields. These fields are now serialized as structured XML values, ensuring that special characters in values like `source.title` and `enclosure.type` are always treated as text rather than markup, consistent with how other feed fields are handled. ### [`v4.0.18`](https://github.com/withastro/astro/blob/HEAD/packages/astro-rss/CHANGELOG.md#4018) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/rss@4.0.17...@astrojs/rss@4.0.18) ##### Patch Changes - [#&#8203;16037](https://github.com/withastro/astro/pull/16037) [`fdd2c5a`](https://github.com/withastro/astro/commit/fdd2c5a2f0eb63332b018df01b2c1eb0d5c8a102) Thanks [@&#8203;blimmer](https://github.com/blimmer)! - Unpin `fast-xml-parser` to `^5.5.7` to resolve entity expansion CVEs ### [`v4.0.17`](https://github.com/withastro/astro/blob/HEAD/packages/astro-rss/CHANGELOG.md#4017) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/rss@4.0.16...@astrojs/rss@4.0.17) ##### Patch Changes - [#&#8203;15830](https://github.com/withastro/astro/pull/15830) [`8d3f3aa`](https://github.com/withastro/astro/commit/8d3f3aa1fdefebc22bb45de26591d3ec3d6da580) Thanks [@&#8203;Princesseuh](https://github.com/Princesseuh)! - Pin `fast-xml-parser` to 5.4.1 in order to fix an upstream bug ### [`v4.0.16`](https://github.com/withastro/astro/blob/HEAD/packages/astro-rss/CHANGELOG.md#4016) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/rss@4.0.15...@astrojs/rss@4.0.16) ##### Patch Changes - [#&#8203;15187](https://github.com/withastro/astro/pull/15187) [`bbb5811`](https://github.com/withastro/astro/commit/bbb5811eb801a42dc091bb09ea19d6cde3033795) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Update to Astro 6 beta - [#&#8203;14956](https://github.com/withastro/astro/pull/14956) [`0ff51df`](https://github.com/withastro/astro/commit/0ff51dfa3c6c615af54228e159f324034472b1a2) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Updates usage of zod to own dependency rather than relying on `astro/zod` - [#&#8203;15561](https://github.com/withastro/astro/pull/15561) [`413b0f7`](https://github.com/withastro/astro/commit/413b0f746a28503c936b3875ffaee6b7f04c67b9) Thanks [@&#8203;renovate](https://github.com/apps/renovate)! - Updates `fast-xml-parser` to v5.3.6 - [#&#8203;15283](https://github.com/withastro/astro/pull/15283) [`daf41c6`](https://github.com/withastro/astro/commit/daf41c6652e061fbc7550daf4f0a0ec2f74c4d0b) Thanks [@&#8203;eldair](https://github.com/eldair)! - Updates validation to use Zod v4 - [#&#8203;15373](https://github.com/withastro/astro/pull/15373) [`14252b2`](https://github.com/withastro/astro/commit/14252b22f9129f51fae9b224386ab6c4ea1b76c5) Thanks [@&#8203;renovate](https://github.com/apps/renovate)! - Updates zod to v4 ### [`v4.0.15`](https://github.com/withastro/astro/blob/HEAD/packages/astro-rss/CHANGELOG.md#4015-beta4) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/rss@4.0.14...@astrojs/rss@4.0.15) ##### Patch Changes - [#&#8203;15561](https://github.com/withastro/astro/pull/15561) [`413b0f7`](https://github.com/withastro/astro/commit/413b0f746a28503c936b3875ffaee6b7f04c67b9) Thanks [@&#8203;renovate](https://github.com/apps/renovate)! - Updates `fast-xml-parser` to v5.3.6 ### [`v4.0.14`](https://github.com/withastro/astro/blob/HEAD/packages/astro-rss/CHANGELOG.md#4014) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/rss@4.0.13...@astrojs/rss@4.0.14) ##### Patch Changes - [#&#8203;14813](https://github.com/withastro/astro/pull/14813) [`e1dd377`](https://github.com/withastro/astro/commit/e1dd377398a3dcf6ba0697dc8d4bde6d77a45700) Thanks [@&#8203;ematipico](https://github.com/ematipico)! - Removes `picocolors` as dependency in favor of the fork `piccolore`. ### [`v4.0.13`](https://github.com/withastro/astro/blob/HEAD/packages/astro-rss/CHANGELOG.md#4013) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/rss@4.0.12...@astrojs/rss@4.0.13) ##### Patch Changes - [#&#8203;14598](https://github.com/withastro/astro/pull/14598) [`7b45c65`](https://github.com/withastro/astro/commit/7b45c65c62e37d4225fb14ea378e2301de31cbea) Thanks [@&#8203;delucis](https://github.com/delucis)! - Reduces terminal text styling dependency size by switching from `kleur` to `picocolors` </details> <details> <summary>withastro/astro (@&#8203;astrojs/sitemap)</summary> ### [`v3.7.3`](https://github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#373) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/sitemap@3.7.2...@astrojs/sitemap@3.7.3) ##### Patch Changes - [#&#8203;16837](https://github.com/withastro/astro/pull/16837) [`783c4a6`](https://github.com/withastro/astro/commit/783c4a6e7789999aac0259e4777c90178adb9a02) Thanks [@&#8203;jdevalk](https://github.com/jdevalk)! - Improves `<lastmod>` accuracy in the sitemap index. Each `<sitemap>` entry in `sitemap-index.xml` is now stamped with the most recent `lastmod` of the URLs in the child sitemap it points to, instead of repeating a single global date on every entry. When a child sitemap has no per-URL `lastmod`, the entry falls back to the `lastmod` option as before. This gives search engines a per-file freshness signal, so they can tell which child sitemaps actually changed without refetching all of them. ### [`v3.7.2`](https://github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#372) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/sitemap@3.7.1...@astrojs/sitemap@3.7.2) ##### Patch Changes - [#&#8203;15455](https://github.com/withastro/astro/pull/15455) [`babf57f`](https://github.com/withastro/astro/commit/babf57f83f47d4cd1fa73a55863718b71c8eebf0) Thanks [@&#8203;AhmadYasser1](https://github.com/AhmadYasser1)! - Fixes i18n fallback pages missing from the generated sitemap when using `fallbackType: 'rewrite'`. ### [`v3.7.1`](https://github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#371) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/sitemap@3.7.0...@astrojs/sitemap@3.7.1) ##### Patch Changes - [#&#8203;15187](https://github.com/withastro/astro/pull/15187) [`bbb5811`](https://github.com/withastro/astro/commit/bbb5811eb801a42dc091bb09ea19d6cde3033795) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Update to Astro 6 beta - [#&#8203;14956](https://github.com/withastro/astro/pull/14956) [`0ff51df`](https://github.com/withastro/astro/commit/0ff51dfa3c6c615af54228e159f324034472b1a2) Thanks [@&#8203;matthewp](https://github.com/matthewp)! - Updates usage of zod to own dependency rather than relying on `astro/zod` - [#&#8203;15036](https://github.com/withastro/astro/pull/15036) [`f125a73`](https://github.com/withastro/astro/commit/f125a73ebf395d81bf44ccfce4af63a518f6f724) Thanks [@&#8203;florian-lefebvre](https://github.com/florian-lefebvre)! - Updates how routes are retrieved to avoid relying on a deprecated API - [#&#8203;15373](https://github.com/withastro/astro/pull/15373) [`14252b2`](https://github.com/withastro/astro/commit/14252b22f9129f51fae9b224386ab6c4ea1b76c5) Thanks [@&#8203;renovate](https://github.com/apps/renovate)! - Updates zod to v4 ### [`v3.7.0`](https://github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#370) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/sitemap@3.6.1...@astrojs/sitemap@3.7.0) ##### Minor Changes - [#&#8203;14471](https://github.com/withastro/astro/pull/14471) [`4296373`](https://github.com/withastro/astro/commit/42963732165959795067e11486f10fa2ac5a48cd) Thanks [@&#8203;Slackluky](https://github.com/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`](https://github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#361-beta3) [Compare Source](https://github.com/withastro/astro/compare/@astrojs/sitemap@3.6.0...@astrojs/sitemap@3.6.1) ##### Patch Changes - [#&#8203;15373](https://github.com/withastro/astro/pull/15373) [`14252b2`](https://github.com/withastro/astro/commit/14252b22f9129f51fae9b224386ab6c4ea1b76c5) Thanks [@&#8203;renovate](https://github.com/apps/renovate)! - Updates zod to v4 </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate CLI](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMjAuMCIsInVwZGF0ZWRJblZlciI6IjQ0LjI5LjQiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
renovate force-pushed renovate/astro-monorepo from af58756504 to 1e24fb3dac 2026-06-15 02:21:27 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 1e24fb3dac to 8a79383d21 2026-06-16 02:21:00 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 8a79383d21 to 6aeb98af20 2026-06-17 02:18:34 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 6aeb98af20 to f5c2da42b2 2026-06-18 02:16:08 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from f5c2da42b2 to d237d5a4f3 2026-06-19 02:17:19 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from d237d5a4f3 to ce7a0fbaba 2026-06-20 02:15:03 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from ce7a0fbaba to bdf2266c43 2026-06-21 02:16:28 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from bdf2266c43 to 9dea77fe6d 2026-06-22 02:16:35 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 9dea77fe6d to 83fe3d1f6f 2026-06-23 02:16:43 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 83fe3d1f6f to 16a3d0ca88 2026-06-24 02:17:12 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 16a3d0ca88 to d11c0ea1da 2026-06-25 02:17:33 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from d11c0ea1da to b05b5e5c39 2026-06-26 02:16:33 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from b05b5e5c39 to 12ca2c164a 2026-06-27 02:17:01 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 12ca2c164a to 82b312bd14 2026-06-28 02:16:31 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 82b312bd14 to 5451394f88 2026-06-29 02:16:49 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 5451394f88 to 71c53d0af1 2026-06-30 02:17:06 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 71c53d0af1 to d540058904 2026-07-01 02:16:44 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from d540058904 to 1fb19a2d2c 2026-07-02 02:17:33 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 1fb19a2d2c to ae500f804c 2026-07-03 02:16:27 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from ae500f804c to 70bd4bbab0 2026-07-04 02:16:21 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 70bd4bbab0 to bc077a24a3 2026-07-07 02:17:28 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from bc077a24a3 to 6df9c85203 2026-07-08 02:16:45 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 6df9c85203 to 988d30b9cd 2026-07-09 02:16:52 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 988d30b9cd to 944530a267 2026-07-12 02:17:05 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 944530a267 to f1b5449372 2026-07-13 02:17:16 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from f1b5449372 to 9c8b36f971 2026-07-14 02:17:17 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 9c8b36f971 to d3815b92e9 2026-07-15 02:16:54 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from d3815b92e9 to e919856421 2026-07-16 02:17:22 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from e919856421 to 9b7f56e0e1 2026-07-17 02:17:46 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 9b7f56e0e1 to 9e02b14fd0 2026-07-19 02:15:24 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 9e02b14fd0 to a58263dec9 2026-07-20 02:19:34 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from a58263dec9 to 880847becd 2026-07-21 02:17:50 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 880847becd to 461689c31c 2026-07-22 02:17:07 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 461689c31c to 1bb925d73e 2026-07-23 02:17:04 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 1bb925d73e to 5c3ccbdbf3 2026-07-24 02:14:36 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 5c3ccbdbf3 to 288b9e8034 2026-07-25 02:17:07 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 288b9e8034 to 70141ede84 2026-07-27 02:16:45 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 70141ede84 to ddf1d427cb 2026-07-28 02:15:18 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from ddf1d427cb to b4d098b26f 2026-07-29 02:16:10 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from b4d098b26f to efacaa2812 2026-07-30 02:16:29 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from efacaa2812 to 34c7f014bc 2026-07-31 02:15:51 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 34c7f014bc to 7ffb7455e6 2026-08-01 02:15:58 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 7ffb7455e6 to 755ee93d39 2026-08-02 02:15:52 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 755ee93d39 to 6eace4e6e4 2026-08-03 02:15:56 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 6eace4e6e4 to 21e95989a1 2026-08-04 02:17:18 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 21e95989a1 to 904e458a1e 2026-08-05 02:16:13 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 904e458a1e to 521ae9733c 2026-08-06 02:16:27 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 521ae9733c to c05b039967 2026-08-07 02:17:09 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from c05b039967 to 9ebf7d2c2f 2026-08-08 02:16:21 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 9ebf7d2c2f to 9941d9b8c4 2026-08-11 02:16:37 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 9941d9b8c4 to 317237375c 2026-08-12 02:17:16 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 317237375c to 1978dbba6d 2026-08-13 02:17:40 +02:00 Compare
renovate force-pushed renovate/astro-monorepo from 1978dbba6d to 4d8736789d 2026-08-14 02:19:14 +02:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/astro-monorepo:renovate/astro-monorepo
git switch renovate/astro-monorepo

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/astro-monorepo
git switch renovate/astro-monorepo
git rebase main
git switch main
git merge --ff-only renovate/astro-monorepo
git switch renovate/astro-monorepo
git rebase main
git switch main
git merge --no-ff renovate/astro-monorepo
git switch main
git merge --squash renovate/astro-monorepo
git switch main
git merge --ff-only renovate/astro-monorepo
git switch main
git merge renovate/astro-monorepo
git push origin main
Sign in to join this conversation.
No description provided.