2 hours ago
next.js

v16.2.0-canary.62

Core Changes

  • fix: sanitize worker args for worker_threads compatibility: #90506
  • Fix varyParams tracking for optional catch-all params with no value: #90496
  • Don't start worker for Typescript when only doing config validation: #90504
  • [Instant] Fix loading.js not being counted as a suspense boundary: #90292
  • [ci] Crash if next-swc could not be loaded when NEXT_TEST_NATIVE_DIR is specified: #90387
  • Fix: server-patch retry preserves push/replace intent of suspended transitions: #90533
  • Cached Navigations: Serve cached segments instantly on repeat visits: #90223
  • Throw when unstable_instant is used in Client Component: #90396

Misc Changes

  • test: Improve test assertions to prepare for dpl query string: #90463
  • [test] Fix flaky "delay re-prefetch after revalidation" test: #90503
  • Revert "Turbopack: Add line numbers to debug info in release-with-assertions profile (#90474)": #90525
  • Bump Turborepo to 2.8.11: #90530
  • Turbopack: Move turbopack out of pnpm build and into a pnpm build-all command: #90543

Credits

Huge thanks to @mischnic, @timneutkens, @acdlite, @unstubbable, @bgw, @lubieowoce, @eps1lon, and @devjiwonchoi for helping!

4 hours ago
formatjs

vue-intl@7.1.3

7.1.3 (2026-02-25)

Bug Fixes

  • vue-intl: loosen vue peer dependency to allow newer versions (#6043) (88afa55), closes #6040 - by @longlho
4 hours ago
formatjs

@formatjs/vite-plugin@1.0.3

1.0.3 (2026-02-25)

Bug Fixes

  • @formatjs/vite-plugin: wrap JSX defaultMessage AST in expression container (#6044) (3832fd6), closes #6042 - by @longlho
5 hours ago
blueprint

@blueprintjs/core@6.9.0

✨ Features

  • [core] Integrating design tokens into core for buttons (#7727)

🐛 Fixes

  • fix(Dialog): Render header when title prop is empty string (#7818)

💡 Improvements

  • [core] Add utils for migrating props to PopoverNext (#7816)
5 hours ago
blueprint

@blueprintjs/datetime@6.0.17

💡 Improvements

  • (chore) Migrate /datetime to vitest (#7815)
5 hours ago
blueprint

@blueprintjs/select@6.1.2

No documented user-facing changes

5 hours ago
blueprint

@blueprintjs/table@6.0.17

No documented user-facing changes

5 hours ago
blueprint

@blueprintjs/labs@6.2.1

No documented user-facing changes

7 hours ago
astro

astro@5.18.0

Minor Changes

  • #15589 b7dd447 Thanks @qzio! - Adds a new security.actionBodySizeLimit option to configure the maximum size of Astro Actions request bodies.

    This lets you increase the default 1 MB limit when your actions need to accept larger payloads. For example, actions that handle file uploads or large JSON payloads can now opt in to a higher limit.

    If you do not set this option, Astro continues to enforce the 1 MB default to help prevent abuse.

    // astro.config.mjs
    export default defineConfig({
      security: {
        actionBodySizeLimit: 10 * 1024 * 1024, // set to 10 MB
      },
    });

Patch Changes

  • #15594 efae11c Thanks @qzio! - Fix X-Forwarded-Proto validation when allowedDomains includes both protocol and hostname fields. The protocol check no longer fails due to hostname mismatch against the hardcoded test URL.