Releases: TypeCellOS/BlockNote
v0.31.2
v0.32.0-hackdays.0
v0.31.1
0.31.1 (2025-05-23)
There was a regression in handling of "Blocknote extensions" in the undocumented _extensions
API. This broke a few applications that needed it, we have a new extensions
API that we consider to be experimental, so we do not want for consumers to be using it just yet. so we back-ported the old behavior of the _extensions
API.
All that to say, this only affects a minor subset of blocknote users, and is mostly internal
🩹 Fixes
- backwards-compat for
_extensions
(#1708)
❤️ Thank You
- Nick Perez
v0.31.0
0.31.0 (2025-05-20)
🤖 This release adds AI integration to BlockNote!
Connect a Large Language Model (LLM) to BlockNote and write, edit or format documents hand-in-hand with an AI agent:
Video
blocknote-ai.mp4
Explore
Features
- Iterate on document content and formatting with AI
- See exactly what changes the AI is making with a "human-like" collaborator experience
- Support for streaming responses
- Fully customizable commands and UI elements
- Fine-tune AI behavior with custom prompts and instructions
- Built on Vercel AI SDK
- Connect any LLM model (from Llama to OpenAI, Mistral or Anthropic)
- Use your own infrastructure or connect directly to a hosted LLM API
PR @ #1674
❤️ Thank You
- Matthew Lipski @matthewlipski
- Nick @nperez0111
- Yousef @YousefED
v0.30.1
v0.30.0
0.30.0 (2025-05-09)
There was a change to [email protected] that broke a lot of our assumptions around parsing content from HTML (and the clipboard), which users notified us about. We've now fixed them in this update. This resulted in a fairly significant change to how we parse content, but with a our test suite we are able to guarantee little changes in behavior, in some cases we actually are able to parse and correctly insert more content than prior versions.
There are also a number of bug fixes that have been addressed with this version, especially around collaborative editing, which should mean a better collaborative experience for users.
As always, we would like to thank our sponsors. We've recently updated our website to include a proper user auth and payment system. If your company relies on our open source software, please consider paying it forward by becoming a sponsor via our website: https://www.blocknotejs.org/pricing
🚀 Features
- expose
editor.prosemirrorState
again (#1615) - add
undo
andredo
methods to editor API (#1592) - re-implement Y.js collaboration as BlockNote plugins (#1638)
- file:
previewWidth
prop now defaults toundefined
(#1664) - locales: add zh-TW i18n (#1668)
- locales: add slovak i18n (#1649)
🩹 Fixes
- Resolve formating toolbar regression (#1630)
- provide
blockId
touploadFile
in UploadTab (#1641) - do not close the menu on content/selection change (#1644)
- keep file panel open during collaboration (#1646)
- force pasting plain text into code block (#1663)
- updating HTML parsing rules to account for
[email protected]
(#1661) - code-block: handle unknown languages better (#1626)
❤️ Thank You
- l0st0 @l0st0
- Lawrence Lin @linyiru
- Matthew Lipski @matthewlipski
- Nick Perez
- Quentin Nativel
v0.29.1
0.29.1 (2025-04-17)
🩹 Fixes
This resolves a dependency issue in 0.29.0
❤️ Thank You
- Nick the Sick
v0.29.0
0.29.0 (2025-04-17)
change
event
This adds a new API which will tell you what blocks have been inserted, updated or deleted when you register a callback on the onChange API
transact
API
This release adds a new low-level API for interacting with the prosemirror state, the transact API. This enables blocknote-level transactions, meaning that operations can operate on the same transaction, so now they are only one undo/redo step. We think this API provides a solid foundation for us to build anything that operates on the prosemirror level.
It is also accompanied by a couple of other low-level APIs exec and canExec for interoperability between blocknote and existing prosemirror commands
🚀 Features
change
event allows getting a list of the block changed (#1585)
🩹 Fixes
- allow opening another suggestion menu if another is triggered #1473 (#1591, #1473)
- add quote to schema (aa16b15fe)
- update y-prosemirror to fix #1462 (#1608, #1462)
- dispatch suggestion menu as a separate transaction (#1614)
❤️ Thank You
- Nick Perez
- Nick the Sick
Please note that this version had issues being published, please use 0.29.1 instead