Skip to content

Commit a9bafb1

Browse files
author
Lexical GitHub Actions Bot
committed
v0.16.1
1 parent 1ba6caa commit a9bafb1

File tree

37 files changed

+412
-366
lines changed

37 files changed

+412
-366
lines changed

CHANGELOG.md

+46
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,49 @@
1+
## v0.16.1 (2024-07-01)
2+
3+
- lexical-playgroundlexical-poll Bug Fix Fixes undefined context inside Poll add option (#6361) Roman Lyubimov
4+
- (docs) Add existing history page to navigation (#6359) Oliver Lassen
5+
- Lexical Fix broken sync due to deprecation of ReactDOMComet to ReactDOM (#6358) Sahejkm
6+
- lexical-html Bug Fix Preserve text alignment of nested block elements, when converting HTML to Lexical Nodes (#6340) Zigopis Nikolaos
7+
- Replace await with async in lexical-headlessREADME.md (#6343) Kibaek Kim
8+
- Bug Fix Fix selection when hitting shiftarrowdown into a table. (#6274) Serey Roth
9+
- Update feature request template (#6316) Sherry
10+
- Add impact description to bug report issue template (#6317) Sherry
11+
- lexical-reactlexical-dev-tools-core Bug Fix TreeView selection indicator (#6336) Ira Hopkinson
12+
- lexical Bug Fix Export type EditorUpdateOptions (#6332) Bob Ippolito
13+
- lexical-link Fix bug when cant remove link formatting from autolink (#6306) Maksym Plavinskyi
14+
- lexical Bug Fix Make reconcileParagraphFormat respect editor readonly state (#6295) Aleksandr Lapukin
15+
- LexicalGallery add option to add gallery content in Meta Intern only (#6321) Sahejkm
16+
- Few missing exports that are useful (#6318) Piechota
17+
- LexicalCI Fix issues in afterapproval workflow (#6307) Sahejkm
18+
- LexicalMeta Add meta intern static docs config (#6302) Sahejkm
19+
- lexical-playground Fix bug Insert an image inside another images caption (#6109) (#6230) Maksym Plavinskyi
20+
- CI Only send flaky test notice once (#6298) Sherry
21+
- LexicalUI Gallery Fix meta lexical website intern build errors (#6300) Sahejkm
22+
- CI Comment to look up Flaky test tracker on e2e test failure (#6292) Sherry
23+
- fix yjs collaboration plugin in react strict mode (#6271) Meron Ogbai
24+
- lexicaldevtools Bug Fix Fixed issue when extension devtools panel gets out of sync with background script in Chrome Edge (#6297) Vlad Fedosov
25+
- lexicalauto-link Fix auto link node escapes on second . (#6146) Maksym Plavinskyi
26+
- lexical-markdown Add test to keep code language (#6259) Vladimir Ivakin
27+
- lexical-playgroundlexical-devtools Fix Add missing explicit devDependencies for vite config (#6291) Bob Ippolito
28+
- LexicalMeta Add dependencies needed to setup lexical-website in m (#6293) Sahejkm
29+
- Upgrade vite version to address vulnerabilities detected by the Open (#6284) Sahejkm
30+
- LexicalTables Follow up on #6267 handle multi column delete crash on forward selection at end of the table (#6279) Sahejkm
31+
- Feature Automated nightly releases (#6204) Bob Ippolito
32+
- lexical-selection Fix lost autolink styling (#6275) Maksym Plavinskyi
33+
- Lexical Fix #6221 delete multiple column table crash (#6267) Sahejkm
34+
- lexical-markdown Bug Fix standardise selection to move to start after markdown toggle (#6220) Sherry
35+
- lexical-playground CI fix flaky MaxLength emoji e2e test (#6257) Sherry
36+
- LexicalCI Skip extended tests workflow run on multiple approvals (#6265) Sahejkm
37+
- Revert lexical-react Bug Fix checklist cannot be toggled in sub-e (#6264) Gerard Rovira
38+
- lexical-utils Fix mergeRegister should call cleanup functions in reverse order (#6260) Bob Ippolito
39+
- Lexical Fix missing meta copyright headers in files (#6258) Sahejkm
40+
- docsexamples Update plain text and rich text examples (#6187) Maksym Plavinskyi
41+
- lexical-eslint-plugin Fix Use cjs compatible export from built version (#6252) Bob Ippolito
42+
- Lexical Skip newly added flaky Resize merged cells heightwidth tests for linuxcollabfirefox mode (#6250) Sahejkm
43+
- lexical-playground CI standardise key press delay (#6246) Sherry
44+
- v0.16.0 (#6248) Ivaylo Pavlov
45+
- v0.16.0 Lexical GitHub Actions Bot
46+
147
## v0.16.0 (2024-06-04)
248

349
- lexical-table Bug Fix Change exported table column width (#6243) Alex Reznik

examples/react-plain-text/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@lexical/react-plain-text-example",
33
"private": true,
4-
"version": "0.15.0",
4+
"version": "0.16.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "tsc && vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@lexical/react": "0.15.0",
13-
"lexical": "0.15.0",
12+
"@lexical/react": "0.16.1",
13+
"lexical": "0.16.1",
1414
"react": "^18.2.0",
1515
"react-dom": "^18.2.0"
1616
},

examples/react-rich-collab/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@lexical/react-rich-collab-example",
33
"private": true,
4-
"version": "0.16.0",
4+
"version": "0.16.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -12,9 +12,9 @@
1212
"server:webrtc": "cross-env HOST=localhost PORT=1235 npx y-webrtc"
1313
},
1414
"dependencies": {
15-
"@lexical/react": "0.16.0",
16-
"@lexical/yjs": "0.16.0",
17-
"lexical": "0.16.0",
15+
"@lexical/react": "0.16.1",
16+
"@lexical/yjs": "0.16.1",
17+
"lexical": "0.16.1",
1818
"react": "^18.2.0",
1919
"react-dom": "^18.2.0",
2020
"y-webrtc": "^10.3.0",

examples/react-rich/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@lexical/react-rich-example",
33
"private": true,
4-
"version": "0.16.0",
4+
"version": "0.16.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "tsc && vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@lexical/react": "0.16.0",
13-
"lexical": "0.16.0",
12+
"@lexical/react": "0.16.1",
13+
"lexical": "0.16.1",
1414
"react": "^18.2.0",
1515
"react-dom": "^18.2.0"
1616
},

examples/vanilla-js-plugin/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"name": "@lexical/vanilla-js-plugin-example",
33
"private": true,
4-
"version": "0.16.0",
4+
"version": "0.16.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "tsc && vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@lexical/dragon": "0.16.0",
13-
"@lexical/history": "0.16.0",
14-
"@lexical/rich-text": "0.16.0",
15-
"@lexical/utils": "0.16.0",
12+
"@lexical/dragon": "0.16.1",
13+
"@lexical/history": "0.16.1",
14+
"@lexical/rich-text": "0.16.1",
15+
"@lexical/utils": "0.16.1",
1616
"emoji-datasource-facebook": "15.1.2",
17-
"lexical": "0.16.0"
17+
"lexical": "0.16.1"
1818
},
1919
"devDependencies": {
2020
"typescript": "^5.2.2",

examples/vanilla-js/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "@lexical/vanilla-js-example",
33
"private": true,
4-
"version": "0.16.0",
4+
"version": "0.16.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "tsc && vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@lexical/dragon": "0.16.0",
13-
"@lexical/history": "0.16.0",
14-
"@lexical/rich-text": "0.16.0",
15-
"@lexical/utils": "0.16.0",
16-
"lexical": "0.16.0"
12+
"@lexical/dragon": "0.16.1",
13+
"@lexical/history": "0.16.1",
14+
"@lexical/rich-text": "0.16.1",
15+
"@lexical/utils": "0.16.1",
16+
"lexical": "0.16.1"
1717
},
1818
"devDependencies": {
1919
"typescript": "^5.2.2",

0 commit comments

Comments
 (0)