Fix vip-real-time-collaboration integration failed constant checks#6740
Merged
maxschmeling merged 2 commits intodevelopfrom Jan 28, 2026
Merged
Fix vip-real-time-collaboration integration failed constant checks#6740maxschmeling merged 2 commits intodevelopfrom
maxschmeling merged 2 commits intodevelopfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes the Real-Time Collaboration (RTC) integration so it no longer relies on undefined global version constants and instead consistently uses internal class constants, ensuring the integration can resolve the correct plugin and Gutenberg paths.
Changes:
- Standardizes RTC plugin loading to use the
RealTimeCollaborationIntegration::VIP_RTC_PLUGIN_VERSIONclass constant when building the plugin path. - Standardizes RTC Gutenberg loading to use the
RealTimeCollaborationIntegration::VIP_RTC_GUTENBERG_VERSIONclass constant, simplifying the logic for choosing the unversioned vs. versioned Gutenberg folders. - Updates the default Gutenberg version string from
22.4.1-f48ad9cto0.2, aligning it with the RTC plugin version constant.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #6740 +/- ##
=============================================
+ Coverage 35.19% 35.22% +0.02%
+ Complexity 5085 5081 -4
=============================================
Files 295 295
Lines 20844 20840 -4
=============================================
+ Hits 7337 7341 +4
+ Misses 13507 13499 -8 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
ingeniumed
approved these changes
Jan 28, 2026
rebeccahum
pushed a commit
that referenced
this pull request
Jan 28, 2026
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.



Description
Fixes an issue from #6731 where the
vip-real-time-collaborationintegration constants were moved to class constants but thedefined()checks weren't removed.Changelog Description
Fixed
Pre-review checklist
Please make sure the items below have been covered before requesting a review: