Update dependency @tiptap/react to v3 #320

Open
bustikiller wants to merge 1 commits from renovate/tiptap-react-3.x into main
Owner

This PR contains the following updates:

Package Type Update Change
@tiptap/react (source) dependencies major ^2.14.0 -> ^3.0.0

Release Notes

ueberdosis/tiptap (@​tiptap/react)

v3.6.1

Compare Source

Patch Changes
  • 6af23ff: Hotfix: Fix a crash in the React package that could occur during mounting/unmounting when the editor wasn't fully initialized. This prevents a runtime error and improves stability.

v3.6.0

Compare Source

Patch Changes

v3.5.3

Compare Source

Patch Changes

v3.5.2

Compare Source

Patch Changes
  • ea9ac95: Tiptap will now correctly insert a React MarkViews' content into the correct element within MarkViewContent component

v3.5.1

Compare Source

Patch Changes
  • f80c848: Add appendTo support to FloatingMenu and pass it through in React/Vue 2/Vue 3 for both BubbleMenu and FloatingMenu to allow fixing clipping/z-index issues.

v3.5.0

Compare Source

Patch Changes

v3.4.6

Compare Source

Patch Changes

v3.4.5

Compare Source

Patch Changes

v3.4.4

Compare Source

Patch Changes

v3.4.3

Compare Source

Patch Changes
  • 915ed65: Add custom positioning support to the BubbleMenu.

    This change adds an opt-in API that allows consumers to fully control how the BubbleMenu is positioned. Instead of relying solely on the internal placement logic, you can now provide a function (for example getPosition) that receives the relevant context (editor instance and menu DOM element) and returns the desired coordinates or positioning style.

  • Updated dependencies [1ea8906]

v3.4.2

Compare Source

Patch Changes

v3.4.1

Compare Source

Patch Changes

v3.4.0

Compare Source

Patch Changes

v3.3.1

Compare Source

Patch Changes

v3.3.0

Compare Source

Patch Changes
  • 5423726: Ensure ReactRenderer.destroy() removes the renderer DOM element when present.

    • When consumers append a ReactRenderer's .element to the DOM (for example many demos append it to document.body), previously calling destroy() removed the portal renderer but left the DOM node in place which could lead to accumulating .react-renderer elements.
    • destroy() now also removes the element from its parent node if present, preventing leaked DOM nodes / React roots.
  • Updated dependencies [5423726]

  • Updated dependencies [5423726]

v3.2.2

Compare Source

Patch Changes

v3.2.1

Patch Changes

v3.2.0

Patch Changes

v3.1.0

Compare Source

Patch Changes

v3.0.9

Compare Source

Patch Changes

v3.0.8

Compare Source

Patch Changes

v3.0.7

Compare Source

Patch Changes

v3.0.6

Compare Source

Patch Changes

v3.0.5

Compare Source

Patch Changes

v3.0.4

Compare Source

Patch Changes

v3.0.3

Compare Source

Patch Changes

v3.0.2

Compare Source

Patch Changes

v3.0.1

Compare Source

Major Changes
  • a92f4a6: We are now building packages with tsup which does not support UMD builds, please repackage if you require UMD builds

  • 7eaa34d: Removed tippy.js and replaced it with Floating UI - a newer, more lightweight and customizable floating element library.

    This change is breaking existing menu implementations and will require a manual migration.

    Affected packages:

    • @tiptap/extension-floating-menu
    • @tiptap/extension-bubble-menu
    • @tiptap/extension-mention
    • @tiptap/suggestion
    • @tiptap/react
    • @tiptap/vue-2
    • @tiptap/vue-3

    Make sure to remove tippyOptions from the FloatingMenu and BubbleMenu components, and replace them with the new options object. Check our documentation to see how to migrate your existing menu implementations.

    You'll also need to install @floating-ui/dom as a peer dependency to your project like this:

    npm install @​floating-ui/dom@^1.6.0
    

    The new options object is compatible with all components that use these extensions.

Minor Changes
  • 0e3207f: Add support for markviews, which allow you to render custom views for marks within the editor. This is useful for rendering custom UI for marks, like a color picker for a text color mark or a link editor for a link mark.

    Here is a plain JS markview example:

    Mark.create({
      // Other options...
      addMarkView() {
        return ({ mark, HTMLAttributes }) => {
          const dom = document.createElement('b')
          const contentDOM = document.createElement('span')
    
          dom.appendChild(contentDOM)
    
          return {
            dom,
            contentDOM,
          }
        }
      },
    })
    

v3.0.0

Compare Source

Patch Changes

v2.26.2

Compare Source


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 is behind base branch, or you tick the rebase/retry checkbox.

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


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@tiptap/react](https://tiptap.dev) ([source](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/react)) | dependencies | major | [`^2.14.0` -> `^3.0.0`](https://renovatebot.com/diffs/npm/@tiptap%2freact/2.26.1/3.6.1) | --- ### Release Notes <details> <summary>ueberdosis/tiptap (@&#8203;tiptap/react)</summary> ### [`v3.6.1`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#361) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.6.0...v3.6.1) ##### Patch Changes - [`6af23ff`](https://github.com/ueberdosis/tiptap/commit/6af23ff): Hotfix: Fix a crash in the React package that could occur during mounting/unmounting when the editor wasn't fully initialized. This prevents a runtime error and improves stability. - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.6.1 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.6.1 ### [`v3.6.0`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#360) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.5.3...v3.6.0) ##### Patch Changes - Updated dependencies \[[`c0190bd`](https://github.com/ueberdosis/tiptap/commit/c0190bd)] - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.6.0 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.6.0 ### [`v3.5.3`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#353) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.5.2...v3.5.3) ##### Patch Changes - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.5.3 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.5.3 ### [`v3.5.2`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#352) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.5.1...v3.5.2) ##### Patch Changes - [`ea9ac95`](https://github.com/ueberdosis/tiptap/commit/ea9ac95): Tiptap will now correctly insert a React MarkViews' content into the correct element within `MarkViewContent` component - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.5.2 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.5.2 ### [`v3.5.1`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#351) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.5.0...v3.5.1) ##### Patch Changes - [`f80c848`](https://github.com/ueberdosis/tiptap/commit/f80c848): Add `appendTo` support to `FloatingMenu` and pass it through in React/Vue 2/Vue 3 for both `BubbleMenu` and `FloatingMenu` to allow fixing clipping/z-index issues. - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.5.1 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.5.1 ### [`v3.5.0`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#350) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.4.6...v3.5.0) ##### Patch Changes - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.5.0 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.5.0 ### [`v3.4.6`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#346) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.4.5...v3.4.6) ##### Patch Changes - Updated dependencies \[[`968016f`](https://github.com/ueberdosis/tiptap/commit/968016f)] - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.4.6 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.4.6 ### [`v3.4.5`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#345) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.4.4...v3.4.5) ##### Patch Changes - Updated dependencies \[[`0226d42`](https://github.com/ueberdosis/tiptap/commit/0226d42)] - Updated dependencies \[[`37af83b`](https://github.com/ueberdosis/tiptap/commit/37af83b)] - Updated dependencies \[[`f598ac7`](https://github.com/ueberdosis/tiptap/commit/f598ac7)] - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.4.5 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.4.5 ### [`v3.4.4`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#344) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.4.3...v3.4.4) ##### Patch Changes - Updated dependencies \[[`00cf1d7`](https://github.com/ueberdosis/tiptap/commit/00cf1d7)] - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.4.4 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.4.4 ### [`v3.4.3`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#343) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.4.2...v3.4.3) ##### Patch Changes - [`915ed65`](https://github.com/ueberdosis/tiptap/commit/915ed65): Add custom positioning support to the BubbleMenu. This change adds an opt-in API that allows consumers to fully control how the BubbleMenu is positioned. Instead of relying solely on the internal placement logic, you can now provide a function (for example `getPosition`) that receives the relevant context (editor instance and menu DOM element) and returns the desired coordinates or positioning style. - Updated dependencies \[[`1ea8906`](https://github.com/ueberdosis/tiptap/commit/1ea8906)] - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.4.3 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.4.3 ### [`v3.4.2`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#342) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.4.1...v3.4.2) ##### Patch Changes - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.4.2 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.4.2 ### [`v3.4.1`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#341) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.4.0...v3.4.1) ##### Patch Changes - [`4dd8d58`](https://github.com/ueberdosis/tiptap/commit/4dd8d58): fix: [@&#8203;types/react](https://github.com/types/react) version mismatch - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.4.1 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.4.1 ### [`v3.4.0`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#340) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.3.1...v3.4.0) ##### Patch Changes - Updated dependencies \[[`895c73f`](https://github.com/ueberdosis/tiptap/commit/895c73f)] - Updated dependencies \[[`ad51daa`](https://github.com/ueberdosis/tiptap/commit/ad51daa)] - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.4.0 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.4.0 ### [`v3.3.1`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#331) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.3.0...v3.3.1) ##### Patch Changes - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.3.1 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.3.1 ### [`v3.3.0`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#330) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.2.2...v3.3.0) ##### Patch Changes - [`5423726`](https://github.com/ueberdosis/tiptap/commit/5423726): Ensure `ReactRenderer.destroy()` removes the renderer DOM element when present. - When consumers append a `ReactRenderer`'s `.element` to the DOM (for example many demos append it to `document.body`), previously calling `destroy()` removed the portal renderer but left the DOM node in place which could lead to accumulating `.react-renderer` elements. - `destroy()` now also removes the element from its parent node if present, preventing leaked DOM nodes / React roots. - Updated dependencies \[[`5423726`](https://github.com/ueberdosis/tiptap/commit/5423726)] - Updated dependencies \[[`5423726`](https://github.com/ueberdosis/tiptap/commit/5423726)] - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.3.0 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.3.0 ### [`v3.2.2`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#322) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.2.1...v3.2.2) ##### Patch Changes - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.2.2 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.2.2 ### [`v3.2.1`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#321) ##### Patch Changes - Updated dependencies \[[`6a2873f`](https://github.com/ueberdosis/tiptap/commit/6a2873f)] - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.2.1 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.2.1 ### [`v3.2.0`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#320) ##### Patch Changes - Updated dependencies \[[`5056e3e`](https://github.com/ueberdosis/tiptap/commit/5056e3e)] - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.2.0 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.2.0 ### [`v3.1.0`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#310) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.0.9...v3.1.0) ##### Patch Changes - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.1.0 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.1.0 ### [`v3.0.9`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#309) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.0.8...v3.0.9) ##### Patch Changes - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.0.9 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.0.9 ### [`v3.0.8`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#308) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.0.7...v3.0.8) ##### Patch Changes - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.0.8 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.0.8 ### [`v3.0.7`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#307) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.0.6...v3.0.7) ##### Patch Changes - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.0.7 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.0.7 ### [`v3.0.6`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#306) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.0.5...v3.0.6) ##### Patch Changes - Updated dependencies \[[`2e71d05`](https://github.com/ueberdosis/tiptap/commit/2e71d05)] - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.0.6 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.0.6 ### [`v3.0.5`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#305) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.0.4...v3.0.5) ##### Patch Changes - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.0.5 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.0.5 ### [`v3.0.4`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#304) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.0.3...v3.0.4) ##### Patch Changes - Updated dependencies \[[`7ed03fa`](https://github.com/ueberdosis/tiptap/commit/7ed03fa)] - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.0.4 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.0.4 ### [`v3.0.3`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#303) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.0.2...v3.0.3) ##### Patch Changes - Updated dependencies \[[`75cabde`](https://github.com/ueberdosis/tiptap/commit/75cabde)] - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.0.3 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.0.3 ### [`v3.0.2`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#302) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v3.0.1...v3.0.2) ##### Patch Changes - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.0.2 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.0.2 ### [`v3.0.1`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#301) [Compare Source](https://github.com/ueberdosis/tiptap/compare/@tiptap/react@3.0.0...v3.0.1) ##### Major Changes - [`a92f4a6`](https://github.com/ueberdosis/tiptap/commit/a92f4a6): We are now building packages with tsup which does not support UMD builds, please repackage if you require UMD builds - [`7eaa34d`](https://github.com/ueberdosis/tiptap/commit/7eaa34d): Removed tippy.js and replaced it with [Floating UI](https://floating-ui.com/) - a newer, more lightweight and customizable floating element library. This change is breaking existing menu implementations and will require a manual migration. **Affected packages:** - `@tiptap/extension-floating-menu` - `@tiptap/extension-bubble-menu` - `@tiptap/extension-mention` - `@tiptap/suggestion` - `@tiptap/react` - `@tiptap/vue-2` - `@tiptap/vue-3` Make sure to remove `tippyOptions` from the `FloatingMenu` and `BubbleMenu` components, and replace them with the new `options` object. Check our documentation to see how to migrate your existing menu implementations. - [FloatingMenu](https://tiptap.dev/docs/editor/extensions/functionality/floatingmenu) - [BubbleMenu](https://tiptap.dev/docs/editor/extensions/functionality/bubble-menu) You'll also need to install `@floating-ui/dom` as a peer dependency to your project like this: ```bash npm install @&#8203;floating-ui/dom@^1.6.0 ``` The new `options` object is compatible with all components that use these extensions. ##### Minor Changes - [`0e3207f`](https://github.com/ueberdosis/tiptap/commit/0e3207f): Add support for [markviews](https://prosemirror.net/docs/ref/#view.MarkView), which allow you to render custom views for marks within the editor. This is useful for rendering custom UI for marks, like a color picker for a text color mark or a link editor for a link mark. Here is a plain JS markview example: ```ts Mark.create({ // Other options... addMarkView() { return ({ mark, HTMLAttributes }) => { const dom = document.createElement('b') const contentDOM = document.createElement('span') dom.appendChild(contentDOM) return { dom, contentDOM, } } }, }) ``` ### [`v3.0.0`](https://github.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#300-beta30) [Compare Source](https://github.com/ueberdosis/tiptap/compare/v2.26.2...@tiptap/react@3.0.0) ##### Patch Changes - [@&#8203;tiptap/core](https://github.com/tiptap/core)@&#8203;3.0.0-beta.30 - [@&#8203;tiptap/pm](https://github.com/tiptap/pm)@&#8203;3.0.0-beta.30 ### [`v2.26.2`](https://github.com/ueberdosis/tiptap/compare/d07e2df3b967106c46ec59d05d33506c5504ff1e...v2.26.2) [Compare Source](https://github.com/ueberdosis/tiptap/compare/d07e2df3b967106c46ec59d05d33506c5504ff1e...v2.26.2) </details> --- ### 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 is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4zMi4xIiwidXBkYXRlZEluVmVyIjoiNDEuMTMxLjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
bustikiller added 1 commit 2025-07-14 02:05:09 +00:00
Update dependency @tiptap/react to v3
Some checks failed
Build Nginx-based docker image / build-static-assets (push) Failing after 7s
Check usage of free licenses / build-static-assets (pull_request) Failing after 3s
Add copyright notice / copyright_notice (pull_request) Successful in 2m29s
Playwright Tests / test (pull_request) Failing after 2m49s
c8ea908210
bustikiller force-pushed renovate/tiptap-react-3.x from c8ea908210 to d77155d8b0 2025-07-15 02:06:03 +00:00 Compare
bustikiller force-pushed renovate/tiptap-react-3.x from d77155d8b0 to 09746cd024 2025-07-16 02:09:41 +00:00 Compare
bustikiller force-pushed renovate/tiptap-react-3.x from 09746cd024 to 3966afee9c 2025-07-26 02:08:12 +00:00 Compare
bustikiller force-pushed renovate/tiptap-react-3.x from 3966afee9c to b43ea85889 2025-07-27 02:07:04 +00:00 Compare
bustikiller force-pushed renovate/tiptap-react-3.x from b43ea85889 to 679a30e4eb 2025-07-28 02:06:31 +00:00 Compare
bustikiller force-pushed renovate/tiptap-react-3.x from 679a30e4eb to ded39c890c 2025-07-29 02:08:22 +00:00 Compare
bustikiller force-pushed renovate/tiptap-react-3.x from ded39c890c to 96166bcf6b 2025-07-31 02:07:19 +00:00 Compare
bustikiller force-pushed renovate/tiptap-react-3.x from 96166bcf6b to 6ca8e4e42e 2025-09-15 22:02:07 +00:00 Compare
bustikiller force-pushed renovate/tiptap-react-3.x from 6ca8e4e42e to de14be0673 2025-09-16 22:23:02 +00:00 Compare
Some checks failed
Check usage of free licenses / build-static-assets (pull_request) Failing after 5s
Required
Details
Playwright Tests / test (pull_request) Failing after 5s
Required
Details
Build Nginx-based docker image / build-static-assets (push) Failing after 7s
Required
Details
Add copyright notice / copyright_notice (pull_request) Failing after 6s
Required
Details
Some required checks were not successful.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/tiptap-react-3.x:renovate/tiptap-react-3.x
git checkout renovate/tiptap-react-3.x
Sign in to join this conversation.
No Reviewers
No Label
No Milestone
No project
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: bustikiller/wedding-planner-frontend#320
No description provided.