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
7 changes: 0 additions & 7 deletions .changeset/fix-configure-input-rules-mutation.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-text-substitution-trigger.md

This file was deleted.

19 changes: 18 additions & 1 deletion apps/www/src/generated/release-index.json

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @platejs/core

## 53.0.6

### Patch Changes

- [#4983](https://github.com/udecode/plate/pull/4983) by [@bbyiringiro](https://github.com/bbyiringiro) – Fix `.configure({ inputRules })` losing rules on subsequent editor instances

The user's config object was shared across resolutions via closure; clearing `inputRules` on the first resolve left later editors (StrictMode remounts, HMR, multi-editor pages) with no configured rules.

- [#4983](https://github.com/udecode/plate/pull/4983) by [@bbyiringiro](https://github.com/bbyiringiro) – Fix `createTextSubstitutionInputRule` not firing on the final character of flat matches (e.g. `->` → `→`, `(c)` → `©`)

## 53.0.5

## 53.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@platejs/core",
"version": "53.0.5",
"version": "53.0.6",
"description": "The core of Plate – a plugin system for slate",
"keywords": [
"contentEditable",
Expand Down
6 changes: 6 additions & 0 deletions packages/plate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# platejs

## 53.0.6

### Patch Changes

- Updated `@platejs/core`, `@platejs/utils`.

## 53.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "platejs",
"version": "53.0.5",
"version": "53.0.6",
"description": "Plate – a framework for building rich text editors on the web",
"keywords": [
"contentEditable",
Expand Down
6 changes: 6 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @platejs/utils

## 53.0.6

### Patch Changes

- Updated `@platejs/core`.

## 53.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@platejs/utils",
"version": "53.0.5",
"version": "53.0.6",
"description": "Plate utils",
"keywords": [
"plate",
Expand Down
Loading