From 7b18dd049fa98ac741361bca794e3a39dfb48160 Mon Sep 17 00:00:00 2001 From: Will Pfleger Date: Tue, 26 May 2026 20:13:35 -0400 Subject: [PATCH] chore(renovate): pin tiptap below 3.23.0 tiptap 3.23.x introduced editor lifecycle changes (scheduleDestroy timeout, useEditorState integration) that cause channel pane rendering failures under real relay latency. 15 of 47 E2E integration tests fail deterministically. Pin below 3.23.0 until upstream stabilizes. --- renovate.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/renovate.json b/renovate.json index 560269fc8..ef77054e6 100644 --- a/renovate.json +++ b/renovate.json @@ -29,6 +29,11 @@ "matchPackageNames": ["redis", "deadpool-redis"], "matchManagers": ["cargo"], "groupName": "redis" + }, + { + "description": "tiptap 3.23.x breaks editor lifecycle under real relay latency — pin until upstream stabilizes.", + "matchPackageNames": ["@tiptap/{/,}**"], + "allowedVersions": "<3.23.0" } ] }