@astrojs/sitemap@3.7.0
-
#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.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` }, }), ],
@astrojs/language-server@2.16.3
- #15199
d8e64efThanks @ArmandPhilippot! - Fixes the links to Astro Docs so that they match the current docs structure.
astro@5.16.10
-
2fa19c4- Improved error handling in the rendering phaseAdded defensive validation in
App.render()and#renderError()to provide a descriptive error message when a route module doesn't have a valid page function. -
#15199
d8e64efThanks @ArmandPhilippot! - Fixes the links to Astro Docs so that they match the current docs structure. -
#15169
b803d8bThanks @rururux! - fix: fix image 500 error when moving dist directory in standalone Node -
#14622
9b35c62Thanks @aprici7y! - Fixes CSS url() references to public assets returning 404 in dev mode when base path is configured -
#15219
43df4ceThanks @matthewp! - Upgrades thediffpackage to v8
@astrojs/netlify@6.6.4
-
#15199
d8e64efThanks @ArmandPhilippot! - Fixes the links to Astro Docs so that they match the current docs structure. -
Updated dependencies []:
- @astrojs/underscore-redirects@1.0.0
@astrojs/rss@4.0.15
- #15199
d8e64efThanks @ArmandPhilippot! - Fixes the links to Astro Docs so that they match the current docs structure.
v16.1.1-canary.29
- fetch(next/image): reduce maximumResponseBody from 300MB to 50MB: #88588
- [CC] Fix dev validation error from server action bound args: #88600
- feat: add TaskStorage derive macro and schema infrastructure: #88338
- docs: fix Pages Router fonts documentation showing App Router examples: #88326
- [ci] Don't retry/notify for failed deploy tests with custom tarball URLs: #88576
- fix(turbopack): Collect
declare global {}inVarDeclWithTsDeclareCollector: #88568 - Update labeler.json: #88591
- Fix optional
parent_task_idcompile failure w/tokio_tracingenabled: #88598 - Turbopack: support disabling tsconfig lookup: #88529
- Turbopack: run tasks with priority based on distance to leaf: #87662
Huge thanks to @lukesandberg, @timneutkens, @unstubbable, @kdy1, @mischnic, @mmastrac, @sokra, @styfle, and @lubieowoce for helping!
8.46.2
- #17689: SSR fix
- #17685: Inspector v2: Node Material input properties
- #17687: [InspectorV2] RenderingPipeline properties
This list of changes was auto generated.
@blueprintjs/icons@6.5.0
No documented user-facing changes