Skip to content

Commit 31c70f1

Browse files
committed
release: v0.21.1
1 parent ffa5171 commit 31c70f1

File tree

9 files changed

+27
-11
lines changed

9 files changed

+27
-11
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
<!--__CHANGELOG_ENTRY__-->
44

5+
## [0.21.1](https://github.com/measuredco/puck/compare/v0.21.0...v0.21.1) (2026-01-23)
6+
7+
8+
### Bug Fixes
9+
10+
* don't throw when disabling listItem rich text extension ([4ca0a46](https://github.com/measuredco/puck/commit/4ca0a46e895e8a378bc743c4c06451dca8c00838))
11+
* enforce disabled styles for rich text menu with no options ([3d56139](https://github.com/measuredco/puck/commit/3d56139a84912fcc5cc13142bd31df8b2d187368))
12+
* ensure consistent plugin ordering in Firefox ([274c5f6](https://github.com/measuredco/puck/commit/274c5f6abd8585d015ece2b59d11da0b4914b6d0))
13+
* ensure nested richtext fields render in <Render/> ([501a164](https://github.com/measuredco/puck/commit/501a1649afbb5fb4125146541e63b0f3fec3a962))
14+
* prevent array item expansion when empty ([1a6682a](https://github.com/measuredco/puck/commit/1a6682a3bc0eaaae2f6ffe1a2d20656d8d647a65))
15+
* prevent block deletion on backspace in rich text in Firefox ([71c8664](https://github.com/measuredco/puck/commit/71c8664dd7f0fe7d971ebcd4992167df2e45bcc1)), closes [#1529](https://github.com/measuredco/puck/issues/1529)
16+
* replace missed fast-deep-equals with fast-equals ([ffa5171](https://github.com/measuredco/puck/commit/ffa5171c1732875df9a82934a4924b0e86750161))
17+
18+
19+
20+
521
## [0.21.0](https://github.com/measuredco/puck/compare/v0.20.2...v0.21.0) (2026-01-14)
622

723

apps/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "0.21.0",
3+
"version": "0.21.1",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"packages/plugin-emotion-cache",
88
"packages/plugin-heading-analyzer"
99
],
10-
"version": "0.21.0",
10+
"version": "0.21.1",
1111
"npmClient": "yarn",
1212
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
1313
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"recipes/*",
3838
"packages/*"
3939
],
40-
"version": "0.21.0",
40+
"version": "0.21.1",
4141
"engines": {
4242
"node": ">=20.0.0"
4343
}

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@puckeditor/core",
3-
"version": "0.21.0",
3+
"version": "0.21.1",
44
"description": "The open-source visual editor for React",
55
"author": "Chris Villa <chris@puckeditor.com>",
66
"repository": "puckeditor/puck",

packages/create-puck-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-puck-app",
3-
"version": "0.21.0",
3+
"version": "0.21.1",
44
"author": "Chris Villa <chris@puckeditor.com>",
55
"repository": "puckeditor/puck",
66
"bugs": "https://github.com/puckeditor/puck/issues",

packages/field-contentful/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@puckeditor/field-contentful",
3-
"version": "0.21.0",
3+
"version": "0.21.1",
44
"author": "Chris Villa <chris@puckeditor.com>",
55
"repository": "puckeditor/puck",
66
"bugs": "https://github.com/puckeditor/puck/issues",
@@ -22,7 +22,7 @@
2222
"dist"
2323
],
2424
"devDependencies": {
25-
"@puckeditor/core": "^0.21.0",
25+
"@puckeditor/core": "^0.21.1",
2626
"@types/react": "^19.2.7",
2727
"@types/react-dom": "^19.2.3",
2828
"contentful": "^10.8.6",

packages/plugin-emotion-cache/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@puckeditor/plugin-emotion-cache",
3-
"version": "0.21.0",
3+
"version": "0.21.1",
44
"author": "Chris Villa <chris@puckeditor.com>",
55
"repository": "puckeditor/puck",
66
"bugs": "https://github.com/puckeditor/puck/issues",
@@ -24,7 +24,7 @@
2424
],
2525
"devDependencies": {
2626
"@emotion/react": "^11.13.3",
27-
"@puckeditor/core": "^0.21.0",
27+
"@puckeditor/core": "^0.21.1",
2828
"@types/minimatch": "3.0.5",
2929
"@types/react": "^19.2.7",
3030
"@types/react-dom": "^19.0.2",

packages/plugin-heading-analyzer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@puckeditor/plugin-heading-analyzer",
3-
"version": "0.21.0",
3+
"version": "0.21.1",
44
"author": "Chris Villa <chris@puckeditor.com>",
55
"repository": "puckeditor/puck",
66
"bugs": "https://github.com/puckeditor/puck/issues",
@@ -25,7 +25,7 @@
2525
"dist"
2626
],
2727
"devDependencies": {
28-
"@puckeditor/core": "^0.21.0",
28+
"@puckeditor/core": "^0.21.1",
2929
"@types/minimatch": "3.0.5",
3030
"@types/react": "^19.0.1",
3131
"@types/react-dom": "^19.0.2",

0 commit comments

Comments
 (0)