Update astro monorepo #7
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
datenba-ch/datenfeuer!7
Loading…
Reference in a new issue
No description provided.
Delete branch "renovate/astro-monorepo"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
6.3.2→6.3.114.3.0→4.3.144.0.12→4.0.193.4.1→3.7.31.10.4→1.10.105.11.1→5.18.2Release Notes
withastro/astro (@astrojs/markdown-remark)
v6.3.11Compare Source
Patch Changes
c2cd371]:v6.3.10Compare Source
Patch Changes
d8305f8Thanks @tuyuritio! - Prevents HAST-only props from being directly converted into HTML attributesv6.3.9Compare Source
Patch Changes
9e9c528,0f75f6b]:v6.3.8Compare Source
Patch Changes
b8ca69b]:v6.3.7Compare Source
Patch Changes
1e2499e]:v6.3.6Compare Source
Patch Changes
4d16de7]:v6.3.5Compare Source
Patch Changes
0567fb7]:v6.3.4Compare Source
Patch Changes
f4e8889]:v6.3.3Compare Source
Patch Changes
#13941
6bd5f75Thanks @aditsachde! - Adds support for TOML files to Astro's built-inglob()andfile()content loaders.In Astro 5.2, Astro added support for using TOML frontmatter in Markdown files instead of YAML. However, if you wanted to use TOML files as local content collection entries themselves, you needed to write your own loader.
Astro 5.12 now directly supports loading data from TOML files in content collections in both the
glob()and thefile()loaders.If you had added your own TOML content parser for the
file()loader, you can now remove it as this functionality is now included:Note that TOML does not support top-level arrays. Instead, the
file()loader considers each top-level table to be an independent entry. The table header is populated in theidfield of the entry object.See Astro's content collections guide for more information on using the built-in content loaders.
withastro/astro (@astrojs/rss)
v4.0.19Compare Source
Patch Changes
fbcfa03Thanks @matthewp! - Hardens RSS feed generation by escaping thesourceandenclosureitem fields. These fields are now serialized as structured XML values, ensuring that special characters in values likesource.titleandenclosure.typeare always treated as text rather than markup, consistent with how other feed fields are handled.v4.0.18Compare Source
Patch Changes
fdd2c5aThanks @blimmer! - Unpinfast-xml-parserto^5.5.7to resolve entity expansion CVEsv4.0.17Compare Source
Patch Changes
8d3f3aaThanks @Princesseuh! - Pinfast-xml-parserto 5.4.1 in order to fix an upstream bugv4.0.16Compare Source
Patch Changes
#15187
bbb5811Thanks @matthewp! - Update to Astro 6 beta#14956
0ff51dfThanks @matthewp! - Updates usage of zod to own dependency rather than relying onastro/zod#15561
413b0f7Thanks @renovate! - Updatesfast-xml-parserto v5.3.6#15283
daf41c6Thanks @eldair! - Updates validation to use Zod v4#15373
14252b2Thanks @renovate! - Updates zod to v4v4.0.15Compare Source
Patch Changes
413b0f7Thanks @renovate! - Updatesfast-xml-parserto v5.3.6v4.0.14Compare Source
Patch Changes
e1dd377Thanks @ematipico! - Removespicocolorsas dependency in favor of the forkpiccolore.v4.0.13Compare Source
Patch Changes
7b45c65Thanks @delucis! - Reduces terminal text styling dependency size by switching fromkleurtopicocolorswithastro/astro (@astrojs/sitemap)
v3.7.3Compare Source
Patch Changes
783c4a6Thanks @jdevalk! - Improves<lastmod>accuracy in the sitemap index. Each<sitemap>entry insitemap-index.xmlis now stamped with the most recentlastmodof 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-URLlastmod, the entry falls back to thelastmodoption 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.2Compare Source
Patch Changes
babf57fThanks @AhmadYasser1! - Fixes i18n fallback pages missing from the generated sitemap when usingfallbackType: 'rewrite'.v3.7.1Compare Source
Patch Changes
#15187
bbb5811Thanks @matthewp! - Update to Astro 6 beta#14956
0ff51dfThanks @matthewp! - Updates usage of zod to own dependency rather than relying onastro/zod#15036
f125a73Thanks @florian-lefebvre! - Updates how routes are retrieved to avoid relying on a deprecated API#15373
14252b2Thanks @renovate! - Updates zod to v4v3.7.0Compare Source
Minor Changes
#14471
4296373Thanks @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 newchunksoption 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.v3.6.1Compare Source
Patch Changes
14252b2Thanks @renovate! - Updates zod to v4v3.6.0Compare Source
Minor Changes
#14285
bedc31bThanks @jdcolombo! - Adds a new configuration optionnamespacesfor more control over XML namespaces used in sitemap generationExcluding 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
namespacesoption allows you to configurenews,xhtml,image, andvideonamespaces 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: falsein your configuration:The generated XML will not include the
xmlns:videonamespace:v3.5.1Compare Source
Patch Changes
896886cThanks @gouravkhunger! - Fixes the issue with the optionlastmodwhere if it is defined it applies correctly to<url>entries in eachsitemap-${i}.xmlfile but not the<sitemap>entries in the rootsitemap-index.xmlfile.v3.5.0Compare Source
Minor Changes
#13682
5824b32Thanks @gouravkhunger! - Adds acustomSitemapsoption to include extra sitemaps in thesitemap-index.xmlfile generated by Astro.This is useful for multi-framework setups on the same domain as your Astro site (
example.com), such as a blog atexample.com/blogwhose 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:
Learn more in the
@astrojs/sitemapconfiguration documentation.v3.4.2Compare Source
Patch Changes
2309adaThanks @florian-lefebvre! - Upgrades zodwithastro/astro (@astrojs/ts-plugin)
v1.10.10Compare Source
Patch Changes
c72d4f2Thanks @matthewp! - Fixes "Go To References" from.tsfiles missing usages inside.astrofiles that are reached throughAstro.locals. The plugin now injects Astro's ambient types so type chains likeAstro.locals.utils.toUpper()resolve, matching the language server.v1.10.9Compare Source
Patch Changes
#16661
03b8f7fThanks @ocavue! - Updatestypescriptto v6. No changes are needed from users.Updated dependencies [
03b8f7f]:v1.10.8Patch Changes
04fdbb2Thanks @delucis! - Drops support for versions of VS Code below 1.101.0 [May 2025]v1.10.7Patch Changes
#15820
e20474bThanks @Princesseuh! - Fixes broken publishUpdated dependencies [
e20474b]:v1.10.6Patch Changes
abfed97Thanks @ArmandPhilippot! - Fixes link targets in documentation following repository relocation.v1.10.5Patch Changes
6dfd814: Updated internal Volar version. This update should improve compatibility with newer versions of TypeScript and fix minor issues.Configuration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate CLI.
482d12105cto10b8f0193e10b8f0193eto5c082cfd9c5c082cfd9ctoc75d416211c75d416211to45d592445a45d592445atoe29e31c629e29e31c629to95250b518f95250b518fto4ebb1cbbfd4ebb1cbbfdto06682c2e3a06682c2e3atoa1131caee6a1131caee6to03446882810344688281to206d03f295206d03f295to15f8811e9015f8811e90to5587a628f05587a628f0to19cb8760f819cb8760f8tocf86ddd09acf86ddd09ato8a1171ebdb8a1171ebdbtoae38da6ad3ae38da6ad3to52915e23a452915e23a4toeea6aedd62eea6aedd62toc344d87e02c344d87e02toc8ed716671c8ed716671todc7c863a40dc7c863a40tof03dc8baf0f03dc8baf0to10b03522ee10b03522eeto37f6515bbd37f6515bbdto6b8555ae7b6b8555ae7btoba0a9bc140ba0a9bc140to14df055a9714df055a97to1b2979bd5a1b2979bd5ato4026b7e4064026b7e406tod50acf4391d50acf4391to3cdee34e7d3cdee34e7dto56bb36f85856bb36f858toe7e1571b34e7e1571b34to5cf02fc0b05cf02fc0b0to235e168cb7235e168cb7to5556070a565556070a56to6c9776e18b6c9776e18bto2a804766c12a804766c1toa599f64f6ea599f64f6etoa196dd9564a196dd9564to100b36ab96100b36ab96tof6ed996335View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.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.