Skip to content

chore(deps): update blocknote to v0.54.0 - #238

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/blocknote
Open

chore(deps): update blocknote to v0.54.0#238
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/blocknote

Conversation

@renovate

@renovate renovate Bot commented May 16, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@blocknote/core (source) 0.50.00.54.0 age confidence
@blocknote/react (source) 0.50.00.54.0 age confidence
@blocknote/server-util (source) 0.50.00.54.0 age confidence
@blocknote/shadcn (source) 0.50.00.54.0 age confidence

Release Notes

TypeCellOS/BlockNote (@​blocknote/core)

v0.54.0

Compare Source

🚀 Features
  • Adds a Math block (2a34f7d70)
  • Adds a Diagram block (0fca0ee7a)
  • core: Source-with-preview, syntax highlighting & exporter images (503c796d3)
🩹 Fixes
  • ai: Operations on collaborative documents (#​2952)
  • ai: Operations on blocks containing comments (#​2953)
  • pdf: Add custom font and fontFamily options for CJK (#​2945)
  • Expose first suggestion as active descendant (#​2965)
  • xl-docx-exporter: Clamp list nesting to the levels DOCX defines (#​2969)
❤️ Thank You

v0.53.0

Compare Source

🚀 Features
  • shadcn: ⚠️ Use base-ui instead of radix (BLO-1279) (#​2913)
🩹 Fixes
  • getCellSelection throwing error in positions (BLO-1193) (#​2911)
  • Multi-column slash menu items within a column (BLO-905) (#​2914)
  • Suggestion menu behaviour (BLO-1283, BLO-955) (#​2930)
  • Ignore useless block/inline content mutations (BLO-1224) (#​2912)
  • slash-menu: Better overflow behavior (BLO-1192) (#​2909)
  • Slash menu item selection behaviour (BLO-1222) (#​2838)
  • HTML export/parse round trip ignoring empty blocks (BLO-873) (#​2931)
  • core: Guard getBlock() calls to prevent TypeError on stale blocks (#​2941)
  • Stop stale node view positions crashing the editor (#​2938)
  • Multi-column trailing blocks, column hover borders & drop cursor left edge BLO-1226 (#​2885)
⚠️ Breaking Changes
  • shadcn: ⚠️ Use base-ui instead of radix (BLO-1279) (#​2913)
❤️ Thank You

v0.52.1

Compare Source

🩹 Fixes
  • react: Avoid importing yjs in the default UI (#​2902)
❤️ Thank You

v0.52.0

Compare Source

🚀 Features
  • Migrate to Vite+ (#​2745)
  • Decouple yjs from blocknote/core (#​2741)
  • moveBlocks behaviour when leaving empty columns (BLO-1109) (#​2842)
  • comments: Confirm before discarding an unsaved comment (blo-1197) (#​2861)
  • core: Support "plain" block content (BLO-335) (#​2868)
⚠️ Migration Guide

Yjs is now decoupled from @blocknote/core. Instead of passing a collaboration option directly to the editor, you now wrap your editor options with the withCollaboration helper imported from @blocknote/core/yjs.

Before (< 0.52.0):

const editor = useCreateBlockNote({
  // ...other editor options
  collaboration: {
    provider,
    fragment: doc.getXmlFragment("document-store"),
    user: {
      name: "My Username",
      color: "#ff0000",
    },
  },
});

After (>= 0.52.0):

// Import the helper from the decoupled Yjs entrypoint:
import { withCollaboration } from "@blocknote/core/yjs";

const editor = useCreateBlockNote(
  withCollaboration({
    // ...other editor options
    collaboration: {
      provider,
      fragment: doc.getXmlFragment("document-store"),
      user: {
        name: "My Username",
        color: "#ff0000",
      },
    },
  }),
);

The collaboration object itself (provider, fragment, user, showCursorLabels, etc.) is unchanged — you only need to:

  1. Import withCollaboration from @blocknote/core/yjs.
  2. Wrap your editor options object with withCollaboration(...), keeping the collaboration property inside it.

The same applies when creating an editor with BlockNoteEditor.create(withCollaboration({ ... })).

Note: @blocknote/core/yjs uses Yjs v13 (the yjs package). There is also a @blocknote/core/y entrypoint that targets Yjs v14 (@y/y) and adds newer features such as suggestions and version history. Unless you specifically need those, use @blocknote/core/yjs.

🩹 Fixes
  • Align side menu to tables (BLO-1117) (#​2837)
  • Remove cursor flicker in trailing block (#​2839)
  • table: Guard stale block after changes for table handles (#​2821)
  • xl-ai: Remove 'use client' from server entry (BLO-1235) (57596cee6)
  • tables: Tab causing indent in last table cell (BLO-1211) (#​2831)
  • core: Use dynamic propSchema when extending default block specs (#​2882)
  • xl-pdf-exporter: Fix emoji rendering for ZWJ sequences in PDF export (#​2871)
  • core: Ignore synthetic mousemove events without coordinates in side menu (#​2895)
  • core: Read hardBreakShortcut from block spec impl (#​2891)
  • xl-email-exporter: Update react-email deps to fix fresh install tests (#​2898)
  • core: Call scrollIntoView() on Enter (#​2802)
❤️ Thank You

v0.51.4

Compare Source

🩹 Fixes
  • add explicit type annotations for callback params losing contextual typing (#​2815)
  • Comments emoji picker button issues (BLO-1199) (#​2769)
  • core: add editor cleanup in BlockNoteEditor.test.ts to prevent unhandled DOMObserver errors (#​2816)
  • table: prevent crash when pressing Enter in a table cell (#​2793)
❤️ Thank You

v0.51.3

Compare Source

🩹 Fixes
  • table cell colors (BLO-1198) (#​2770)
❤️ Thank You

v0.51.2

Compare Source

🩹 Fixes
  • color picker icons (BLO-1189) (#​2762)
❤️ Thank You

v0.51.1

Compare Source

🩹 Fixes
  • backslash newlines when copying from a code block (#​2709)
❤️ Thank You
  • Claude Opus 4.7 (1M context)
  • Nick Perez

v0.51.0

Compare Source

🚀 Features
  • Trailing block extension rewrite (#​2733)
  • markdown: replace unified.js with custom markdown parser/serializer (#​2624)
  • react: configurable portal targets for floating UI (#​2729, #​2692)
🩹 Fixes
  • Pasting plain text from VSCode (BLO-366) (#​2713)
  • Parse new lines in text/plain as line breaks (BLO-1170) (#​2712)
  • Code block PDF export (BLO-987) (#​2725)
  • Formatting toolbar opening when inserting file block with trailingBlock: false (BLO-860) (#​2704)
  • numbered list item decorations missed on initial render (#​2734)
  • flicker-free mobile formatting toolbar via CSS custom properties (#​2617, #​2616)
  • add bn-thread-orphaned CSS class to distinguish orphaned threads (#​2737, #​2735)
  • set width attribute on image and video elements in editor render (#​2740, #​2726)
  • a11y: use figure/figcaption for media block captions (#​2717)
  • ai: loosen serialization of blocks in columns (#​2716, #​2718)
  • core: trigger codeblock input rule on Enter and place cursor inside (#​2686)
  • core: preserve list item type when pasting into empty list items (#​2722, #​2330)
  • core: unmount editors in transformPasted tests to prevent unhandled error (e62880b21)
  • drag-n-drop: support PDF block drag & drop (BLO-893) (#​2714)
  • i18: improve french translation for empty toggle list (#​2721)
  • markdown: emit tight lists when serializing blocks to markdown (#​2715)
  • markdown: skip placeholder text for empty files (#​434, #​2719)
  • markdown: stable round-trip for tables, captions, and audio (#​2720)
  • tests: stabilize webkit keyboard handler tests with programmatic cursor positioning (#​2746)
❤️ Thank You

Configuration

📅 Schedule: (in timezone Asia/Ho_Chi_Minh)

  • Branch creation
    • Between 01:00 AM and 06:59 PM, only on Sunday and Wednesday (* 1-18 * * 3,0)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/blocknote branch 3 times, most recently from 56ce887 to 7e852e8 Compare May 18, 2026 15:35
@renovate
renovate Bot force-pushed the renovate/blocknote branch from 7e852e8 to 2d1db72 Compare June 8, 2026 04:09
@renovate renovate Bot changed the title chore(deps): update blocknote to v0.51.0 chore(deps): update blocknote to v0.51.4 Jun 8, 2026
@codecov

codecov Bot commented Jun 8, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@renovate
renovate Bot force-pushed the renovate/blocknote branch from 2d1db72 to 1436a5f Compare June 24, 2026 12:59
@renovate
renovate Bot force-pushed the renovate/blocknote branch from 1436a5f to b33e95a Compare July 1, 2026 23:47
@renovate
renovate Bot force-pushed the renovate/blocknote branch 2 times, most recently from 257acef to a2d22c1 Compare July 25, 2026 08:06
@renovate renovate Bot changed the title chore(deps): update blocknote to v0.51.4 chore(deps): update blocknote to v0.52.1 Jul 25, 2026
@renovate
renovate Bot force-pushed the renovate/blocknote branch from a2d22c1 to 5b28834 Compare July 29, 2026 15:10
@renovate
renovate Bot force-pushed the renovate/blocknote branch from 5b28834 to 15f59e2 Compare August 9, 2026 12:53
@renovate renovate Bot changed the title chore(deps): update blocknote to v0.52.1 chore(deps): update blocknote to v0.53.0 Aug 9, 2026
@renovate
renovate Bot force-pushed the renovate/blocknote branch from 15f59e2 to 4224423 Compare August 16, 2026 12:40
@renovate renovate Bot changed the title chore(deps): update blocknote to v0.53.0 chore(deps): update blocknote to v0.54.0 Aug 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants