Skip to content

Bump @lexical/utils from 0.35.0 to 0.44.0 - #67

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/lexical/utils-0.44.0
Closed

Bump @lexical/utils from 0.35.0 to 0.44.0#67
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/lexical/utils-0.44.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 19, 2026

Copy link
Copy Markdown
Contributor

Bumps @lexical/utils from 0.35.0 to 0.44.0.

Release notes

Sourced from @​lexical/utils's releases.

v0.44.0 is a monthly release with a few minor breaking changes (deprecations), a notable new experimental DOMRenderExtension API for overriding DOM create/update/export, easier to use priority levels for registering commands, a pagination demonstration and convenient html import/export in the playground, better drag and drop support, automatic inline of CSS for HTML import, consistent CSP-safe style updates, and a wide range of bug fixes and other new features.

Breaking Changes

Deprecation of @lexical/offset OffsetView (#8350)

OffsetView / $createOffsetView never worked correctly, has no documentation, no tests, and no usage in the monorepo. It has been deprecated. The only function still in use, $createChildrenArray, is now exported from lexical itself — import it from lexical rather than @lexical/offset going forward.

Code block escape logic moved to CodeExtension (#8360)

The "press Enter three times to exit a CodeNode" logic has moved from CodeNode.insertNewAfter to a KEY_ENTER_COMMAND listener registered by CodeExtension. This fixes paste-with-blank-lines incorrectly escaping the code block. Using CodeNode without CodeExtension is now deprecated — a backwards-compatible shim with a dev-mode warning is in place, but the node is expected to stop working without CodeExtension in a future version.

New APIs

lexical / @lexical/html — Extensible DOM rendering and export (experimental) (#8353, #8368)

A new DOMRenderExtension (in @lexical/html) and EditorDOMRenderConfig (in lexical) parameterize $createDOM, $updateDOM, $exportDOM, $getDOMSlot, $shouldInclude, and $shouldExclude so that node rendering and export can be overridden via composable middleware. Use domOverride(nodes, config) to target one or more node classes, predicates, or '*' (wildcard), and call $next() from inside an override to delegate to the underlying implementation.

A new $decorateDOM(nextNode, prevNode, dom, editor) hook runs after a node is created/updated and after its children have been reconciled, intended for in-place attribute or DOM tweaks. Override ordering is a well-defined topological sort: wildcards highest, then predicates, then class hierarchy (subclass before superclass), with extension dependency order and registration order as tiebreakers.

Render-context APIs are also exposed: $withRenderContext, $getRenderContextValue, contextValue, contextUpdater, RenderContextRoot, RenderContextExport. New traversal helpers $generateDOMFromNodes and $generateDOMFromRoot populate a container using the configured render config. CreateEditorArgs.dom accepts a Partial<EditorDOMRenderConfig> to override rendering at editor creation. $isLexicalNode is also exported from lexical.

lexicalCOMMAND_PRIORITY_BEFORE_* priorities (#8375)

Five new command priorities — COMMAND_PRIORITY_BEFORE_EDITOR, _BEFORE_LOW, _BEFORE_NORMAL, _BEFORE_HIGH, _BEFORE_CRITICAL — register listeners that run most-recently-registered first, in front of the existing first-registered-first listeners at the same priority. Ordering is: highest priority first, then all BEFORE_* listeners (LIFO), then legacy listeners (FIFO). The new priorities are almost always what you want for new code; legacy priorities are unchanged so this is purely additive. See the new "Priorities and ordering" docs.

@lexical/code-prismCodePrismExtension & @lexical/code-shikiCodeShikiExtension (#8346)

Both packages now export proper extensions (CodePrismExtension, CodeShikiExtension) with {disabled, tokenizer} signal-based configuration that can be toggled and hot-swapped at runtime. The legacy CodeHighlighterShikiExtension is kept as a deprecated backwards-compatible shim.

@lexical/link / @lexical/react — Custom AutoLink punctuation (#8378)

AutoLinkExtension, registerAutoLink, and LexicalAutoLinkPlugin now accept an optional punctuation setting to override the default boundary characters (e.g. to allow colon-delimited matches without breaking URLs that contain colons).

@lexical/utilsremoveEmptyDestination for split-at-caret (#8384)

SplitAtPointCaretNextOptions (used by $insertNodeToNearestRootAtCaret and $splitAtPointCaretNext) gains a removeEmptyDestination option for finer control over whether an empty destination is replaced entirely.

@lexical/clipboard — Shared drop handlers (#8373)

New $handleRichTextDrop and $handlePlainTextDrop helpers implement Lexical-aware text drag-and-drop, including same-block drags, cross-TextNode and cross-block drops, DecoratorNode preservation, and cross-editor drags. registerRichText and registerPlainText now wire these by default.

Stable APIs (no longer @experimental) (#8354)

@lexical/extension (since v0.36.1, Sep 2025) and the NodeState API in lexical (since v0.26.0, Feb 2025) are now formally stable.

Deprecations

  • @lexical/offset OffsetView / $createOffsetView (use $createChildrenArray from lexical) (#8350)
  • @lexical/text $findTextIntersectionFromCharacters — broken, untested, undocumented (#8364)

... (truncated)

Changelog

Sourced from @​lexical/utils's changelog.

v0.44.0 (2026-04-27)

  • lexical Chore Fix uuid dependency vulnerability (#8399) Vishisht Maroria
  • Fix Flow type errors in flow definition files (#8396) Sherry
  • lexical-extension Bug Fix Use maybeFromEditor in getPeerDependencyFromEditor (#8398) Sherry
  • lexical-playground Bug Fix Show floating link editor for single-character links (#8392) mayrang
  • lexical-list Bug Fix Toggle checklist items on mobile tap (#8390) jWA
  • lexical-playground Refactor Use floating-uireact for FloatingLinkEditorPlugin positioning (#8388) mayrang
  • build(deps) bump excalidrawexcalidraw from 0.18.0 to 0.18.1 (#8389) dependabotbot
  • lexical-react Bug Fix Fall back to root node in NodeContextMenuPlugin when click target has no Lexical node (#8385) mayrang
  • lexical-playground Feature Format HTML conversion with prettier (#8386) Bob Ippolito
  • lexical-linklexical-react Feature Allow custom punctuation for AutoLink boundaries (#8378) Agyei Holy
  • lexical-list Bug Fix Merge nested list into parent li during HTML export (#8313) Sathvik Veerapaneni
  • lexical-clipboardlexical-rich-textlexical-plain-text Bug Fix Drag-and-drop within the same block (#8373) Bob Ippolito
  • lexicallexical-utilslexical-list Bug Fix Clean up and test insertNodeToNearestRootAtCaret edge cases (#8384) Bob Ippolito
  • lexical-htmllexical-playground Feature Implement a well-defined ordering for DOMRenderExtension overrides and add decorateDOM (#8368) Bob Ippolito
  • lexicallexical-code-corelexical-listlexical-tablelexical-yjs Refactor make runtime style updates CSP-safe (#8372) Agyei Holy
  • lexical-list Bug Fix Ensure that ListItemNode always has a ListItem parent (#8382) Bob Ippolito
  • lexical-markdown Bug Fix Code spans take precedence over inline formatting in shortcuts (#8381) Sherry
  • lexical-playground Feature HTML conversion button (#8379) Sergey Gorbachev
  • address follow-redirects dependency vulnerability (#8380) vishisht31
  • lexical-markdown Bug Fix Escape ordered-list pattern in bullet list item export (#8311) Sathvik Veerapaneni
  • lexical Feature COMMANDPRIORITYBEFORE priorities for last-registered-called-first order (#8375) Bob Ippolito
  • lexical-react Bug Fix Dont auto-dispose editor from LexicalExtensionEditorComposer (#8377) Bob Ippolito
  • lexical-website Bug Fix Fix type checking for lexical-website package (#8371) Bob Ippolito
  • lexical-website Bug Fix Fix tailwindcss docusaurus config regression (#8369) Bob Ippolito
  • lexicallexical-html Feature Extensible DOM createupdateexport (#8353) Bob Ippolito
  • lexical-react Bug Fix Add yjs as optional peer dependency for Yarn PnP compatibility (#8366) Kim Jong Hyen
  • lexical-markdown Bug Fix Add undo history entry for markdown shortcut transforms (#8365) Seongyu Kim
  • lexical-text Chore Add deprecation notice to findTextIntersectionFromCharacters (#8364) Bob Ippolito
  • Chore Refactor CommonJS scripts to ESM modules (#8355) Bob Ippolito
  • Breaking Changelexical-code Bug Fix move code block escape logic to KEYENTERCOMMAND listener (#8360) Anika
  • lexicallexical-playground Fix Use the fallback matching for number keys in keyboard shortcuts (#8361) Sergey Gorbachev
  • address simple-git dependency vulnerability (#8358) Sherry
  • lexical Bug Fix Workaround for synchronous firefox focus edge case behavior (#8356) Bob Ippolito
  • Chore Cache build playwright before running e2e tests (#8357) Bob Ippolito
  • lexical Bug Fix Resolve Firefox arrow key navigation issue in collapsible nodes (#8348) (#8349) Mohmed Ikram
  • lexicallexical-extension Chore Remove experimental flag from Extension and NodeState APIs (#8354) Bob Ippolito
  • Breaking Changelexical-offsetlexical Chore Deprecate the brokenundocumenteduntested OffsetView and export createChildrenArray from lexical (#8350) Bob Ippolito
  • build(deps) bump pnpmaction-setup from 4 to 6 in the github-actions group across 1 directory (#8335) dependabotbot
  • lexical-htmllexical-table Feature Inline CSS from style tags (#8326) Tom Sarduy
  • lexical-playground Feature Add PagesExtension (#8322) Ibrahim El-bastawisi
  • build(deps) bump zustand from 4.5.7 to 5.0.12 (#8340) dependabotbot
  • build(deps-dev) bump the dev-dependencies group across 1 directory with 42 updates (#8347) dependabotbot
  • lexical-code-prismlexical-code-shikilexical-playground Feature Add CodePrismExtension, CodeShikiExtension, and migrate playground plugins to extensions (#8346) Bob Ippolito
  • Chore Encourage agents to use extensions and config in AGENTS.md (#8341) Bob Ippolito
  • build(deps) bump docusaurus from 3.9.2 to 3.10.0, update typedoc, react (#8339) dependabotbot
  • build(deps) bump y-websocket from 1.5.4 to 3.0.0 (#8343) dependabotbot
  • build(deps) bump semver from 7.7.2 to 7.7.4 (#8338) dependabotbot
  • build(deps) bump docusaurusfaster from 3.9.2 to 3.10.0 (#8342) dependabotbot

... (truncated)

Commits
  • 2e0f8fa v0.44.0
  • 00fabd2 [lexical-website] Set prettier arrowParens to avoid (#8397)
  • 5d1bc33 [lexical-list] Bug Fix: Merge nested list into parent <li> during HTML export...
  • ca2aa31 [lexical][lexical-utils][lexical-list] Bug Fix: Clean up and test $insertNode...
  • 1ca42f1 [lexical][lexical-code-core][lexical-list][lexical-table][lexical-yjs] Refact...
  • 9531ce3 [lexical][lexical-html] Feature: Extensible DOM create/update/export (#8353)
  • 4e3085b v0.43.0 (#8319)
  • 7ea3e02 [*] Fix: Replace legacy Flow syntax with modern equivalents in .flow … (#8315)
  • 3ddfc75 [lexical] Chore: Upgrade ESLint 8 to ESLint 10 with flat configuration (#8287)
  • 35ce72a [lexical-utils][lexical-extension][*] Bug Fix: Fix $insertNodeIntoLeaf edge c...
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 19, 2026
@netlify

netlify Bot commented May 19, 2026

Copy link
Copy Markdown

Deploy Preview for intodev ready!

Name Link
🔨 Latest commit 5b1fd27
🔍 Latest deploy log https://app.netlify.com/projects/intodev/deploys/6a15abce3738d80008d83be4
😎 Deploy Preview https://deploy-preview-67--intodev.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@coderabbitai

coderabbitai Bot commented May 19, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 5525ebb7-6438-488b-b50d-991ebbf3688d

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

The @lexical/utils dependency in the mdx-editor package is updated from version ^0.35.0 to ^0.44.0. This permits the use of Lexical utils releases through version 0.44.x, representing a minor version bump spanning nine minor version increments.

Changes

Lexical Utils Dependency Upgrade

Layer / File(s) Summary
Lexical Utils version bump
packages/mdx-editor/package.json
The @lexical/utils dependency is updated from ^0.35.0 to ^0.44.0 in the dependencies section.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

🐰 A hop and a bump, the lexicons fly,
From thirty-five up to forty-four high!
Utils grow stronger with each minor leap,
Version bounds widen—a promise we keep. ✨

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the main change: a dependency version bump of @lexical/utils from 0.35.0 to 0.44.0.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch dependabot/npm_and_yarn/lexical/utils-0.44.0

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@packages/mdx-editor/package.json`:
- Line 43: The package.json currently pins "`@lexical/utils`" to "^0.44.0" which
conflicts with the other Lexical deps ("`@lexical/selection`", "lexical", and
other "`@lexical/`*" entries) at "^0.35.0"; either change "`@lexical/utils`" back to
"^0.35.0" to match the existing ecosystem or, if you intend to upgrade, update
all Lexical packages (e.g., "lexical", "`@lexical/selection`", "`@lexical/utils`"
and any other "`@lexical/`*" entries) to the same version "^0.44.0" so they stay
consistent in package.json and avoid an unresolvable dependency graph. Ensure
the selected approach updates every referenced symbol ("`@lexical/utils`",
"`@lexical/selection`", "lexical", etc.) consistently in package.json and then
regenerate the lockfile.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: b6672588-b2ed-4164-a577-7982d6c72208

📥 Commits

Reviewing files that changed from the base of the PR and between a1aafc9 and 5fbc5aa.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (1)
  • packages/mdx-editor/package.json

"@lexical/rich-text": "^0.35.0",
"@lexical/selection": "^0.35.0",
"@lexical/utils": "^0.35.0",
"@lexical/utils": "^0.44.0",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major | 🏗️ Heavy lift

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Check peer dependencies of `@lexical/utils`@0.44.0 and verify version compatibility

echo "=== Checking `@lexical/utils`@0.44.0 peer dependencies ==="
npm view `@lexical/utils`@0.44.0 peerDependencies

echo -e "\n=== Checking if other `@lexical` packages have v0.44.0 available ==="
npm view `@lexical/clipboard`@0.44.0 version 2>/dev/null && echo "`@lexical/clipboard`@0.44.0 exists" || echo "`@lexical/clipboard`@0.44.0 NOT FOUND"
npm view `@lexical/link`@0.44.0 version 2>/dev/null && echo "`@lexical/link`@0.44.0 exists" || echo "`@lexical/link`@0.44.0 NOT FOUND"
npm view `@lexical/list`@0.44.0 version 2>/dev/null && echo "`@lexical/list`@0.44.0 exists" || echo "`@lexical/list`@0.44.0 NOT FOUND"
npm view lexical@0.44.0 version 2>/dev/null && echo "lexical@0.44.0 exists" || echo "lexical@0.44.0 NOT FOUND"

echo -e "\n=== Checking current `@lexical/utils`@0.35.0 peer dependencies ==="
npm view `@lexical/utils`@0.35.0 peerDependencies

Repository: 012e/thesis

Length of output: 385


🏁 Script executed:

#!/bin/bash

# Get full package info for `@lexical/utils`@0.44.0
echo "=== Full package info for `@lexical/utils`@0.44.0 ==="
npm view `@lexical/utils`@0.44.0 --json | jq '.peerDependencies // "No peerDependencies field"'

echo -e "\n=== Full package info for `@lexical/utils`@0.35.0 ==="
npm view `@lexical/utils`@0.35.0 --json | jq '.peerDependencies // "No peerDependencies field"'

echo -e "\n=== Check `@lexical/clipboard`@0.35.0 info ==="
npm view `@lexical/clipboard`@0.35.0 --json | jq '.version, .peerDependencies // "No peerDependencies"'

echo -e "\n=== Check lexical@0.44.0 and lexical@0.35.0 versions ==="
npm view lexical@0.44.0 version
npm view lexical@0.35.0 version

Repository: 012e/thesis

Length of output: 365


🏁 Script executed:

#!/bin/bash

# Find files that import `@lexical/utils`
echo "=== Files importing `@lexical/utils` ==="
rg "`@lexical/utils`" --type ts --type tsx --type js --type jsx -l

echo -e "\n=== Specific imports of `@lexical/utils` ==="
rg "from\s+['\"]`@lexical/utils`['\"]|import\s+.*from\s+['\"]`@lexical/utils`" --type ts --type tsx --type js --type jsx -A 2 -B 2

Repository: 012e/thesis

Length of output: 212


🏁 Script executed:

#!/bin/bash

# Search for `@lexical/utils` usage more broadly
echo "=== Searching for `@lexical/utils` imports ==="
rg "`@lexical/utils`" --max-count 20

echo -e "\n=== List files in packages/mdx-editor ==="
ls -la packages/mdx-editor/ | head -20

echo -e "\n=== Check if there's a src directory ==="
find packages/mdx-editor -type d -name "src" -o -name "lib" -o -name "dist"

Repository: 012e/thesis

Length of output: 2557


🏁 Script executed:

#!/bin/bash

echo "=== Check package.json `@lexical/`* versions ==="
grep -A 25 '"`@lexical/`' packages/mdx-editor/package.json | grep "`@lexical`"

echo -e "\n=== Check pnpm-lock.yaml for `@lexical/utils` versions ==="
grep -B 2 -A 5 "`@lexical/utils`@0.44.0" pnpm-lock.yaml | head -30

echo -e "\n=== Check who requires `@lexical/utils` in pnpm-lock.yaml ==="
grep -B 10 "`@lexical/utils`@0.35.0" pnpm-lock.yaml | grep -E "packages/mdx-editor|dependencies" | head -20

Repository: 012e/thesis

Length of output: 1190


🏁 Script executed:

#!/bin/bash

echo "=== Complete dependencies of `@lexical/utils`@0.44.0 ==="
rg -A 10 "'`@lexical/utils`@0.44.0':" pnpm-lock.yaml | grep -E "dependencies:|`@lexical`|lexical"

echo -e "\n=== Check `@lexical/selection`@0.44.0 dependencies ==="
rg -A 10 "'`@lexical/selection`@0.44.0':" pnpm-lock.yaml | grep -E "dependencies:|lexical" | head -10

echo -e "\n=== Verify lexical@0.44.0 exists in lock file ==="
grep "'lexical@0.44.0'" pnpm-lock.yaml

Repository: 012e/thesis

Length of output: 776


🏁 Script executed:

#!/bin/bash

echo "=== Check if lexical 0.44.0 or 0.35.0 entries exist in lock file ==="
grep -c "^  'lexical@" pnpm-lock.yaml

echo -e "\n=== Show all lexical version entries ==="
rg "^  'lexical@" pnpm-lock.yaml

echo -e "\n=== Show pnpm-lock.yaml format at key location ==="
rg -A 3 "packages/mdx-editor" pnpm-lock.yaml | head -20

Repository: 012e/thesis

Length of output: 481


@lexical/utils@0.44.0 requires newer versions of other Lexical packages that conflict with your current specifications.

Updating only @lexical/utils to ^0.44.0 creates an unresolvable dependency conflict. The npm registry shows that @lexical/utils@0.44.0 has direct dependencies on:

  • @lexical/selection@0.44.0
  • lexical@0.44.0

However, your package.json specifies @lexical/selection@^0.35.0 and lexical@^0.35.0 (along with other @lexical/* packages at ^0.35.0), which conflicts with the requirements of @lexical/utils@0.44.0. This will cause package resolution to fail or result in an inconsistent lock file.

To resolve this, either:

  1. Update all @lexical/* packages and lexical to ^0.44.0 together, or
  2. Keep @lexical/utils at ^0.35.0 to maintain consistency with the rest of the Lexical ecosystem
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/mdx-editor/package.json` at line 43, The package.json currently pins
"`@lexical/utils`" to "^0.44.0" which conflicts with the other Lexical deps
("`@lexical/selection`", "lexical", and other "`@lexical/`*" entries) at "^0.35.0";
either change "`@lexical/utils`" back to "^0.35.0" to match the existing ecosystem
or, if you intend to upgrade, update all Lexical packages (e.g., "lexical",
"`@lexical/selection`", "`@lexical/utils`" and any other "`@lexical/`*" entries) to
the same version "^0.44.0" so they stay consistent in package.json and avoid an
unresolvable dependency graph. Ensure the selected approach updates every
referenced symbol ("`@lexical/utils`", "`@lexical/selection`", "lexical", etc.)
consistently in package.json and then regenerate the lockfile.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/lexical/utils-0.44.0 branch from 5fbc5aa to 423bd5f Compare May 23, 2026 08:51
Bumps [@lexical/utils](https://github.com/facebook/lexical/tree/HEAD/packages/lexical-utils) from 0.35.0 to 0.44.0.
- [Release notes](https://github.com/facebook/lexical/releases)
- [Changelog](https://github.com/facebook/lexical/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/lexical/commits/v0.44.0/packages/lexical-utils)

---
updated-dependencies:
- dependency-name: "@lexical/utils"
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/lexical/utils-0.44.0 branch from 423bd5f to 5b1fd27 Compare May 26, 2026 14:18
@dependabot @github

dependabot Bot commented on behalf of github Jun 3, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #96.

@dependabot dependabot Bot closed this Jun 3, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/lexical/utils-0.44.0 branch June 3, 2026 23:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants