1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-12 10:14:02 +02:00

Version Packages (#4243)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2021-05-12 21:29:31 -04:00
committed by GitHub
parent 4f50211984
commit 39b0254867
13 changed files with 29 additions and 40 deletions

View File

@@ -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.

View File

@@ -1,5 +0,0 @@
---
'slate-react': patch
---
Fix duplicated content and other bugs related to drag and drop handling

View File

@@ -1,5 +0,0 @@
---
'slate-react': patch
---
Fixed text insertion logic to prevent crashing in newer Firefox versions.

View File

@@ -1,5 +0,0 @@
---
'slate': patch
---
Removed lodash dependecy to reduce bundled footprint

View File

@@ -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

View File

@@ -1,5 +0,0 @@
---
'slate': patch
---
Exceptions in `editor.apply()` and `Editor.withoutNormalizing()` will no longer leave the editor in an invalid state

View File

@@ -1,5 +0,0 @@
---
'slate': patch
---
Fixed a bug that would allow multiple changes to be scheduled at the same time.

View File

@@ -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": {

View File

@@ -17,7 +17,7 @@
"is-plain-object": "^3.0.0"
},
"devDependencies": {
"slate": "^0.62.0"
"slate": "^0.63.0"
},
"peerDependencies": {
"slate": ">=0.55.0"

View File

@@ -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

View File

@@ -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"
},

View File

@@ -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

View File

@@ -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",