Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/pages/platform/limits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ set of limits.
| `userId` <InfoTooltip>The unique identifier for a user. Each `userId` must be used to represent a single user.</InfoTooltip> | 128 characters |
| `userInfo` <InfoTooltip>User information sent from the authentication endpoint.</InfoTooltip> | 1024 characters once serialized to JSON |
| Broadcast event message <InfoTooltip>Messages sent via the broadcast API for real-time communication between clients.</InfoTooltip> | 32 MB <InfoTooltip>Limited to 1 MB for client versions below 3.14. Make sure to upgrade to get higher limits.</InfoTooltip> |
| Thread metadata <InfoTooltip>Custom metadata attached to a thread.</InfoTooltip> | 50 properties, 4000 characters each |
| Comment metadata <InfoTooltip>Custom metadata attached to a comment.</InfoTooltip> | 50 properties, 4000 characters each |
| Thread metadata <InfoTooltip>Custom metadata attached to a thread.</InfoTooltip> | 50 properties, key length 40 characters, value length 4000 characters |
| Comment metadata <InfoTooltip>Custom metadata attached to a comment.</InfoTooltip> | 50 properties, key length 40 characters, value length 4000 characters |
| `LiveObject` <InfoTooltip>A realtime data structure that stores key-value pairs. <a href="/docs/api-reference/liveblocks-client#LiveObject" className="font-medium">Learn more</a></InfoTooltip> | 2 MB when totalling the size of the keys and values <InfoTooltip>For rooms powered by the <a href="/docs/guides/about-the-new-storage-engine" className="font-medium">v2 Storage engine</a>. Rooms powered by the classic v1 engine are limited to 128 kB.</InfoTooltip> |
| `LiveMap` <InfoTooltip>A realtime data structure that stores key-value pairs in a map. <a href="/docs/api-reference/liveblocks-client#LiveMap" className="font-medium">Learn more</a></InfoTooltip> | Unlimited, so long as each individual value does not exceed 2 MB <InfoTooltip>For rooms powered by the <a href="/docs/guides/about-the-new-storage-engine" className="font-medium">v2 Storage engine</a>. Rooms powered by the classic v1 engine are limited to 128 kB.</InfoTooltip> |
| `LiveList` <InfoTooltip>A realtime data structure that stores an ordered list of items. <a href="/docs/api-reference/liveblocks-client#LiveList" className="font-medium">Learn more</a></InfoTooltip> | Unlimited, so long as each individual value does not exceed 2 MB <InfoTooltip>For rooms powered by the <a href="/docs/guides/about-the-new-storage-engine" className="font-medium">v2 Storage engine</a>. Rooms powered by the classic v1 engine are limited to 128 kB.</InfoTooltip> |
Expand Down
6 changes: 3 additions & 3 deletions examples/sveltekit-live-avatars/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions examples/sveltekit-live-cursors/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

98 changes: 49 additions & 49 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/liveblocks-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/client",
"version": "3.15.1",
"version": "3.15.2",
"description": "A client that lets you interact with Liveblocks servers. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.",
"license": "Apache-2.0",
"author": "Liveblocks Inc.",
Expand Down Expand Up @@ -36,7 +36,7 @@
"test:watch": "NODE_OPTIONS=\"--no-deprecation\" vitest"
},
"dependencies": {
"@liveblocks/core": "3.15.1"
"@liveblocks/core": "3.15.2"
},
"devDependencies": {
"@liveblocks/eslint-config": "*",
Expand Down
2 changes: 1 addition & 1 deletion packages/liveblocks-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/core",
"version": "3.15.1",
"version": "3.15.2",
"description": "Private internals for Liveblocks. DO NOT import directly from this package!",
"type": "module",
"main": "./dist/index.cjs",
Expand Down
6 changes: 3 additions & 3 deletions packages/liveblocks-emails/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/emails",
"version": "3.15.1",
"version": "3.15.2",
"description": "A set of functions and utilities to make sending emails based on Liveblocks notification events easy. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.",
"license": "Apache-2.0",
"author": "Liveblocks Inc.",
Expand Down Expand Up @@ -37,8 +37,8 @@
"test:watch": "NODE_OPTIONS=\"--no-deprecation\" vitest"
},
"dependencies": {
"@liveblocks/core": "3.15.1",
"@liveblocks/node": "3.15.1"
"@liveblocks/core": "3.15.2",
"@liveblocks/node": "3.15.2"
},
"peerDependencies": {
"react": "^18 || ^19 || ^19.0.0-rc"
Expand Down
6 changes: 3 additions & 3 deletions packages/liveblocks-node-lexical/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/node-lexical",
"version": "3.15.1",
"version": "3.15.2",
"description": "A server-side utility that lets you modify lexical documents hosted in Liveblocks.",
"license": "Apache-2.0",
"author": "Liveblocks Inc.",
Expand Down Expand Up @@ -36,8 +36,8 @@
"test:watch": "NODE_OPTIONS=\"--no-deprecation\" vitest"
},
"dependencies": {
"@liveblocks/core": "3.15.1",
"@liveblocks/node": "3.15.1",
"@liveblocks/core": "3.15.2",
"@liveblocks/node": "3.15.2",
"yjs": "^13.6.18"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/liveblocks-node-prosemirror/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/node-prosemirror",
"version": "3.15.1",
"version": "3.15.2",
"description": "A server-side utility that lets you modify prosemirror and tiptap documents hosted in Liveblocks.",
"license": "Apache-2.0",
"author": "Liveblocks Inc.",
Expand Down Expand Up @@ -36,8 +36,8 @@
"test:watch": "NODE_OPTIONS=\"--no-deprecation\" vitest"
},
"dependencies": {
"@liveblocks/core": "3.15.1",
"@liveblocks/node": "3.15.1",
"@liveblocks/core": "3.15.2",
"@liveblocks/node": "3.15.2",
"yjs": "^13.6.20"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/liveblocks-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/node",
"version": "3.15.1",
"version": "3.15.2",
"description": "A server-side utility that lets you set up a Liveblocks authentication endpoint. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.",
"license": "Apache-2.0",
"author": "Liveblocks Inc.",
Expand Down Expand Up @@ -36,7 +36,7 @@
"test:watch": "NODE_OPTIONS=\"--no-deprecation\" vitest"
},
"dependencies": {
"@liveblocks/core": "3.15.1",
"@liveblocks/core": "3.15.2",
"@stablelib/base64": "^1.0.1",
"fast-sha256": "^1.3.0",
"node-fetch": "^2.6.1"
Expand Down
14 changes: 7 additions & 7 deletions packages/liveblocks-react-blocknote/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/react-blocknote",
"version": "3.15.1",
"version": "3.15.2",
"description": "An integration of BlockNote + React to enable collaboration, comments, live cursors, and more with Liveblocks.",
"license": "Apache-2.0",
"author": "Liveblocks Inc.",
Expand Down Expand Up @@ -44,12 +44,12 @@
"test:watch": "NODE_OPTIONS=\"--no-deprecation\" vitest"
},
"dependencies": {
"@liveblocks/client": "3.15.1",
"@liveblocks/core": "3.15.1",
"@liveblocks/react": "3.15.1",
"@liveblocks/react-tiptap": "3.15.1",
"@liveblocks/react-ui": "3.15.1",
"@liveblocks/yjs": "3.15.1",
"@liveblocks/client": "3.15.2",
"@liveblocks/core": "3.15.2",
"@liveblocks/react": "3.15.2",
"@liveblocks/react-tiptap": "3.15.2",
"@liveblocks/react-ui": "3.15.2",
"@liveblocks/yjs": "3.15.2",
"@tiptap/core": "^3.19.0",
"vitest-tsconfig-paths": "^3.4.1"
},
Expand Down
Loading
Loading