Support IntelliJ 2026.2 (build 262) - #81
Open
villanella wants to merge 2 commits into
Open
villanella wants to merge 2 commits into
villanella wants to merge 2 commits into
Conversation
Raises pluginUntilBuild to 262.* and platformVersion to 2026.2.2 to build/test the Enterprise git server fix against the currently latest stable IDE release, not just the 2026.1 line it originally targeted.
DocHubToolWindow uses com.intellij.ui.jcef.JBCefBrowser but the plugin never declared a dependency on the JCEF module, relying on it being implicitly visible on the platform classpath. That held on 2026.1 but breaks on 2026.2 (build 262), which raises NoClassDefFoundError: com/intellij/ui/jcef/JBCefBrowser when the DocHub tool window is opened.
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.
Bumps pluginUntilBuild/platformVersion to target 2026.2, and declares an explicit
<depends>com.intellij.modules.jcef</depends>.Without it, opening the DocHub plugin window on build 262 throws
NoClassDefFoundError: com/intellij/ui/jcef/JBCefBrowser- JCEF classes were reachable implicitly on 2026.1 but require an explicit module dependency starting with 2026.2's platform reorganization.Testing: built and installed on a real IntelliJ IDEA 2026.2.2 project;
the tool window opens and renders correctly.