2 hours ago
formatjs

@formatjs/intl-durationformat: 0.10.15

0.10.15 (2026-06-15)

What's Changed

Full Changelog: https://github.com/formatjs/formatjs/compare/@formatjs/intl-durationformat@0.10.14...@formatjs/intl-durationformat@0.10.15

2 hours ago
formatjs

babel-plugin-formatjs: 11.3.13

11.3.13 (2026-06-15)

What's Changed

Full Changelog: https://github.com/formatjs/formatjs/compare/babel-plugin-formatjs@11.3.12...babel-plugin-formatjs@11.3.13

2 hours ago
astro

@astrojs/node@11.0.0-beta.2

Patch Changes

  • #17054 d426b67 Thanks @astrobot-houston! - Fixes an issue where Astro files with non-ASCII characters in their name weren't correctly served after the build.
2 hours ago
astro

astro@7.0.0-beta.4

Major Changes

  • #16966 6650ec2 Thanks @Princesseuh! - Makes Sätteri the default Markdown processor

    Astro now renders .md files with satteri() from @astrojs/markdown-satteri, its native Markdown pipeline, instead of the remark/rehype pipeline. @astrojs/markdown-remark is no longer installed by default.

    To keep using the remark/rehype pipeline, install @astrojs/markdown-remark and set it as your processor:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import { unified } from '@astrojs/markdown-remark';
    
    export default defineConfig({
      markdown: {
        processor: unified(),
      },
    });

    The deprecated markdown.remarkPlugins, markdown.rehypePlugins, and markdown.remarkRehype options still work, but now require @astrojs/markdown-remark to be used.

Patch Changes

  • #17078 04547ec Thanks @astrobot-houston! - Fixes a spurious Astro.request.headers warning on prerendered pages when security.allowedDomains is configured. The internal allowedDomains header validation now skips prerendered routes, since they use synthetic requests with no real headers.
3 hours ago
plate

v53.2.0

@platejs/yjs

Minor Changes

Contributors

Thanks to everyone who contributed to this release:

@zbeyens

Full changelog: v53.1.7...v53.2.0

3 hours ago
virtual

@tanstack/svelte-virtual@3.13.29

Patch Changes

  • Updated dependencies [ef69ea3]:
    • @tanstack/virtual-core@3.17.1
3 hours ago
virtual

@tanstack/angular-virtual@5.0.5

Patch Changes

  • Updated dependencies [ef69ea3]:
    • @tanstack/virtual-core@3.17.1
3 hours ago
virtual

@tanstack/vue-virtual@3.13.29

Patch Changes

  • Updated dependencies [ef69ea3]:
    • @tanstack/virtual-core@3.17.1
3 hours ago
virtual

@tanstack/lit-virtual@3.13.30

Patch Changes

  • Updated dependencies [ef69ea3]:
    • @tanstack/virtual-core@3.17.1
3 hours ago
virtual

@tanstack/virtual-core@3.17.1

Patch Changes

  • #1199 ef69ea3 - Fix "items jump while scrolling up": the default scroll-adjustment predicate now compensates scrollTop on the first measurement of an above-viewport item even while scrolling backward (the estimate→actual delta must be absorbed), and only skips compensation for re-measurements during backward scroll to avoid the cascading jank