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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## vNEXT (not yet released)

## v3.14.1

### `@liveblocks/react`

- Fix paginated hooks (`useThreads`, `useInboxNotifications`, and `useAiChats`)
stopping pagination after the first `fetchMore()` call when auto-paginating in
a `useEffect`.

## v3.14.0

This release adds support for opting-in to the new storage engine on a per-room
Expand Down
5 changes: 2 additions & 3 deletions docs/routes.json
Original file line number Diff line number Diff line change
Expand Up @@ -739,9 +739,8 @@
"href": "https://frimousse.liveblocks.io"
},
{
"title": "How to set up CI testing",
"path": "/guides/how-to-set-up-continuous-integration-ci-testing",
"hidden": true
"title": "Zen Router",
"href": "https://zenrouter.liveblocks.io"
}
]
},
Expand Down
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.14.0",
"version": "3.14.1",
"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.14.0"
"@liveblocks/core": "3.14.1"
},
"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.14.0",
"version": "3.14.1",
"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.14.0",
"version": "3.14.1",
"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.14.0",
"@liveblocks/node": "3.14.0"
"@liveblocks/core": "3.14.1",
"@liveblocks/node": "3.14.1"
},
"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.14.0",
"version": "3.14.1",
"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.14.0",
"@liveblocks/node": "3.14.0",
"@liveblocks/core": "3.14.1",
"@liveblocks/node": "3.14.1",
"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.14.0",
"version": "3.14.1",
"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.14.0",
"@liveblocks/node": "3.14.0",
"@liveblocks/core": "3.14.1",
"@liveblocks/node": "3.14.1",
"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.14.0",
"version": "3.14.1",
"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.14.0",
"@liveblocks/core": "3.14.1",
"@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.14.0",
"version": "3.14.1",
"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.14.0",
"@liveblocks/core": "3.14.0",
"@liveblocks/react": "3.14.0",
"@liveblocks/react-tiptap": "3.14.0",
"@liveblocks/react-ui": "3.14.0",
"@liveblocks/yjs": "3.14.0",
"@liveblocks/client": "3.14.1",
"@liveblocks/core": "3.14.1",
"@liveblocks/react": "3.14.1",
"@liveblocks/react-tiptap": "3.14.1",
"@liveblocks/react-ui": "3.14.1",
"@liveblocks/yjs": "3.14.1",
"@tiptap/core": "^3.19.0",
"vitest-tsconfig-paths": "^3.4.1"
},
Expand Down
Loading
Loading