3 hours ago
ui

shadcn@3.6.2

Patch Changes

3 hours ago
ionic-framework

v8.7.14

8.7.14 (2025-12-17)

Bug Fixes

5 hours ago
react-router
9 hours ago
formatjs

@formatjs/intl-durationformat@0.8.3

0.8.3 (2025-12-17)

Bug Fixes

  • @formatjs/intl-durationformat: add clarifying comments (fc3cb59) - by @longlho
12 hours ago
rspack

v1.7.0-beta.0

Highlights 💡

🎈 Upgrade SWC

The latest version of SWC enhances the compatibility of Wasm plugins. This means future upgrades of Rspack and SWC will almost no longer break SWC Wasm plugins. Additionally, the SWC upgrade brings a 10% performance improvement to the parser.

✅ Enable lazy compilation by default

Since Rspack v1.5 has stabilized Lazy Compilation, we are now enabling it by default for dynamic imports cases when the target is web.

export default defineConfig({
  lazyCompilation: {
    imports: true,
  },
});

🎯 Stablize several experimental configurations

In the previous releases, the experimental features experiments.lazyBarrel, experiments.inlineConst, experiments.inlineEnum were introduced to enable cross-module inlining optimizations for constants. These optimizations improve minifiers' ability to perform precise static analysis, eliminate unused code branches, and further reduce bundle size.

After thorough validation, we are now promoting these features from experimental to stable.

export default  {
  experiments: {
-   inlineConst: true,
-   inlineEnum: true,
-   lazyBarrel: true,
-   typeReexportsPresence: true,
  },
  module: {
    parser: {
      javascript: {
-      inlineConst: true,
       typeReexportsPresence: true,
      },
    },
  },
  optimization: {
+  inlineExports: true,
  },
}

What's Changed

Performance Improvements ⚡

New Features 🎉

Bug Fixes 🐞

Refactor 🔨

Document Updates 📖

Other Changes

Full Changelog: https://github.com/web-infra-dev/rspack/compare/v1.6.7...v1.7.0-beta.0

12 hours ago
next.js

v16.1.0-canary.31

Core Changes

  • [turbopack] update warning message in the bundle analyzer: #87255
  • chore: update rspack 1.6.5: #86853
  • Update font data: #87259
  • bundle-analyzer: make running the web server default: #87258

Misc Changes

  • [turbopack] Break ties using a counter instead of node index: #87252
  • bundle-analyzer: use and multiselect for top bar: #87254

Credits

Huge thanks to @lukesandberg, @SyMind, @wbinnssmith, and @vercel-release-bot for helping!

13 hours ago
rspack

v1.6.8

What's Changed

Bug Fixes 🐞

Full Changelog: https://github.com/web-infra-dev/rspack/compare/v1.6.7...v1.6.8

17 hours ago
formatjs

@formatjs/utils@2.0.2

2.0.2 (2025-12-17)

Bug Fixes

  • @formatjs/cli-lib: fix fs-extra imports, fix #5569 (76c8793) - by @longlho
17 hours ago
formatjs

@formatjs/intl-pluralrules@6.0.2

6.0.2 (2025-12-17)

Bug Fixes

  • @formatjs/cli-lib: fix fs-extra imports, fix #5569 (76c8793) - by @longlho
17 hours ago
formatjs

@formatjs/intl-numberformat@9.0.3

9.0.3 (2025-12-17)

Bug Fixes

  • @formatjs/cli-lib: fix fs-extra imports, fix #5569 (76c8793) - by @longlho