51 minutes ago
blueprint

@blueprintjs/datetime@6.0.17

💡 Improvements

  • (chore) Migrate /datetime to vitest (#7815)
51 minutes 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)
51 minutes ago
blueprint

@blueprintjs/labs@6.2.1

No documented user-facing changes

51 minutes ago
blueprint

@blueprintjs/select@6.1.2

No documented user-facing changes

51 minutes ago
blueprint

@blueprintjs/table@6.0.17

No documented user-facing changes

2 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.
3 hours ago
ionic-framework

v8.7.18

8.7.18 (2026-02-25)

Bug Fixes

6 hours ago
react-pdf

v10.4.1

Bug fixes

  • Sanitize HTML returned by customTextRenderer (#2070).
9 hours ago
fast-xml-parser

Separate Builder

XML Builder was the part of fast-xml-parser for years. But considering that any bug in builder may false-alarm the users who are only using parser and vice-versa, we have decided to split it into a separate package.

Migration

To migrate to fast-xml-builder;

From

import { XMLBuilder } from "fast-xml-parser";

To

import  XMLBuilder  from "fast-xml-builder";

XMLBuilder will be removed from current package in any next major version of this library. So better to migrate.

10 hours ago
next.js

v16.2.0-canary.61

Core Changes

  • Fix params leaking into instant navigation shell in dev: #90455
  • Limit build workers to pages+1: #90475

Misc Changes

  • Update Rspack production test manifest: #90412
  • Update Rspack development test manifest: #90413
  • Add @next/playwright package with instant() testing helper: #90470
  • [turbopack] Reduce memory usage during compaction: #90229
  • [sync-react] Allow syncing from a React commit: #90283
  • Turbopack: Add line numbers to debug info in release-with-assertions profile: #90474
  • Turbopack: emit env_diff span attribute for update: #90466
  • test: unflake lru-disk-eviction on Windows: #90465

Credits

Huge thanks to @vercel-release-bot, @acdlite, @lukesandberg, @eps1lon, @bgw, @mischnic, and @andrewimm for helping!