Skip to content

Commit

Permalink
v0.9.1 (#4191)
Browse files Browse the repository at this point in the history
  • Loading branch information
zurfyx authored Mar 24, 2023
1 parent 607263e commit 75a6541
Show file tree
Hide file tree
Showing 28 changed files with 157 additions and 111 deletions.
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,49 @@
## v0.9.1 (2023-03-24)

- Explicit E2E_BROWSER on E2E runs (#4179) Gerard Rovira
- Fix tables Webkit e2e (#4175) Gerard Rovira
- Remove unused convertToMarkdown file (#4169) themagickoala
- Improve markdown transformers (#3886) Godefroy
- Iterate through the live NodeList instead of copying to an array in $generateNodesFromDOM (#4164) Acy Watson
- Bump Excalidraw to v0.14.2 (#4153) Ivaylo Pavlov
- Fix table stealing selectionchange (#4162) Gerard Rovira
- Improve Documentation #2845 - lexical/selection (#4140) Harry Sanders
- UX: Floating link editor: better positioning (#4158) Alessio Gravili
- DecoratorNode not disabling placeholder at root (#4147) Harry Sanders
- Color picker - fixes #4127 (#4146) Harry Sanders
- Validate against infinite loop in ListItemNode.setIndent (#4120) Acy Watson
- Paste merged celled table (#4116) Gerard Rovira
- Add md import/export tests, fix numbered lists pasting (#4123) Maksim Horbachevsky
- Bump webpack from 5.75.0 to 5.76.0 (#4128) dependabot[bot]
- fix: drag-over event on windows (#4125) 子瞻 Luci
- Remove link preview (#4122) John Flockton
- Add a function to create a LinkMatcher based on a RegExp (#3972) Karibash
- Revise padding for smaller res (#4112) Gerard Rovira
- Catch failures in parseEditorState (#4109) Acy Watson
- Improve Documentation #2845 - lexical/list (#4107) Harry Sanders
- Fix tables Collab E2E (#4117) Gerard Rovira
- Fix ShadowRoot + X insertNode (#4115) Gerard Rovira
- Overflow of logos of action items in Lexical Playground (#4096) 7gaurab_khanal
- Remove columns w/ span support (#4093) Gerard Rovira
- Remove rows w/ span support (#4078) Gerard Rovira
- Table insert column w/ span support (#4074) Gerard Rovira
- Table insert row w/ span support (#4063) Gerard Rovira
- Use broader return types in `HorizontalRuleNode` (#4097) Chris Montrois
- Add focus tag to editor.focus (#4092) Dragoș Străinu
- Improve Documentation #2845 - lexical/utils (#4047) Harry Sanders
- Fix toolbars that shouldn't appear in certain cases (#4077) Warren19
- Fixed reference to old `addUpdateListener` method in transforms doc (#4094) Kevin Ansfield
- Pass tags to onChange for LexicalOnChangePlugin (#4091) Dragoș Străinu
- Fix tables E2E (#4090) John Flockton
- Change default indent to 40px (#4025) EgonBolton
- Update CODEOWNERS (#4089) John Flockton
- Updated InsertTableDialog UX (#4082) Brandon
- Export getNearestEditorFromDOMNode (#4079) Gerard Rovira
- Fix unresponsive resize handle in Safari (#4081) Brandon
- Sticky toolbar to assist in editing large content (#4076) Brandon
- Fix table RangeSelection test (#4061) Gerard Rovira
- Trim table e2e assert (#4060) Gerard Rovira

## v0.9.0 (2023-03-08)

- deprecate $wrapNodes (#4059) Acy Watson
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@lexical/monorepo",
"description": "Lexical is an extensible text editor framework that provides excellent reliability, accessibility and performance.",
"version": "0.9.0",
"version": "0.9.1",
"license": "MIT",
"private": true,
"workspaces": [
Expand Down
12 changes: 6 additions & 6 deletions packages/lexical-clipboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"paste"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalClipboard.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"dependencies": {
"@lexical/utils": "0.9.0",
"@lexical/list": "0.9.0",
"@lexical/selection": "0.9.0",
"@lexical/html": "0.9.0"
"@lexical/utils": "0.9.1",
"@lexical/list": "0.9.1",
"@lexical/selection": "0.9.1",
"@lexical/html": "0.9.1"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical-code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"code"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalCode.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"dependencies": {
"@lexical/utils": "0.9.0",
"@lexical/utils": "0.9.1",
"prismjs": "^1.27.0"
},
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions packages/lexical-dragon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"accessibility"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalDragon.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/lexical-file/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"export"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalFile.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical-hashtag/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"hashtag"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalHashtag.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"dependencies": {
"@lexical/utils": "0.9.0"
"@lexical/utils": "0.9.1"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/lexical-headless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"headless"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalHeadless.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical-history/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"history"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalHistory.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"dependencies": {
"@lexical/utils": "0.9.0"
"@lexical/utils": "0.9.1"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical-html/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
"html"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalHtml.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/lexical",
"directory": "packages/lexical-html"
},
"dependencies": {
"@lexical/selection": "0.9.0"
"@lexical/selection": "0.9.1"
}
}
6 changes: 3 additions & 3 deletions packages/lexical-link/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"link"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalLink.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"dependencies": {
"@lexical/utils": "0.9.0"
"@lexical/utils": "0.9.1"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical-list/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"list"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalList.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"dependencies": {
"@lexical/utils": "0.9.0"
"@lexical/utils": "0.9.1"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/lexical-mark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"mark"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalMark.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"dependencies": {
"@lexical/utils": "0.9.0"
"@lexical/utils": "0.9.1"
},
"repository": {
"type": "git",
Expand Down
16 changes: 8 additions & 8 deletions packages/lexical-markdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@
"markdown"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalMarkdown.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"dependencies": {
"@lexical/utils": "0.9.0",
"@lexical/code": "0.9.0",
"@lexical/text": "0.9.0",
"@lexical/rich-text": "0.9.0",
"@lexical/list": "0.9.0",
"@lexical/link": "0.9.0"
"@lexical/utils": "0.9.1",
"@lexical/code": "0.9.1",
"@lexical/text": "0.9.1",
"@lexical/rich-text": "0.9.1",
"@lexical/list": "0.9.1",
"@lexical/link": "0.9.1"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/lexical-offset/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"offset"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalOffset.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/lexical-overflow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"overflow"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalOverflow.js",
"peerDependencies": {
"lexical": "0.9.0"
"lexical": "0.9.1"
},
"repository": {
"type": "git",
Expand Down
10 changes: 5 additions & 5 deletions packages/lexical-plain-text/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"plain-text"
],
"license": "MIT",
"version": "0.9.0",
"version": "0.9.1",
"main": "LexicalPlainText.js",
"peerDependencies": {
"lexical": "0.9.0",
"@lexical/utils": "0.9.0",
"@lexical/selection": "0.9.0",
"@lexical/clipboard": "0.9.0"
"lexical": "0.9.1",
"@lexical/utils": "0.9.1",
"@lexical/selection": "0.9.1",
"@lexical/clipboard": "0.9.1"
},
"repository": {
"type": "git",
Expand Down
32 changes: 16 additions & 16 deletions packages/lexical-playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lexical-playground",
"version": "0.9.0",
"version": "0.9.1",
"private": true,
"scripts": {
"dev": "vite --host",
Expand All @@ -11,22 +11,22 @@
},
"dependencies": {
"@excalidraw/excalidraw": "0.14.2",
"@lexical/clipboard": "0.9.0",
"@lexical/code": "0.9.0",
"@lexical/file": "0.9.0",
"@lexical/hashtag": "0.9.0",
"@lexical/link": "0.9.0",
"@lexical/list": "0.9.0",
"@lexical/mark": "0.9.0",
"@lexical/overflow": "0.9.0",
"@lexical/plain-text": "0.9.0",
"@lexical/react": "0.9.0",
"@lexical/rich-text": "0.9.0",
"@lexical/selection": "0.9.0",
"@lexical/table": "0.9.0",
"@lexical/utils": "0.9.0",
"@lexical/clipboard": "0.9.1",
"@lexical/code": "0.9.1",
"@lexical/file": "0.9.1",
"@lexical/hashtag": "0.9.1",
"@lexical/link": "0.9.1",
"@lexical/list": "0.9.1",
"@lexical/mark": "0.9.1",
"@lexical/overflow": "0.9.1",
"@lexical/plain-text": "0.9.1",
"@lexical/react": "0.9.1",
"@lexical/rich-text": "0.9.1",
"@lexical/selection": "0.9.1",
"@lexical/table": "0.9.1",
"@lexical/utils": "0.9.1",
"katex": "^0.15.2",
"lexical": "0.9.0",
"lexical": "0.9.1",
"lodash-es": "^4.17.21",
"prettier": "^2.3.2",
"react": "^18.2.0",
Expand Down
Loading

2 comments on commit 75a6541

@vercel
Copy link

@vercel vercel bot commented on 75a6541 Mar 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

lexical – ./packages/lexical-website

lexical-fbopensource.vercel.app
lexical-git-main-fbopensource.vercel.app
lexicaljs.com
lexical.dev
lexicaljs.org
www.lexical.dev

@vercel
Copy link

@vercel vercel bot commented on 75a6541 Mar 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

lexical-playground – ./packages/lexical-playground

lexical-playground-git-main-fbopensource.vercel.app
lexical-playground.vercel.app
lexical-playground-fbopensource.vercel.app
playground.lexical.dev

Please sign in to comment.