1 hours ago
rrweb

rrvideo@2.0.0-alpha.20

Patch Changes

  • Updated dependencies []:
    • rrweb-player@2.0.0-alpha.20
1 hours ago
rrweb

rrdom-nodejs@2.0.0-alpha.20

Patch Changes

  • Updated dependencies []:
    • rrdom@2.0.0-alpha.20
    • @rrweb/types@2.0.0-alpha.20
1 hours ago
rrweb

rrdom@2.0.0-alpha.20

Patch Changes

  • Updated dependencies []:
    • rrweb-snapshot@2.0.0-alpha.20
4 hours ago
next.js

v16.2.0-canary.25

Core Changes

  • Replace flight navigation build id field with header: #88855
  • Upgrade React from da641178-20260129 to ed4bd540-20260202: #89401
  • Upgrade React from ed4bd540-20260202 to b1533b03-20260203: #89444
  • Upgrade React from b1533b03-20260203 to 3e00319b-20260203: #89449
  • Rename CACHE_ONE_YEAR for clarity and fix usage: #89450
  • [Codemod] Fix agents-md on Windows: #89319
  • Experimental deferred entries handling: #88347

Misc Changes

  • Snippet multi package syntax: #89381
  • TURBOPACK: support chunk_loading_global method: #88790

Credits

Huge thanks to @icyJoseph, @mischnic, @ijjk, @fireairforce, and @gaojude for helping!

6 hours ago
tiptap

v3.19.0

@tiptap/extension-link

Patch Changes

  • Add title attribute to Link extension. The title can now be set via setLink and toggleLink commands and is rendered as an HTML title attribute.
  • Add title attribute support for markdown rendering. Links with titles are now serialized to markdown format [text](url "title").

@tiptap/react

Minor Changes

  • Moved BubbleMenu and FloatingMenu to separate @tiptap/react/menus entrypoint to keep floating-ui optional
  • Simplified Tiptap component API with guaranteed non-null editor instance from useTiptap hook
7 hours ago
pixijs

v8.16.0

💾 Download

Installation:

npm install pixi.js@8.16.0

Development Build:

Production Build:

Documentation:

Changed

https://github.com/pixijs/pixijs/compare/v8.15.0...v8.16.0

🚨 Behavior Change

  • SplitText now more accurately splits Text across a wider range of TextStyle configurations. This may result in slight changes to character positioning.
  • Using SplitText.from from an existing Text now correctly transfers the source anchor to the new instance by mapping the anchor to pivot coordinates. This changes layout and positioning compared to previous behavior.
  • SplitBitmapText now correctly defaults to a white fill, matching the behavior of BitmapText.
  • HTMLText now correctly respects breakWords and no longer cuts off words that exceed wordWrapWidth.
  • HTMLText now respects the alpha value of its fill and stroke.
  • Text now correctly aligns when using align: 'right' or align: 'center', resulting in a small positional adjustment.
  • Container.cullArea is now correctly interpreted in the container’s local coordinate space and transformed to global coordinates before culling checks.
    // cullArea is defined in local space and transformed during culling
    container.cullArea = new Rectangle(0, 0, 100, 100);
  • graphics.texture(texture, 0x000000) will now correctly apply a black tint

🎁 Added

🐛 Fixed

🧹 Chores

New Contributors

7 hours ago
ua-parser-js

v2.0.9

Version 2.0.9

  • Restore icons directory
  • Add new browser: Aloha Browser, Avira Secure Browser, Lighthouse, Luakit, Norton Private Browser
  • Add new OS: Vega OS
  • Improve OS detection: watchOS
  • extensions submodule:
    • Add new crawler: atlassian-bot, Cloudflare-AutoRAG, Google-NotebookLM, SemrushBot-SWA
    • Add new fetcher: FlipboardProxy

What's Changed

New Contributors

Full Changelog: https://github.com/faisalman/ua-parser-js/compare/2.0.8...2.0.9

7 hours ago
webpack

v5.105.0

Minor Changes

  • Allow resolving worker module by export condition name when using new Worker() (by @hai-x in #20353)

  • Detect conditional imports to avoid compile-time linking errors for non-existent exports. (by @hai-x in #20320)

  • Added the tsconfig option for the resolver options (replacement for tsconfig-paths-webpack-plugin). Can be false (disabled), true (use the default tsconfig.json file to search for it), a string path to tsconfig.json, or an object with configFile and references options. (by @alexander-akait in #20400)

  • Support import.defer() for context modules. (by @ahabhgk in #20399)

  • Added support for array values ​​to the devtool option. (by @hai-x in #20191)

  • Improve rendering node built-in modules for ECMA module output. (by @hai-x in #20255)

  • Unknown import.meta properties are now determined at runtime instead of being statically analyzed at compile time. (by @xiaoxiaojx in #20312)

Patch Changes

  • Fixed ESM default export handling for .mjs files in Module Federation (by @y-okt in #20189)

  • Optimized import.meta.env handling in destructuring assignments by using cached stringified environment definitions. (by @xiaoxiaojx in #20313)

  • Respect the stats.errorStack option in stats output. (by @samarthsinh2660 in #20258)

  • Fixed a bug where declaring a module variable in module scope would conflict with the default moduleArgument. (by @xiaoxiaojx in #20265)

  • Fix VirtualUrlPlugin to set resourceData.context for proper module resolution. Previously, when context was not set, it would fallback to the virtual scheme path (e.g., virtual:routes), which is not a valid filesystem path, causing subsequent resolve operations to fail. (by @xiaoxiaojx in #20390)

  • Fixed Worker self-import handling to support various URL patterns (e.g., import.meta.url, new URL(import.meta.url), new URL(import.meta.url, import.meta.url), new URL("./index.js", import.meta.url)). Workers that resolve to the same module are now properly deduplicated, regardless of the URL syntax used. (by @xiaoxiaojx in #20381)

  • Reuse the same async entrypoint for the same Worker URL within a module to avoid circular dependency warnings when multiple Workers reference the same resource. (by @xiaoxiaojx in #20345)

  • Fixed a bug where a self-referencing dependency would have an unused export name when imported inside a web worker. (by @samarthsinh2660 in #20251)

  • Fix missing export generation when concatenated modules in different chunks share the same runtime in module library bundles. (by @hai-x in #20346)

  • Fixed import.meta.env.xxx behavior: when accessing a non-existent property, it now returns empty object instead of full object at runtime. (by @xiaoxiaojx in #20289)

  • Improved parsing error reporting by adding a link to the loader documentation. (by @gaurav10gg in #20244)

  • Fix typescript types. (by @alexander-akait in #20305)

  • Add declaration for unused harmony import specifier. (by @hai-x in #20286)

  • Fix compressibility of modules while retaining portability. (by @dmichon-msft in #20287)

  • Optimize source map generation: only include ignoreList property when it has content, avoiding empty arrays in source maps. (by @xiaoxiaojx in #20319)

  • Preserve star exports for dependencies in ECMA module output. (by @hai-x in #20293)

  • Consider asset modulem to be side-effect free. (by @hai-x in #20352)

  • Avoid generating JavaScript modules for CSS exports that are not used, reducing unnecessary output and bundle size. (by @xiaoxiaojx in #20337)

8 hours ago
chakra-ui

@chakra-ui/react@3.32.0

Minor Changes

Patch Changes

  • 0b15d10 Thanks @segunadebayo! - - Styled System: Fixed backdrop blur not applying when using backdropFilter="auto" with backdropBlur. This now works as expected:

    <Dialog.Backdrop backdropFilter="auto" backdropBlur="md" />
  • 7f30a7b Thanks @segunadebayo! - Fixed issue where useBreakpointValue does not respect base value during SSR.

  • 11c2004 Thanks @segunadebayo! - Fixed collapse-width keyframe animating height instead of width. The keyframe now correctly animates the width property for horizontal collapse transitions.

  • a871bc5 Thanks @segunadebayo! - Fix issue where Dialog appears below Popover when triggered from within it.

    Unified z-index for overlay components (Dialog, Drawer, Menu, HoverCard) to use zIndex.popover and --layer-index for proper stacking.