Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Upgrade @lexical/html from 0.18.0 to 0.20.0 #1032

Closed

Conversation

tristanrobert
Copy link
Contributor

snyk-top-banner

Snyk has created this PR to upgrade @lexical/html from 0.18.0 to 0.20.0.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 32 versions ahead of your current version.

  • The recommended version was released on 23 days ago.

Release notes
Package name: @lexical/html
  • 0.20.0 - 2024-11-08

    Highlights

    Highlights since v0.19.0

    Lexical Core:

    • 🆕 $onUpdate to add an "onUpdate" callback while processing an editor.update
      #6773

    Markdown:

    • 🆕 Add ability to control finding the end of a node matched by TextMatchTransformer
      #6681
    • ✅ Avoid infinite markdown shortcut matchers
      #6778

    Collab / Yjs:

    • ✅ Clean up dangling text after undo in collaboration
      #6670

    Playground & Docs:

    • 🆕 Demonstrate how to preserve more styles when pasting HTML
      #6780
      #6770
    • 🆕 Add more keyboard shortcuts
      #6754

    What's Changed

    • [lexical] Feature: Add onUpdate function during update with $onUpdate (correct baselline) by @ landisdesign in #6773
    • #6768 fix to avoid infinite markdown shortcut matchers run by @ fantactuka in #6778
    • [lexical-playground] Fix: the placement of the fontSize button in the ToolbarPlugin and hide the vertical scroll (Bug Fix) by @ vantage-ola in #6786
    • Bug Fix: ContextMenu Paste option not preserving style by @ citruscai in #6780
    • [lexical-website] Chore: upgrade to Docusaurus v3.6 - Docusaurus Faster by @ slorber in #6761
    • [lexical-react] Bug Fix: LexicalTypeaheadMenuPlugin SSR error: ReferenceError: document is not defined by @ bedre7 in #6794
    • [lexical-markdown] Feature: add ability to control finding the end of a node matched by TextMatchTransformer by @ AlessioGr in #6681
    • [Lexical-website] BugFix: Change button text colour to improve visibility by @ Shopiley in #6796
    • [lexical-yjs] Bug Fix: clean up dangling text after undo in collaboration by @ mike-atticus in #6670
    • [lexical-website] Documentation Update: Add Documentation for html Property in Lexical Editor Configuration by @ Kingscliq in #6770
    • [lexical-playground] Feature: Add more keyboard shortcuts by @ bedre7 in #6754
    • Fix importDOM for Layout plugin by @ ivailop7 in #6799
    • Add optional selection argument to $getHtmlContent flow type by @ rajivanisetti in #6803
    • [lexical] Chore: Add export of DOMExportOutputMap from lexical by @ Kingscliq in #6805

    New Contributors

    Full Changelog: v0.19.0...v0.20.0

  • 0.19.1-nightly.20241107.0 - 2024-11-07

    v0.19.1-nightly.20241107.0

  • 0.19.1-nightly.20241106.0 - 2024-11-06

    v0.19.1-nightly.20241106.0

  • 0.19.1-nightly.20241105.0 - 2024-11-05

    v0.19.1-nightly.20241105.0

  • 0.19.1-nightly.20241104.0 - 2024-11-04

    v0.19.1-nightly.20241104.0

  • 0.19.1-nightly.20241101.0 - 2024-11-01

    v0.19.1-nightly.20241101.0

  • 0.19.1-nightly.20241031.0 - 2024-10-31

    v0.19.1-nightly.20241031.0

  • 0.19.1-nightly.20241030.0 - 2024-10-30

    v0.19.1-nightly.20241030.0

  • 0.19.1-nightly.20241029.0 - 2024-10-29

    v0.19.1-nightly.20241029.0

  • 0.19.0 - 2024-10-28

    Highlights

    Highlights since v0.18.0

    A11y:

    • 🆕 aria-errormessage and aria-invalid support
      #6745
      #6751

    Clipboard:

    • 🆕 Trust HTML for rich text clipboard
      #6755

    Markdown:

    • 🆕 Add ability to hook into the import process for multiline element transformers
      #6682

    Code:

    • ✅ Fix: Add global type declarations for Prism
      #6736

    Export:

    • ✅ Fix: Preserve indentation when serializing to and from HTML
      #6693

    List:

    • ✅ Fix: Retain indentation when list format is removed and reapplied
      #6684

    Link:

    • 🆕 add attributes in LinkPlugin
      #6760

    Selection:

    • ✅ Fix: Insertion into inline ElementNode should not crash
      #6703

    • ✅ Fix: lines were being deleted with deleteLine
      #6719

    Text:

    • ✅ Fix TextNode in token mode should not be split by removeText
      #6690

    Collab:

    • ✅ Fix missing setLocalStateField method to ProviderAwareness type
      #6683

    • ✅ Fix: preserve custom fields in Lexical-Yjs sync
      #6724

    Table:

    • 🆕 Support backward selection in rows deletion
      #6680

    • ✅ Fix: Style buttons in toolbar respect table selection
      #6678

    • ✅ Fix Table formatting when no TextNodes present
      #6675

    • ✅ Fix: colWidths not imported from DOM for TableNode
      #6731

    • ✅ Fix: Shift+down selects an extra subsequent element for Table selection
      #6679

    • 🆕 Inserted node returned from $insertTableRow__EXPERIMENTAL and $insertTableColumn__EXPERIMENTAL
      #6741

    • ✅ Fix calling split on undefined error
      #6746

    What's Changed

    • v0.18.0 by @ potatowagon in #6676
    • Support backward selection in rows deletion by @ fantactuka in #6680
    • [lexical-table][lexical-playground] Bug Fix: Make style buttons in toolbar respect table selection by @ KatsiarynaDzibrova in #6678
    • [lexical] Bug Fix: Fix Table formatting when no TextNodes present by @ KatsiarynaDzibrova in #6675
    • [lexical-yjs] Bug Fix: Add missing setLocalStateField method to ProviderAwareness type by @ collierrgbsitisfise in #6683
    • [lexical] Bug Fix: TextNode in token mode should not be split by removeText by @ etrepum in #6690
    • [lexical-playground] 3 Bug Fixes, 1 UX Improvement: All Regarding Excalidraw Node by @ neysanfoo in #6666
    • [lexical-playground] Bug Fix: toolbar font size input keyboard accessibility by @ rilrom in #6695
    • [lexical-playground] Bug Fix: Track Resizing Actions for Excalidraw in History Stack by @ neysanfoo in #6696
    • [lexical] Bug Fix: Insertion into inline ElementNode should not crash by @ etrepum in #6703
    • [lexical][lexical-list] Bug Fix: Retain indentation when list format is removed and reapplied by @ SeaBa55 in #6684
    • [lexical][lexical-list][lexical-rich-text]: Fix: Preserve indentation when serializing to and from HTML by @ GermanJablo in #6693
    • fix: preserve custom fields in Lexical-Yjs sync by @ collierrgbsitisfise in #6724
    • [lexical-playground] Remove unused command by @ ivailop7 in #6726
    • [lexical-playground] Bug Fix: match toolbar font size input with the rest of toolbar items in Read-Only mode by @ bedre7 in #6698
    • Chore: add workflow to auto close stale pr based on label by @ potatowagon in #6732
    • [lexical-table] Bug Fix: colWidths not imported from DOM for TableNode by @ cwstra in #6731
    • [lexical] Bug Fix: lines were being deleted with deleteLine by @ taro-shono in #6719
    • [lexical-playground] Table Hover Actions Layout Fixes by @ ivailop7 in #6725
    • [*] Chore: Disable react-beta test job for now by @ etrepum in #6738
    • [lexical-code] Bug Fix: Add global type declarations for Prism by @ etrepum in #6736
    • [lexical-playground] Bug Fix: Disable image and inline focusing, adding caption and editing in read-only mode by @ neysanfoo in #6705
    • [lexical-markdown] Feature: add ability to hook into the import process for multiline element transformers by @ AlessioGr in #6682
    • [lexical-playground] Bug Fix: Disable equation editing in read-only mode by @ neysanfoo in #6707
    • Bug Fix: Shift+down selects an extra subsequent element for Table selection by @ KatsiarynaDzibrova in #6679
    • [lexical-table] Return inserted node from $insertTableRow__EXPERIMENTAL and $insertTableColumn__EXPERIMENTAL by @ amanharwara in #6741
    • [lexical-react] Feature: Add aria-errormessage and aria-invalid support to LexicalContentEditable by @ ejhammond in #6745
    • Add ariaErrorMessage and ariaInvalid to Flow type by @ ejhammond in #6751
    • [lexical-table] [lexical-selection] Try to fix calling split on undefined by @ ivailop7 in #6746
    • [lexical-playground] Bug Fix: Disable table hover actions in read-only mode by @ neysanfoo in #6706
    • [lexical-playground] Bug Fix: Disable editing of Excalidraw Component in Read-Only Mode by @ neysanfoo in #6704
    • Trust HTML for rich text clipboard by @ zurfyx in #6755
    • [lexical-react] replace abstract component by @ potatowagon in #6752
    • [lexical-react] Feature: add attributes in LinkPlugin by @ taro-shono in #6760
    • [lexical] Add missing commands to Lexical.js.flow by @ potatowagon in #6769
    • update dependencies to address security vulnerabilities by @ potatowagon in #6764

    New Contributors

    Full Changelog: v0.18.0...v0.19.0

  • 0.18.1-nightly.20241028.0 - 2024-10-28
  • 0.18.1-nightly.20241025.0 - 2024-10-25
  • 0.18.1-nightly.20241024.0 - 2024-10-24
  • 0.18.1-nightly.20241023.0 - 2024-10-23
  • 0.18.1-nightly.20241022.0 - 2024-10-22
  • 0.18.1-nightly.20241021.0 - 2024-10-21
  • 0.18.1-nightly.20241018.0 - 2024-10-18
  • 0.18.1-nightly.20241017.0 - 2024-10-17
  • 0.18.1-nightly.20241016.0 - 2024-10-16
  • 0.18.1-nightly.20241015.0 - 2024-10-15
  • 0.18.1-nightly.20241014.0 - 2024-10-14
  • 0.18.1-nightly.20241011.0 - 2024-10-11
  • 0.18.1-nightly.20241010.0 - 2024-10-10
  • 0.18.1-nightly.20241009.0 - 2024-10-09
  • 0.18.1-nightly.20241008.0 - 2024-10-08
  • 0.18.1-nightly.20241007.0 - 2024-10-07
  • 0.18.1-nightly.20241004.0 - 2024-10-04
  • 0.18.1-nightly.20241003.0 - 2024-10-03
  • 0.18.1-nightly.20241002.0 - 2024-10-02
  • 0.18.1-nightly.20241001.0 - 2024-10-01
  • 0.18.1-nightly.20240930.0 - 2024-09-30
  • 0.18.1-nightly.20240927.0 - 2024-09-27
  • 0.18.0 - 2024-09-26
from @lexical/html GitHub release notes

Important

  • Check the changes in this PR to ensure they won't cause issues with your project.
  • This PR was automatically created by Snyk using the credentials of a real user.

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

Snyk has created this PR to upgrade @lexical/html from 0.18.0 to 0.20.0.

See this package in npm:
@lexical/html

See this project in Snyk:
https://app.snyk.io/org/mtes-mct/project/16b503c1-eb95-4477-b196-19e44c293808?utm_source=github&utm_medium=referral&page=upgrade-pr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants