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

fix(deps): update tiptap monorepo to v2.6.4 #15

Open
wants to merge 300 commits into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jul 22, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@tiptap/core (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-blockquote (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-bold (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-bullet-list (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-character-count (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-code (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-code-block (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-code-block-lowlight (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-color (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-document (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-dropcursor (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-hard-break (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-heading (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-highlight (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-history (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-horizontal-rule (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-image (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-italic (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-link (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-list-item (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-list-keymap (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-ordered-list (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-paragraph (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-placeholder (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-strike (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-subscript (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-superscript (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-table (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-table-row (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-task-item (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-task-list (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-text (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-text-align (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-text-style (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/extension-underline (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/pm (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/suggestion (source) 2.5.1 -> 2.6.4 age adoption passing confidence
@tiptap/vue-3 (source) 2.5.1 -> 2.6.4 age adoption passing confidence

Release Notes

ueberdosis/tiptap (@​tiptap/core)

v2.6.4

Compare Source

Patch Changes

v2.6.3

Compare Source

Patch Changes

v2.6.2

Compare Source

Patch Changes

v2.6.1

Compare Source

Patch Changes

v2.6.0

Compare Source

Minor Changes
  • 86a8553: Add getContent to nodePasteRules to allow specifying inner content to a created node

  • 222f2ac: Add the ability to add new attributes to a splitted list item

  • e31673d: This PR significantly improves the performance of React NodeViews in a couple of ways:

    • It now uses useSyncExternalStore to synchronize changes between React & the editor instance
    • It dramatically reduces the number of re-renders by re-using instances of React portals that have already been initialized and unaffected by the change made in the editor

    We were seeing performance problems with React NodeViews because a change to one of them would cause a re-render to all instances of node views. For an application that heavily relies on node views in React, this was quite expensive.
    This should dramatically cut down on the number of instances that have to re-render, and, making each of those re-renders much less costly.

Patch Changes

v2.5.9

Compare Source

Patch Changes
  • 84ebd51: Fix change criteria for isNodeEmpty to resolve #​5415
  • 0ec0af6: fix(core): findDuplicates - use Array.from when converting Set
  • ae0254d: Add ignoreWhitespace option to isNodeEmpty to ignore any whitespace and hardbreaks in a node to check for emptiness
  • efb27fa: This fixes a discrepency between getMarksBetween and isActive(markName) where the position used for getMarksBetween was off by one

v2.5.8

Compare Source

Patch Changes

v2.5.7

Compare Source

Patch Changes
  • b012471: This addresses an issue with isNodeEmpty function where it was also comparing node attributes and finding mismatches on actually empty nodes. This helps placeholders find empty content correctly
  • cc3497e: Fixes a bug where if enableContentCheck was true, inserting content as JSON nodes would fail. This was because the node that was being created technically had a different schema than the content being inserted, so it would fail to generate the correct content value

v2.5.6

Compare Source

Patch Changes
  • 618bca9: Adjust the splitBlock command to return false when it was unsuccessful.
  • 35682d1: This fixes a bug with the placeholder extension where a heading level other than the default was not considered empty, when comparing node contents, we need to consider that the node attributes are carried over for a fair comparison of content instead of attribute values
  • 2104f0f: Add a check beforecreateNodeViews so that view.setProps is not called when the view has already been destroyed
  • Updated dependencies [b5c1b32]

v2.5.5

Compare Source

Patch Changes
  • 4cca382: Make sure that atoms are used in-full without cutting the content. Node size for atoms is 1 which causes text to be cut unexpectedly.
  • 3b67e8a: This changes the typing to not declare types on all HTMLElements, just a local one with the editor instance attached

v2.5.4

Compare Source

Patch Changes
  • dd7f9ac: There was an issue with the cjs bundling of packages and default exports, now we resolve default exports in legacy compatible way
  • Updated dependencies [dd7f9ac]

v2.5.3

Compare Source

Patch Changes

v2.5.2

Compare Source

Patch Changes
  • 07f4c03: There was a bug where doing a .configure on an extension, node or mark would overwrite the extensions options instead of being merged with the default options.
ueberdosis/tiptap (@​tiptap/extension-blockquote)

v2.6.4

Compare Source

Patch Changes

v2.6.3

Compare Source

Patch Changes

v2.6.2

Compare Source

Patch Changes

v2.6.1

Compare Source

Patch Changes

v2.6.0

Compare Source

Patch Changes

v2.5.9

Compare Source

Patch Changes

v2.5.8

Compare Source

Patch Changes

v2.5.7

Compare Source

Patch Changes

v2.5.6

Compare Source

Patch Changes

v2.5.5

Compare Source

Patch Changes

v2.5.4

Compare Source

Patch Changes
  • dd7f9ac: There was an issue with the cjs bundling of packages and default exports, now we resolve default exports in legacy compatible way
  • Updated dependencies [dd7f9ac]

v2.5.3

Compare Source

Patch Changes

v2.5.2

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-bold)

v2.6.4

Compare Source

Patch Changes

v2.6.3

Compare Source

Patch Changes

v2.6.2

Compare Source

Patch Changes

v2.6.1

Compare Source

Patch Changes

v2.6.0

Compare Source

Patch Changes

v2.5.9

Compare Source

Patch Changes

v2.5.8

Compare Source

Patch Changes

v2.5.7

Compare Source

Patch Changes

v2.5.6

Compare Source

Patch Changes

v2.5.5

Compare Source

Patch Changes

v2.5.4

Compare Source

Patch Changes
  • dd7f9ac: There was an issue with the cjs bundling of packages and default exports, now we resolve default exports in legacy compatible way
  • Updated dependencies [dd7f9ac]

v2.5.3

Compare Source

Patch Changes

v2.5.2

Compare Source

Patch Changes
ueberdosis/tiptap (@​tiptap/extension-bullet-list)

v2.6.4

Compare Source

Patch Changes

v2.6.3

Compare Source

Patch Changes

v2.6.2

Compare Source

Patch Changes

v2.6.1

Compare Source

Patch Changes

v2.6.0

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

ruibaby and others added 30 commits March 29, 2023 17:22
#### What type of PR is this?

/kind improvement
/area core

#### What this PR does / why we need it:

After enabling this mapper feature, we could pass a enum value with any case in request body(JSON format).

See https://github.com/FasterXML/jackson-databind/blob/39fdb63607a0e7a6dbf9d6be84fe7e380e661dcb/src/test/java/com/fasterxml/jackson/databind/deser/enums/EnumDeserializationTest.java#L22 for more.

#### Does this PR introduce a user-facing change?

```release-note
None
```
@renovate renovate bot changed the title fix(deps): update tiptap monorepo to v2.5.4 fix(deps): update tiptap monorepo to v2.5.5 Jul 22, 2024
@renovate renovate bot changed the title fix(deps): update tiptap monorepo to v2.5.5 fix(deps): update tiptap monorepo to v2.5.6 Jul 24, 2024
@renovate renovate bot changed the title fix(deps): update tiptap monorepo to v2.5.6 fix(deps): update tiptap monorepo to v2.5.7 Jul 26, 2024
@renovate renovate bot changed the title fix(deps): update tiptap monorepo to v2.5.7 fix(deps): update tiptap monorepo to v2.5.8 Jul 30, 2024
@renovate renovate bot changed the title fix(deps): update tiptap monorepo to v2.5.8 fix(deps): update tiptap monorepo to v2.5.9 Aug 6, 2024
@renovate renovate bot changed the title fix(deps): update tiptap monorepo to v2.5.9 fix(deps): update tiptap monorepo to v2.6.0 Aug 13, 2024
@renovate renovate bot changed the title fix(deps): update tiptap monorepo to v2.6.0 fix(deps): update tiptap monorepo to v2.6.1 Aug 13, 2024
@renovate renovate bot changed the title fix(deps): update tiptap monorepo to v2.6.1 fix(deps): update tiptap monorepo to v2.6.2 Aug 13, 2024
@renovate renovate bot changed the title fix(deps): update tiptap monorepo to v2.6.2 fix(deps): update tiptap monorepo to v2.6.3 Aug 14, 2024
@renovate renovate bot changed the title fix(deps): update tiptap monorepo to v2.6.3 fix(deps): update tiptap monorepo to v2.6.4 Aug 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants