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: 4 additions & 0 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ jobs:
"packages/liveblocks-redux" "packages/liveblocks-zustand"
"packages/liveblocks-yjs" "packages/liveblocks-react-ui"
"packages/liveblocks-react-flow"
"packages/liveblocks-codemirror" "packages/liveblocks-lexical"
"packages/liveblocks-react-lexical" "packages/liveblocks-node-lexical"
"packages/liveblocks-prosemirror"
"packages/liveblocks-react-tiptap" "packages/liveblocks-emails"
"packages/liveblocks-node-prosemirror"
"packages/liveblocks-react-blocknote"
Expand All @@ -118,6 +120,8 @@ jobs:
"packages/liveblocks-yjs" "packages/liveblocks-react-lexical"
"packages/liveblocks-node-lexical" "packages/liveblocks-react-ui"
"packages/liveblocks-react-flow"
"packages/liveblocks-codemirror" "packages/liveblocks-lexical"
"packages/liveblocks-prosemirror"
"packages/liveblocks-react-tiptap" "packages/liveblocks-emails"
"packages/liveblocks-node-prosemirror"
"packages/liveblocks-react-blocknote"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ jobs:
exit 1
fi

- name: Typecheck
if: needs.check_for_code_changes.outputs.changes == 'true'
run: pnpm run typecheck --filter ${{ matrix.pkg }}

- name: Run unit tests
if: needs.check_for_code_changes.outputs.changes == 'true'
run: pnpm run test:ci --filter ${{ matrix.pkg }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ build/
coverage/
dist/
node_modules/
.pi-lens/

*.tsbuildinfo

Expand Down
9 changes: 9 additions & 0 deletions .syncpackrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@
"isIgnored": true
},

{
"label": "New Lexical package + e2e track 0.45; legacy react/node-lexical stay on 0.35",
"packages": [
"@liveblocks/lexical",
"@liveblocks/next-lexical-liveblocks"
],
"isIgnored": true
},

{
"label": "Peer dependencies are intentionally wider ranges",
"dependencyTypes": ["peer"],
Expand Down
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
## vNEXT (not yet released)

## v3.24.0

This release introduces `LiveText` (beta), a collaborative rich-text data
structure for plain text with optional inline formatting.

### `@liveblocks/client`

- Storage updates delivered to deep subscribers now carry a `source` field,
saying whether the change was made by this client
(`{ origin: "local", via: "edit" | "undo" | "redo" }`) or by another one
(`{ origin: "remote" }`), see
[docs](https://liveblocks.io/docs/api-reference/liveblocks-client#update-source).
- Add `LiveText` for collaborative text editing with concurrent inserts,
deletes, and formatting changes.

### `@liveblocks/codemirror`, `@liveblocks/lexical`, and `@liveblocks/prosemirror`

- Introduce packages for integrating CodeMirror, Lexical, and ProseMirror
editors with Liveblocks Storage and `LiveText`.

### `@liveblocks/react-tiptap`

- Fix `useIsEditorReady()` so it correctly reports when the Tiptap editor is
ready. Thanks @danilowoz for the fix.

## v3.23.1

### `@liveblocks/react-ui`
Expand Down
Loading
Loading