diff --git a/.changeset/bright-pants-grin.md b/.changeset/bright-pants-grin.md deleted file mode 100644 index a51f66593..000000000 --- a/.changeset/bright-pants-grin.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'slate': minor ---- - -Applying invalid `insert_node` operations will now throw an exception for all invalid paths, not just invalid parent paths. diff --git a/.changeset/drag-and-drop.md b/.changeset/drag-and-drop.md deleted file mode 100644 index 407dd3866..000000000 --- a/.changeset/drag-and-drop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'slate-react': patch ---- - -Fix duplicated content and other bugs related to drag and drop handling diff --git a/.changeset/forty-mails-roll.md b/.changeset/forty-mails-roll.md deleted file mode 100644 index 088ab2ce8..000000000 --- a/.changeset/forty-mails-roll.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'slate-react': patch ---- - -Fixed text insertion logic to prevent crashing in newer Firefox versions. diff --git a/.changeset/red-bears-cry.md b/.changeset/red-bears-cry.md deleted file mode 100644 index 84b9f17d2..000000000 --- a/.changeset/red-bears-cry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'slate': patch ---- - -Removed lodash dependecy to reduce bundled footprint diff --git a/.changeset/silver-snakes-perform.md b/.changeset/silver-snakes-perform.md deleted file mode 100644 index 1143ace00..000000000 --- a/.changeset/silver-snakes-perform.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'slate': patch ---- - -Fix `Error: Cannot get the start point in the node at path [...] because it has no start text node` caused by normalizing a document where some elements have no children diff --git a/.changeset/sixty-glasses-beg.md b/.changeset/sixty-glasses-beg.md deleted file mode 100644 index 14ea67f59..000000000 --- a/.changeset/sixty-glasses-beg.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'slate': patch ---- - -Exceptions in `editor.apply()` and `Editor.withoutNormalizing()` will no longer leave the editor in an invalid state diff --git a/.changeset/three-parrots-remember.md b/.changeset/three-parrots-remember.md deleted file mode 100644 index 17c0ee497..000000000 --- a/.changeset/three-parrots-remember.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'slate': patch ---- - -Fixed a bug that would allow multiple changes to be scheduled at the same time. diff --git a/packages/slate-history/package.json b/packages/slate-history/package.json index 513e0987e..6e4c0d341 100644 --- a/packages/slate-history/package.json +++ b/packages/slate-history/package.json @@ -18,7 +18,7 @@ "is-plain-object": "^3.0.0" }, "devDependencies": { - "slate": "^0.62.0", + "slate": "^0.63.0", "slate-hyperscript": "^0.62.0" }, "peerDependencies": { diff --git a/packages/slate-hyperscript/package.json b/packages/slate-hyperscript/package.json index a58b979f5..e409a1465 100644 --- a/packages/slate-hyperscript/package.json +++ b/packages/slate-hyperscript/package.json @@ -17,7 +17,7 @@ "is-plain-object": "^3.0.0" }, "devDependencies": { - "slate": "^0.62.0" + "slate": "^0.63.0" }, "peerDependencies": { "slate": ">=0.55.0" diff --git a/packages/slate-react/CHANGELOG.md b/packages/slate-react/CHANGELOG.md index 97dd7ce0f..e1c7827ca 100644 --- a/packages/slate-react/CHANGELOG.md +++ b/packages/slate-react/CHANGELOG.md @@ -1,5 +1,13 @@ # slate-react +## 0.63.0 + +### Patch Changes + +- [#4238](https://github.com/ianstormtaylor/slate/pull/4238) [`c14e1fbc`](https://github.com/ianstormtaylor/slate/commit/c14e1fbc77c51f7928ba8ab089c76f3e3438fb97) Thanks [@clauderic](https://github.com/clauderic)! - Fix duplicated content and other bugs related to drag and drop handling + +* [#4237](https://github.com/ianstormtaylor/slate/pull/4237) [`623960a7`](https://github.com/ianstormtaylor/slate/commit/623960a7d14103b8cebe667019b4de5f8ad1fd61) Thanks [@dylans](https://github.com/dylans)! - Fixed text insertion logic to prevent crashing in newer Firefox versions. + ## 0.62.1 ### Patch Changes diff --git a/packages/slate-react/package.json b/packages/slate-react/package.json index cecf20f2d..21e1412fc 100644 --- a/packages/slate-react/package.json +++ b/packages/slate-react/package.json @@ -1,7 +1,7 @@ { "name": "slate-react", "description": "Tools for building completely customizable richtext editors with React.", - "version": "0.62.1", + "version": "0.63.0", "license": "MIT", "repository": "git://github.com/ianstormtaylor/slate.git", "main": "dist/index.js", @@ -24,7 +24,7 @@ "tiny-invariant": "1.0.6" }, "devDependencies": { - "slate": "^0.62.1", + "slate": "^0.63.0", "slate-history": "^0.62.0", "slate-hyperscript": "^0.62.0" }, diff --git a/packages/slate/CHANGELOG.md b/packages/slate/CHANGELOG.md index 9e9b29d60..0670d3180 100644 --- a/packages/slate/CHANGELOG.md +++ b/packages/slate/CHANGELOG.md @@ -1,5 +1,21 @@ # slate +## 0.63.0 + +### Minor Changes + +- [#4230](https://github.com/ianstormtaylor/slate/pull/4230) [`796389c7`](https://github.com/ianstormtaylor/slate/commit/796389c7d3d9cead1493abcba6c678cb9dfa979f) Thanks [@TheSpyder](https://github.com/TheSpyder)! - Applying invalid `insert_node` operations will now throw an exception for all invalid paths, not just invalid parent paths. + +### Patch Changes + +- [#4245](https://github.com/ianstormtaylor/slate/pull/4245) [`b33a531b`](https://github.com/ianstormtaylor/slate/commit/b33a531bd0395ecb23bd9fd1ac1cd1c3b31f92ca) Thanks [@JonasKruckenberg](https://github.com/JonasKruckenberg)! - Removed lodash dependecy to reduce bundled footprint + +* [#4208](https://github.com/ianstormtaylor/slate/pull/4208) [`feb293aa`](https://github.com/ianstormtaylor/slate/commit/feb293aaa2c02fe3ad319bd021e66908ee770a6e) Thanks [@TheSpyder](https://github.com/TheSpyder)! - Fix `Error: Cannot get the start point in the node at path [...] because it has no start text node` caused by normalizing a document where some elements have no children + +- [#4230](https://github.com/ianstormtaylor/slate/pull/4230) [`796389c7`](https://github.com/ianstormtaylor/slate/commit/796389c7d3d9cead1493abcba6c678cb9dfa979f) Thanks [@TheSpyder](https://github.com/TheSpyder)! - Exceptions in `editor.apply()` and `Editor.withoutNormalizing()` will no longer leave the editor in an invalid state + +* [#4227](https://github.com/ianstormtaylor/slate/pull/4227) [`e6413d46`](https://github.com/ianstormtaylor/slate/commit/e6413d46256f6fc60549974242d3ff6ba61e2968) Thanks [@ulion](https://github.com/ulion)! - Fixed a bug that would allow multiple changes to be scheduled at the same time. + ## 0.62.1 ### Patch Changes diff --git a/packages/slate/package.json b/packages/slate/package.json index 164dca72e..81453448a 100644 --- a/packages/slate/package.json +++ b/packages/slate/package.json @@ -1,7 +1,7 @@ { "name": "slate", "description": "A completely customizable framework for building rich text editors.", - "version": "0.62.1", + "version": "0.63.0", "license": "MIT", "repository": "git://github.com/ianstormtaylor/slate.git", "main": "dist/index.js",