Skip to content

Commit f10d7a6

Browse files
committed
chore(release): publish 0.27.0
1 parent 7df528c commit f10d7a6

File tree

14 files changed

+676
-55
lines changed

14 files changed

+676
-55
lines changed

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## 0.27.0 (2025-04-04)
2+
3+
### 🚀 Features
4+
5+
- split out localization files for optimized bundle ([#1533](https://github.com/TypeCellOS/BlockNote/pull/1533))
6+
- remove shiki dep, add new @blocknote/code-block package for slim shiki build ([#1519](https://github.com/TypeCellOS/BlockNote/pull/1519))
7+
- Block quote ([#1563](https://github.com/TypeCellOS/BlockNote/pull/1563))
8+
- markdown pasting & custom paste handlers ([#1490](https://github.com/TypeCellOS/BlockNote/pull/1490))
9+
10+
### 🩹 Fixes
11+
12+
- Backspace in empty block deletes previous block ([#1505](https://github.com/TypeCellOS/BlockNote/pull/1505))
13+
- Selection when clicking past end of inline content ([#1553](https://github.com/TypeCellOS/BlockNote/pull/1553))
14+
- better expose setting a draghandlemenu's items #1525 ([#1526](https://github.com/TypeCellOS/BlockNote/pull/1526), [#1525](https://github.com/TypeCellOS/BlockNote/issues/1525))
15+
- Multi-block links ([#1565](https://github.com/TypeCellOS/BlockNote/pull/1565))
16+
- Hard break keyboard shortcut not working in custom blocks ([#1554](https://github.com/TypeCellOS/BlockNote/pull/1554))
17+
- Overlapping marks in comments ([#1564](https://github.com/TypeCellOS/BlockNote/pull/1564))
18+
- some more sentry fixes ([#1577](https://github.com/TypeCellOS/BlockNote/pull/1577))
19+
20+
### ❤️ Thank You
21+
22+
- Martinrsts @Martinrsts
23+
- Matthew Lipski @matthewlipski
24+
- Nick Perez

packages/ariakit/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"directory": "packages/ariakit"
1212
},
1313
"license": "MPL-2.0",
14-
"version": "0.26.0",
14+
"version": "0.27.0",
1515
"files": [
1616
"dist",
1717
"types",
@@ -56,8 +56,8 @@
5656
},
5757
"dependencies": {
5858
"@ariakit/react": "^0.4.3",
59-
"@blocknote/core": "^0.26.0",
60-
"@blocknote/react": "^0.26.0"
59+
"@blocknote/core": "^0.27.0",
60+
"@blocknote/react": "^0.27.0"
6161
},
6262
"devDependencies": {
6363
"@types/react": "^18.0.25",

packages/code-block/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"directory": "packages/code-block"
1010
},
1111
"license": "MPL-2.0",
12-
"version": "0.26.0",
12+
"version": "0.27.0",
1313
"files": [
1414
"dist",
1515
"types",
@@ -57,7 +57,7 @@
5757
"@shikijs/types": "^3.2.1"
5858
},
5959
"devDependencies": {
60-
"@blocknote/core": "^0.26.0",
60+
"@blocknote/core": "^0.27.0",
6161
"eslint": "^8.10.0",
6262
"prettier": "^2.7.1",
6363
"rollup-plugin-webpack-stats": "^0.2.2",

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"directory": "packages/core"
1212
},
1313
"license": "MPL-2.0",
14-
"version": "0.26.0",
14+
"version": "0.27.0",
1515
"files": [
1616
"dist",
1717
"types",

packages/dev-scripts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"directory": "packages/dev-scripts"
99
},
1010
"license": "MPL-2.0",
11-
"version": "0.26.0",
11+
"version": "0.27.0",
1212
"description": "",
1313
"type": "module",
1414
"scripts": {

packages/mantine/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"directory": "packages/mantine"
1212
},
1313
"license": "MPL-2.0",
14-
"version": "0.26.0",
14+
"version": "0.27.0",
1515
"files": [
1616
"dist",
1717
"types",
@@ -55,8 +55,8 @@
5555
"clean": "rimraf dist && rimraf types"
5656
},
5757
"dependencies": {
58-
"@blocknote/core": "^0.26.0",
59-
"@blocknote/react": "^0.26.0",
58+
"@blocknote/core": "^0.27.0",
59+
"@blocknote/react": "^0.27.0",
6060
"@mantine/core": "^7.10.1",
6161
"@mantine/hooks": "^7.10.1",
6262
"@mantine/utils": "^6.0.21",

packages/react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"directory": "packages/react"
1212
},
1313
"license": "MPL-2.0",
14-
"version": "0.26.0",
14+
"version": "0.27.0",
1515
"files": [
1616
"dist",
1717
"types",
@@ -57,7 +57,7 @@
5757
"clean": "rimraf dist && rimraf types"
5858
},
5959
"dependencies": {
60-
"@blocknote/core": "^0.26.0",
60+
"@blocknote/core": "^0.27.0",
6161
"@emoji-mart/data": "^1.2.1",
6262
"@floating-ui/react": "^0.26.4",
6363
"@tiptap/core": "^2.7.1",

packages/server-util/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"directory": "packages/server-util"
1212
},
1313
"license": "MPL-2.0",
14-
"version": "0.26.0",
14+
"version": "0.27.0",
1515
"files": [
1616
"dist",
1717
"types",
@@ -55,8 +55,8 @@
5555
"test-watch": "vitest watch"
5656
},
5757
"dependencies": {
58-
"@blocknote/core": "^0.26.0",
59-
"@blocknote/react": "^0.26.0",
58+
"@blocknote/core": "^0.27.0",
59+
"@blocknote/react": "^0.27.0",
6060
"@tiptap/core": "^2.7.1",
6161
"@tiptap/pm": "^2.7.1",
6262
"jsdom": "^25.0.1",

packages/shadcn/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"directory": "packages/shadcn"
1212
},
1313
"license": "MPL-2.0",
14-
"version": "0.26.0",
14+
"version": "0.27.0",
1515
"files": [
1616
"dist",
1717
"types",
@@ -55,8 +55,8 @@
5555
"clean": "rimraf dist && rimraf types"
5656
},
5757
"dependencies": {
58-
"@blocknote/core": "^0.26.0",
59-
"@blocknote/react": "^0.26.0",
58+
"@blocknote/core": "^0.27.0",
59+
"@blocknote/react": "^0.27.0",
6060
"@hookform/resolvers": "^3.6.0",
6161
"@radix-ui/react-avatar": "^1.1.3",
6262
"@radix-ui/react-dropdown-menu": "^2.0.6",

packages/xl-docx-exporter/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"directory": "packages/xl-docx-exporter"
1010
},
1111
"license": "AGPL-3.0 OR PROPRIETARY",
12-
"version": "0.26.0",
12+
"version": "0.27.0",
1313
"files": [
1414
"dist",
1515
"types",
@@ -56,7 +56,7 @@
5656
"email": "email dev"
5757
},
5858
"dependencies": {
59-
"@blocknote/core": "^0.26.0",
59+
"@blocknote/core": "^0.27.0",
6060
"buffer": "^6.0.3",
6161
"docx": "^9.0.2",
6262
"image-meta": "^0.2.1"

packages/xl-multi-column/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"directory": "packages/xl-multi-column"
1010
},
1111
"license": "AGPL-3.0 OR PROPRIETARY",
12-
"version": "0.26.0",
12+
"version": "0.27.0",
1313
"files": [
1414
"dist",
1515
"types",
@@ -51,8 +51,8 @@
5151
"clean": "rimraf dist && rimraf types"
5252
},
5353
"dependencies": {
54-
"@blocknote/core": "^0.26.0",
55-
"@blocknote/react": "^0.26.0",
54+
"@blocknote/core": "^0.27.0",
55+
"@blocknote/react": "^0.27.0",
5656
"@tiptap/core": "^2.7.1",
5757
"prosemirror-model": "^1.23.0",
5858
"prosemirror-state": "^1.4.3",

packages/xl-odt-exporter/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"directory": "packages/xl-odt-exporter"
1010
},
1111
"license": "AGPL-3.0 OR PROPRIETARY",
12-
"version": "0.26.0",
12+
"version": "0.27.0",
1313
"files": [
1414
"dist",
1515
"types",
@@ -56,7 +56,7 @@
5656
"clean": "rimraf dist && rimraf types"
5757
},
5858
"dependencies": {
59-
"@blocknote/core": "^0.26.0",
59+
"@blocknote/core": "^0.27.0",
6060
"@zip.js/zip.js": "^2.7.57",
6161
"buffer": "^6.0.3",
6262
"image-meta": "^0.2.1"

packages/xl-pdf-exporter/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"directory": "packages/xl-pdf-exporter"
1010
},
1111
"license": "AGPL-3.0 OR PROPRIETARY",
12-
"version": "0.26.0",
12+
"version": "0.27.0",
1313
"files": [
1414
"dist",
1515
"types",
@@ -55,8 +55,8 @@
5555
"email": "email dev"
5656
},
5757
"dependencies": {
58-
"@blocknote/core": "^0.26.0",
59-
"@blocknote/react": "^0.26.0",
58+
"@blocknote/core": "^0.27.0",
59+
"@blocknote/react": "^0.27.0",
6060
"@react-pdf/renderer": "^4.3.0",
6161
"buffer": "^6.0.3",
6262
"docx": "^9.0.2"

0 commit comments

Comments
 (0)