Skip to content

Commit

Permalink
Version Packages (#4368)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Aug 10, 2021
1 parent 3f69a9f commit 9360707
Show file tree
Hide file tree
Showing 19 changed files with 46 additions and 68 deletions.
5 changes: 0 additions & 5 deletions .changeset/breezy-lizards-travel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/four-kangaroos-invite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/itchy-poems-lie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/khaki-readers-battle.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/metal-trees-rest.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/new-trainers-peel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/poor-moose-approve.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-teachers-kneel.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/real-jobs-bow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rich-wasps-leave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sixty-ties-fetch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tricky-moles-battle.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/slate-history/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# slate-history

## 0.65.3

### Patch Changes

- [#4430](https://github.com/ianstormtaylor/slate/pull/4430) [`748bf750`](https://github.com/ianstormtaylor/slate/commit/748bf7500557507a999796749cef28b0d1eb79d9) Thanks [@TheSpyder](https://github.com/TheSpyder)! - Removed unnecessary (and outdated) dependency on `immer`

## 0.62.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/slate-history/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "slate-history",
"description": "An operation-based history implementation for Slate editors.",
"version": "0.62.0",
"version": "0.65.3",
"license": "MIT",
"repository": "git://github.com/ianstormtaylor/slate.git",
"main": "dist/index.js",
Expand All @@ -17,7 +17,7 @@
"is-plain-object": "^3.0.0"
},
"devDependencies": {
"slate": "^0.63.0",
"slate": "^0.65.3",
"slate-hyperscript": "^0.62.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/slate-hyperscript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"is-plain-object": "^3.0.0"
},
"devDependencies": {
"slate": "^0.63.0"
"slate": "^0.65.3"
},
"peerDependencies": {
"slate": ">=0.55.0"
Expand Down
22 changes: 22 additions & 0 deletions packages/slate-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# slate-react

## 0.65.3

### Patch Changes

- [#4175](https://github.com/ianstormtaylor/slate/pull/4175) [`bde6e804`](https://github.com/ianstormtaylor/slate/commit/bde6e80476ee0ba7a14c8c7625b51de9e58bb170) Thanks [@gyh9457](https://github.com/gyh9457)! - Fixed a bug in the memoization logic for the leaves of text nodes.

* [#4394](https://github.com/ianstormtaylor/slate/pull/4394) [`01889807`](https://github.com/ianstormtaylor/slate/commit/0188980796b7a4b23ef2ee9e7e468532c1f5c8c4) Thanks [@jaked](https://github.com/jaked)! - fix bug where decorate is not called on immediate children of editor

- [#4049](https://github.com/ianstormtaylor/slate/pull/4049) [`6c844227`](https://github.com/ianstormtaylor/slate/commit/6c8442272105ec78b88d38efecb7aab9bb4e41de) Thanks [@ulion](https://github.com/ulion)! - Fix ios chrome ime double input issue.

* [#4427](https://github.com/ianstormtaylor/slate/pull/4427) [`3f69a9f3`](https://github.com/ianstormtaylor/slate/commit/3f69a9f3951b5beca77b065aaa5eba0737e68a8e) Thanks [@ben10code](https://github.com/ben10code)! - Fix crash when unmounting an editor rendered within a React portal. The issue was arising at unmount time, because `getRootNode` returned the dettached portal node and it is not an instance of `Document` or `ShadowRoot`. As a fix, `getDocumentOrShadowRoot` has been refactored to return a root node instead of throwing. In sum, this patch fixes a regression bug introduced by https://github.com/ianstormtaylor/slate/pull/3749/

- [#4369](https://github.com/ianstormtaylor/slate/pull/4369) [`c217dbb5`](https://github.com/ianstormtaylor/slate/commit/c217dbb5b9190753298bbc117a49af940a3a0d53) Thanks [@thesunny](https://github.com/thesunny)! - Scroll when inserting new text will now scroll parent scrollables

* [#4333](https://github.com/ianstormtaylor/slate/pull/4333) [`e0776c5c`](https://github.com/ianstormtaylor/slate/commit/e0776c5c923f1fb33a130599e558e6dffdde40f4) Thanks [@dylans](https://github.com/dylans)! - Allow setFragmentData to work without copy/paste or DnD data structure

- [#4421](https://github.com/ianstormtaylor/slate/pull/4421) [`237edc6e`](https://github.com/ianstormtaylor/slate/commit/237edc6ea616c9171611e632e146872a245bdb0e) Thanks [@jaked](https://github.com/jaked)! - fix decorate bug (#4277) without adding extra layers of render tree

* [#4347](https://github.com/ianstormtaylor/slate/pull/4347) [`46c8871c`](https://github.com/ianstormtaylor/slate/commit/46c8871c9cafd3017b2c9afff9b36f0527c2205f) Thanks [@aiwenar](https://github.com/aiwenar)! - Re-render leaf when new properties were added to it

- [#4352](https://github.com/ianstormtaylor/slate/pull/4352) [`4b373dc2`](https://github.com/ianstormtaylor/slate/commit/4b373dc29055a6fb3e2cdb26dd4cd023787603a5) Thanks [@hueyhe](https://github.com/hueyhe)! - Do not display placeholder when composing

## 0.65.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/slate-react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "slate-react",
"description": "Tools for building completely customizable richtext editors with React.",
"version": "0.65.2",
"version": "0.65.3",
"license": "MIT",
"repository": "git://github.com/ianstormtaylor/slate.git",
"main": "dist/index.js",
Expand All @@ -26,7 +26,7 @@
"devDependencies": {
"jsdom": "^16.6.0",
"react-test-renderer": ">=16.8.0",
"slate": "^0.63.0",
"slate": "^0.65.3",
"slate-hyperscript": "^0.62.0"
},
"peerDependencies": {
Expand Down
12 changes: 12 additions & 0 deletions packages/slate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# slate

## 0.65.3

### Patch Changes

- [#4253](https://github.com/ianstormtaylor/slate/pull/4253) [`0214b630`](https://github.com/ianstormtaylor/slate/commit/0214b630778e7fa3b6ebcdf6cd9a8e4cf7351bd3) Thanks [@TheSpyder](https://github.com/TheSpyder)! - Fix `Transforms.wrapNodes` crashing when the `match` function matched only the editor

* [#4049](https://github.com/ianstormtaylor/slate/pull/4049) [`6c844227`](https://github.com/ianstormtaylor/slate/commit/6c8442272105ec78b88d38efecb7aab9bb4e41de) Thanks [@ulion](https://github.com/ulion)! - Fix ios chrome ime double input issue.

- [#4421](https://github.com/ianstormtaylor/slate/pull/4421) [`237edc6e`](https://github.com/ianstormtaylor/slate/commit/237edc6ea616c9171611e632e146872a245bdb0e) Thanks [@jaked](https://github.com/jaked)! - fix decorate bug (#4277) without adding extra layers of render tree

* [#4349](https://github.com/ianstormtaylor/slate/pull/4349) [`236754c4`](https://github.com/ianstormtaylor/slate/commit/236754c4d2811d50f8e116cfd5de8d7619553cd9) Thanks [@imdbsd](https://github.com/imdbsd)! - Add isElementType utility to Element interface

## 0.63.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/slate/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "slate",
"description": "A completely customizable framework for building rich text editors.",
"version": "0.63.0",
"version": "0.65.3",
"license": "MIT",
"repository": "git://github.com/ianstormtaylor/slate.git",
"main": "dist/index.js",
Expand Down

0 comments on commit 9360707

Please sign in to comment.