Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@liveblocks/core

Package Overview
Dependencies
Maintainers
3
Versions
296
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@liveblocks/core - npm Package Versions

13
30

2.10.1-react19

Diff

guillaumesalles
published 2.10.0 •

Changelog

Source

2.10.0

@liveblocks/client

  • Add new methods under client.resolvers.* to invalidate the cache of resolveUsers, resolveRoomsInfo, and resolveMentionSuggestions.
  • In storage update notifications (using room.subscribe(root, ..., { isDeep: true })), all LiveList deletion updates will now also include the item that was deleted (#2008)

@liveblocks/react-ui

  • Improve and fix pasting rich text into the composer.
  • Improve mention suggestions click behavior.
guillaumesalles
published 2.8.3-tiptap2 •

guillaumesalles
published 2.9.3-composer1 •

guillaumesalles
published 2.9.3-experimental1 •

guillaumesalles
published 2.9.3-emails1 •

guillaumesalles
published 2.9.2 •

Changelog

Source

2.9.2

@liveblocks/node

  • Detect invalid chars in secret keys and throw a more helpful error message
guillaumesalles
published 2.9.2-emails1 •

guillaumesalles
published 2.9.1 •

Changelog

Source

2.9.1 (Not released yet)

@liveblocks/client

  • Fix type definition of ThreadData: updatedAt is always set

@liveblocks/react-ui

  • When Composer is disabled, its actions are now also disabled as expected.
  • Various event propagation improvements in Composer.
guillaumesalles
published 2.9.0 •

Changelog

Source

2.9.0

We are introducing pagination support to allow apps using threads and inbox notifications to be built in a more user-friendly way, where the initial load is faster and more data can be fetched incrementally as users interact with the app.

@liveblocks/react

  • Add pagination support to useInboxNotifications()

    const {
      inboxNotifications,
      isLoading,
      error,
    
      // ✨ New in Liveblocks 2.9
      fetchMore,
      isFetchingMore,
      hasFetchedAll,
      fetchMoreError,
    } = useInboxNotifications();
    
  • Add pagination support to useThreads() and useUserThreads_experimental()

    const {
      threads,
      isLoading,
      error,
    
      // ✨ New in Liveblocks 2.9
      fetchMore,
      isFetchingMore,
      hasFetchedAll,
      fetchMoreError,
    } = useThreads({ query });
    
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc