6 hours ago
astro

@astrojs/sitemap@3.7.0

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`
        },
      }),
    ],
    
    
6 hours ago
astro

@astrojs/language-server@2.16.3

Patch Changes

6 hours ago
astro

@astrojs/vercel@9.0.4

Patch Changes

  • #14863 29fd188 Thanks @drwpow! - Improves error message when using Node builtins inside Edge middlewares
6 hours ago
astro

astro@5.16.10

Patch Changes

  • 2fa19c4 - Improved error handling in the rendering phase

    Added 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 d8e64ef Thanks @ArmandPhilippot! - Fixes the links to Astro Docs so that they match the current docs structure.

  • #15169 b803d8b Thanks @rururux! - fix: fix image 500 error when moving dist directory in standalone Node

  • #14622 9b35c62 Thanks @aprici7y! - Fixes CSS url() references to public assets returning 404 in dev mode when base path is configured

  • #15219 43df4ce Thanks @matthewp! - Upgrades the diff package to v8

6 hours ago
astro

@astrojs/node@9.5.2

Patch Changes

  • #15196 a8317c1 Thanks @ematipico! - Fixes an issue where some prendered pages weren't correctly rendered when using the Node.js adapter in middleware mode.

  • #15169 b803d8b Thanks @rururux! - fix: fix image 500 error when moving dist directory in standalone Node

6 hours ago
astro

@astrojs/netlify@6.6.4

Patch Changes

  • #15199 d8e64ef Thanks @ArmandPhilippot! - Fixes the links to Astro Docs so that they match the current docs structure.

  • Updated dependencies []:

    • @astrojs/underscore-redirects@1.0.0
6 hours ago
astro

@astrojs/rss@4.0.15

Patch Changes

9 hours ago
next.js

v16.1.1-canary.29

Core Changes

  • fetch(next/image): reduce maximumResponseBody from 300MB to 50MB: #88588
  • [CC] Fix dev validation error from server action bound args: #88600

Misc Changes

  • 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 {} in VarDeclWithTsDeclareCollector: #88568
  • Update labeler.json: #88591
  • Fix optional parent_task_id compile failure w/tokio_tracing enabled: #88598
  • Turbopack: support disabling tsconfig lookup: #88529
  • Turbopack: run tasks with priority based on distance to leaf: #87662

Credits

Huge thanks to @lukesandberg, @timneutkens, @unstubbable, @kdy1, @mischnic, @mmastrac, @sokra, @styfle, and @lubieowoce for helping!

9 hours ago
Babylon.js

8.46.2

Changes:

  • #17689: SSR fix
  • #17685: Inspector v2: Node Material input properties
  • #17687: [InspectorV2] RenderingPipeline properties

This list of changes was auto generated.

12 hours ago
blueprint

@blueprintjs/icons@6.5.0

No documented user-facing changes