fix(deps): update prod minor+patch - #102
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/prod-minor+patch
branch
11 times, most recently
from
August 12, 2026 21:38
6c5908c to
2581180
Compare
renovate
Bot
force-pushed
the
renovate/prod-minor+patch
branch
6 times, most recently
from
August 20, 2026 19:03
9ab6d99 to
2873321
Compare
renovate
Bot
force-pushed
the
renovate/prod-minor+patch
branch
from
August 21, 2026 05:00
2873321 to
6e5bcde
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^2.2.0→^2.3.0^2.2.0→^2.3.0^1.1.21→^1.1.23^1.2.4→^1.2.6^2.3.5→^2.3.7^1.1.21→^1.1.23^2.1.22→^2.1.24^2.1.13→^2.1.15^1.1.21→^1.1.23^2.3.5→^2.3.7^1.1.13→^1.1.15^1.4.5→^1.4.7^1.3.1→^1.3.3^1.3.5→^1.3.7^1.1.19→^1.1.21^1.2.14→^1.2.16^3.28.0→^3.30.1^3.28.0→^3.30.1^3.28.0→^3.30.1^3.28.0→^3.30.1^3.28.0→^3.30.1^3.28.0→^3.30.1^11.11.1→^11.12.0^6.1.5→^6.1.7^2.4.0→^2.5.0^1.26.0→^1.31.0^18.0.7→^18.0.103.22.0→3.25.0^3.21.0→^3.22.0^1.42.1→^1.42.2^5.1.0→^5.1.1^3.6.0→^3.6.2^4.18.11→^4.18.12^2.17.6→^2.17.7^2.0.7→^2.0.8^8.21.1→^8.21.3Release Notes
paulmillr/noble-curves (@noble/curves)
v2.3.0Compare Source
Security & constant-timeness
X25519 hardening
It was possible to execute a remote timing attack on X25519, across many samples, and learn up to 4.036 bits of long-term private key. Other 247 bits were NOT affected.
The impact: mainly fingerprinting (recognition of key across deployments), NOT key recovery, NOT X25519 breakage. Maintainer was also not able to escalate to co-residency (SMT).
Reported and found by:
geostergiop@aueb.gr)kpatsak@unipi.gr)Performance
ed25519, p256, p384, p521secp256k1.Point.BASE.precompute(8)(likewise for other curves).Misc
Full Changelog: paulmillr/noble-curves@2.2.0...2.3.0
paulmillr/noble-hashes (@noble/hashes)
v2.3.0Compare Source
Improve speed:
Other changes:
Full Changelog: paulmillr/noble-hashes@2.2.0...2.3.0
ueberdosis/tiptap (@tiptap/core)
v3.30.1Compare Source
Patch Changes
abc8828: Added new ProseMirror helpers that check whether a value is a specific ProseMirror type.v3.30.0Compare Source
Minor Changes
0247d39:ListKeymapnow registers aTabshortcut that sinks a top-level textblock into the previous list's last item. Pressing Tab at the start of a paragraph right after a bullet/ordered/task list moves the paragraph inside the last list item. The handler does nothing when the cursor is already inside a list item (sinkListItemkeeps working), when there is no list before the paragraph, when the caret is mid-textblock, or when the selection is not a text selection (for example a gap cursor).@tiptap/corealso exposes a newgetPreviousBlockSibling($pos)helper that returns the block-level sibling before the cursor's textblock, or null at the first child of the block parent.3099eef: New Decorations APIFinally the decorations API is here! Even though Decorations itself are nothing new in ProseMirror, the new API makes it much easier to use them in Tiptap without leaving your extensions.
Decorations change how the document looks without changing the document itself. Highlighting search results, marking spelling mistakes, showing collaborator cursors, putting a drag handle next to every block.
Until now you had to write a ProseMirror plugin by hand for this, keep the decoration set in plugin state, and map it forward on every transaction. Extensions can now declare decorations directly with a new
addDecorations()hook.There are three kinds.
Decoration.Inline()styles a range of text.Decoration.Node()puts attributes on a block's DOM element.Decoration.Widget()renders your own element at a single position.Every extension that declares decorations is collected into one plugin, so several extensions can decorate the same document without fighting over it.
Doing less work on every keystroke
By default decorations are rebuilt whenever the document changes. That is fine for small documents and wasteful for large ones, so there are two ways to narrow it down.
shouldUpdate()skips transactions you do not care about. If your decorations only depend on headings, ignore everything else.update: 'changedRanges'together withcreateInRange()only rescans the blocks that actually changed. On a long document this is the difference between scanning the whole thing on every keystroke and scanning one paragraph.For decorations driven by data outside the editor, like comments loaded from a server, use
update: 'manual'and refresh them yourself witheditor.commands.updateDecorations().React and Vue components as widgets
ReactWidgetRendererandVueWidgetRendererrender a real component into a widget decoration, inside your existing app context. Providers, context and stores work as usual.Widgets take a
key. Reuse the same key and the component instance stays mounted while the document changes around it, so local state such as an open menu, a counter or a half-typed input survives editing. Use a stable id from your own data, not a position or a list index, otherwise the component remounts and loses that state.Widgets also accept the ProseMirror options
side,relaxedSide,stopEventandignoreSelection.Documentation
Patch Changes
51909d3: FixedinsertContent,insertContentAtandsetContentfailing when prosemirror-model is loaded more than once.58a8953]v3.29.2Compare Source
Patch Changes
v3.29.1Compare Source
Patch Changes
ueberdosis/tiptap (@tiptap/extension-emoji)
v3.30.1Compare Source
Patch Changes
abc8828]v3.30.0Compare Source
Patch Changes
0247d39]58a8953]51909d3]3099eef]v3.29.2Compare Source
Patch Changes
v3.29.1Compare Source
Patch Changes
ueberdosis/tiptap (@tiptap/pm)
v3.30.1Compare Source
v3.30.0Compare Source
Patch Changes
58a8953: Fix the./schema-listexport map pointingtypesatdist/schema/, which is not emitted. Tools that read thetypescondition directly could not resolve@tiptap/pm/schema-list.v3.29.2Compare Source
v3.29.1Compare Source
ueberdosis/tiptap (@tiptap/react)
v3.30.1Compare Source
Patch Changes
abc8828]v3.30.0Compare Source
Minor Changes
3099eef: New Decorations APIFinally the decorations API is here! Even though Decorations itself are nothing new in ProseMirror, the new API makes it much easier to use them in Tiptap without leaving your extensions.
Decorations change how the document looks without changing the document itself. Highlighting search results, marking spelling mistakes, showing collaborator cursors, putting a drag handle next to every block.
Until now you had to write a ProseMirror plugin by hand for this, keep the decoration set in plugin state, and map it forward on every transaction. Extensions can now declare decorations directly with a new
addDecorations()hook.There are three kinds.
Decoration.Inline()styles a range of text.Decoration.Node()puts attributes on a block's DOM element.Decoration.Widget()renders your own element at a single position.Every extension that declares decorations is collected into one plugin, so several extensions can decorate the same document without fighting over it.
Doing less work on every keystroke
By default decorations are rebuilt whenever the document changes. That is fine for small documents and wasteful for large ones, so there are two ways to narrow it down.
shouldUpdate()skips transactions you do not care about. If your decorations only depend on headings, ignore everything else.update: 'changedRanges'together withcreateInRange()only rescans the blocks that actually changed. On a long document this is the difference between scanning the whole thing on every keystroke and scanning one paragraph.For decorations driven by data outside the editor, like comments loaded from a server, use
update: 'manual'and refresh them yourself witheditor.commands.updateDecorations().React and Vue components as widgets
ReactWidgetRendererandVueWidgetRendererrender a real component into a widget decoration, inside your existing app context. Providers, context and stores work as usual.Widgets take a
key. Reuse the same key and the component instance stays mounted while the document changes around it, so local state such as an open menu, a counter or a half-typed input survives editing. Use a stable id from your own data, not a position or a list index, otherwise the component remounts and loses that state.Widgets also accept the ProseMirror options
side,relaxedSide,stopEventandignoreSelection.Documentation
Patch Changes
31e176c: React node views no longer show the selected state when the selection covers a position the node view has moved away from.0247d39]58a8953]51909d3]3099eef]v3.29.2Compare Source
Patch Changes
e914605: Fixed the caret jumping back to the previous block when pressing Enter inside a React node view.v3.29.1Compare Source
Patch Changes
6d901e7: Fix caret placement after splitting a block rendered with a React NodeView.ueberdosis/tiptap (@tiptap/starter-kit)
v3.30.1Compare Source
Patch Changes
abc8828]v3.30.0Compare Source
Patch Changes
d18533a: StarterKit now pins its bundled@tiptap/*dependencies to the exact version it was released with, so installing a specific StarterKit version gives you that version's extension set instead of the newest one.0247d39]c296281]ceb0dac]58a8953]4ec64c7]51909d3]3099eef]v3.29.2Compare Source
Patch Changes
v3.29.1Compare Source
Patch Changes
ueberdosis/tiptap (@tiptap/suggestion)
v3.30.1Compare Source
Patch Changes
abc8828]v3.30.0Compare Source
Patch Changes
0247d39]58a8953]51909d3]3099eef]v3.29.2Compare Source
Patch Changes
v3.29.1Compare Source
Patch Changes
highlightjs/highlight.js (highlight.js)
v11.12.0Compare Source
Parser Engine:
New Grammars:
.desktop/ systemd) grammar gg582Core Grammars:
atomic_*type names, not C11 atomic functions, issue #3837 Mark Xian#include, issue #3505 Pabloblockandendblockkeywords Anonymous Maarten3rdparty), issue #4170 Mark Xian//as a regex literal Zain Asif_of an identifier, issue #4258 Sarath Francisunicode-rangevalues Konstantin Baltsatbatchas an alias, issue #4395 [Hashim Khan][]wherein GADT and closed type-family declarations, issue #3753 Konstantin Baltsatselfto built-in variables [Dsaquel][]ktmandktxaliases [DarkMatter-999][]globalkeyword [Nibiri][]***or___thematic break as the start of bold text, issue #3719 [Mayank Gupta][]aiterandanext(3.10),frozendictandsentinel(3.15) [Hugo van Kemenade][]lazy importsyntax from PEP 810 [Peter Bierma][]::as a symbol, issue #4294 [Hashim Khan][]safekeyword [Frances Wingerter][]rawborrow operator in keywords [Shiva Kiran Koninty][]\\and\"char-literal escapes so highlighting doesn't leak, issue #4351 Sarath FrancisDocumentation:
phpandphp-templateZain Asifpwshalias for PowerShell [helpimnotdrowning][]npm i[Proliecan][]Themes:
Build / Tooling:
Mode.keywords[KJyang-0114][]@colors/colorswith ansis [webdiscus][]CONTRIBUTORS
Configuration
📅 Schedule: (in timezone Europe/Lisbon)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.