Skip to content

Commit

Permalink
v0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lexical GitHub Actions Bot committed Sep 26, 2024
1 parent 62c51a9 commit 3d08282
Show file tree
Hide file tree
Showing 42 changed files with 446 additions and 387 deletions.
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,50 @@
## v0.18.0 (2024-09-26)

- lexical-markdown set shouldMergeAdjacentLines default to be false (#6660) Sherry
- lexical-link Bug Fix Removing a link from descendants (#6656) Sergey Gorbachev
- lexical-playground Bug Fix Correct ExcalidrawNode DOM handling for proper resizing (#6657) neysanfoo
- lexical-markdown Refactor allows omitting certain properties from TextMatchTransformers, adds jsdocs (#6651) Alessio Gravili
- lexical-table Bug Fix Fix crash in deleteCellHandler (#6650) Bob Ippolito
- lexical-playground Bug Fix empty code block not focused (#6649) Sherry
- lexical-markdown shouldMergeAdjacentLines as an option (#6642) Sherry
- lexical-code Bug Fix Annotate lexicalcode as having side-effects for Prism (#6652) Bob Ippolito
- lexical-reactlexical-playground Bug Fix Workaround for yjs disconnect race in React StrictMode (#6644) Bob Ippolito
- Allow exporting a document fragment from the exportDOM function (#6641) Tom Kubt
- Grammar Issue - Repeated Word (#6643) Adam Pugh
- lexical-tablelexical-playground Feature Add column widths to TableNode (#6625) Patrick Moody
- lexical-playgroundExcalidrawNode Bug Fix Preserve Excalidraw image dimensions after resizing (#6634) neysanfoo
- lexical-table Bug Table formatting and styling not persisting for empty cells (#6626) Katsia
- lexical-markdown Fix normalize markdown in convertFromMarkdownString to comply with CommonMark spec (2nd try) (#6629) Germn Jabloski
- lexical-playground Bug Fix Fix table rowcolumn index when resizing merged cells (#6630) Patrick Moody
- Revert lexical-markdown Fix normalize markdown in convertFromMarkdownString to comply with CommonMark spec (#6608) (#6627) Sherry
- lexical-react Refactor Ensure disconnect is called after connection is established in useYjsCollaboration (#6619) smworld01
- CI tag flaky test (#6620) Sherry
- address micromatch vulnerability (#6616) Sherry
- Bug Fix Fix issue where selecting a cell then dragging outside of table would not select entire table (#6579) Mo
- lexical-markdown Breaking Change rename multilineElement to multiline-element (#6617) Sherry
- lexical Chore Add more helpful invariants to applyNodeReplacement (#6567) Bob Ippolito
- lexical-markdown Fix normalize markdown in convertFromMarkdownString to comply with CommonMark spec (#6608) Germn Jabloski
- Expose getStyleObjectFromCss in lexicalselection (#6612) Melissa Freiser
- lexical-markdown update markdown flow api (#6615) Sherry
- lexical-playground Fix Poll Option not clickable at some place after checked state (#6609) Vinay Kushwaha
- Multiple update tags (#6507) Gerard Rovira
- lexical-codebreaking change Bug Fix explicitly import instead of window. to support code nodes in nodejs (#6562) Nadine Nguyen
- lexical-tablelexical-playground Bug Fix Fix merged cell related edge cases (#6607) Bob Ippolito
- Fix issue where cmdctrl left arrow after a tab character would cause exception (#6588) Mo
- Address svelte vulnerability (#6603) Sherry
- lexical-markdownbreaking change Feature multiline markdown transformers mdx support (#6530) Alessio Gravili
- lexical-table Fix Table Cut Event Handling (#6596) Ivaylo Pavlov
- lexicallexical-overflow Refactor simplified removeText and insertText rewrite (part 1) (#6456) Germn Jabloski
- Fix test results CI path on Windows (#6585) Mo
- lexical-listlexical-react Refactor Create registerList Function Separate from React Shared Utils (#6560) River
- lexical-react Fix incorrect addition of empty cells on table paste (#6578) Shubhanker Srivastava
- lexical-table feat Add row striping (#6547) Ivaylo Pavlov
- Feature Check undeclared dependencies in build (#6574) Bob Ippolito
- lexical-react menu positioning Unrevert PR6510 but with gating (#6566) Sherry
- lexical-table Bug Fix Add lexicalclipboard as a direct dependency of lexicaltable (#6571) Bob Ippolito
- v0.17.1 (#6559) Ivaylo Pavlov
- v0.17.1 Lexical GitHub Actions Bot

## v0.17.1 (2024-08-26)

- lexical-playground Bug Fix fix comment timestamps (#6555) Ira Hopkinson
Expand Down
6 changes: 3 additions & 3 deletions examples/react-plain-text/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@lexical/react-plain-text-example",
"private": true,
"version": "0.17.1",
"version": "0.18.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lexical/react": "0.17.1",
"lexical": "0.17.1",
"@lexical/react": "0.18.0",
"lexical": "0.18.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
8 changes: 4 additions & 4 deletions examples/react-rich-collab/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@lexical/react-rich-collab-example",
"private": true,
"version": "0.17.1",
"version": "0.18.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -12,9 +12,9 @@
"server:webrtc": "cross-env HOST=localhost PORT=1235 npx y-webrtc"
},
"dependencies": {
"@lexical/react": "0.17.1",
"@lexical/yjs": "0.17.1",
"lexical": "0.17.1",
"@lexical/react": "0.18.0",
"@lexical/yjs": "0.18.0",
"lexical": "0.18.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"y-webrtc": "^10.3.0",
Expand Down
6 changes: 3 additions & 3 deletions examples/react-rich/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@lexical/react-rich-example",
"private": true,
"version": "0.17.1",
"version": "0.18.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lexical/react": "0.17.1",
"lexical": "0.17.1",
"@lexical/react": "0.18.0",
"lexical": "0.18.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
6 changes: 3 additions & 3 deletions examples/react-table/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@lexical/react-table-example",
"private": true,
"version": "0.17.1",
"version": "0.18.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lexical/react": "0.17.1",
"lexical": "0.17.1",
"@lexical/react": "0.18.0",
"lexical": "0.18.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
12 changes: 6 additions & 6 deletions examples/vanilla-js-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "@lexical/vanilla-js-plugin-example",
"private": true,
"version": "0.17.1",
"version": "0.18.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lexical/dragon": "0.17.1",
"@lexical/history": "0.17.1",
"@lexical/rich-text": "0.17.1",
"@lexical/utils": "0.17.1",
"@lexical/dragon": "0.18.0",
"@lexical/history": "0.18.0",
"@lexical/rich-text": "0.18.0",
"@lexical/utils": "0.18.0",
"emoji-datasource-facebook": "15.1.2",
"lexical": "0.17.1"
"lexical": "0.18.0"
},
"devDependencies": {
"typescript": "^5.2.2",
Expand Down
12 changes: 6 additions & 6 deletions examples/vanilla-js/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "@lexical/vanilla-js-example",
"private": true,
"version": "0.17.1",
"version": "0.18.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lexical/dragon": "0.17.1",
"@lexical/history": "0.17.1",
"@lexical/rich-text": "0.17.1",
"@lexical/utils": "0.17.1",
"lexical": "0.17.1"
"@lexical/dragon": "0.18.0",
"@lexical/history": "0.18.0",
"@lexical/rich-text": "0.18.0",
"@lexical/utils": "0.18.0",
"lexical": "0.18.0"
},
"devDependencies": {
"typescript": "^5.2.2",
Expand Down
Loading

0 comments on commit 3d08282

Please sign in to comment.