Skip to content

Commit 48a07d0

Browse files
authored
Revert IDE compatibility to build 261 (#123)
1 parent f0ca750 commit 48a07d0

File tree

3 files changed

+2
-22
lines changed

3 files changed

+2
-22
lines changed

CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2727
- Heatmap enabled by default in plugin settings
2828
- Configurable severity thresholds in Settings > Tools > Compose Stability Analyzer
2929
- New "Heatmap" tab in the Compose Stability Analyzer tool window
30-
- **Plugin Verifier integration** (PR #118)
31-
- Extended IDE compatibility to build 261 (IntelliJ IDEA 2026.1)
32-
- Added `runPluginVerifier` task for automated compatibility testing
33-
3430
### Improved
3531
- Tool window now has three tabs: Explorer, Cascade, and Heatmap
3632
- Start/Stop Recomposition Heatmap button moved to tool window title bar for visibility across all tabs

compose-stability-analyzer-idea/CHANGELOG.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ All notable changes to the IntelliJ IDEA plugin will be documented in this file.
2525
- Heatmap enabled by default in plugin settings
2626
- New "Heatmap" tab in the tool window with Refresh/Clear toolbar
2727
- Configurable settings: severity thresholds, auto-start, show-when-stopped, max recent events
28-
- **Plugin Verifier integration** (PR #118)
29-
- Extended IDE compatibility range to build 261 (IntelliJ IDEA 2026.1)
30-
3128
### Improved
3229
- Tool window reorganized with three tabs: Explorer, Cascade, and Heatmap
3330
- Heatmap toggle button moved from Explorer toolbar to tool window title bar for visibility across all tabs

compose-stability-analyzer-idea/build.gradle.kts

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ dependencies {
4141
intellijIdeaCommunity("2025.2")
4242
bundledPlugin("org.jetbrains.kotlin")
4343
testFramework(org.jetbrains.intellij.platform.gradle.TestFrameworkType.Platform)
44-
pluginVerifier()
4544
}
4645

4746
testImplementation(kotlin("test"))
@@ -55,7 +54,7 @@ intellijPlatform {
5554
pluginConfiguration {
5655
ideaVersion {
5756
sinceBuild = "242"
58-
untilBuild = "261.*"
57+
untilBuild = "253.*"
5958
}
6059

6160
description = """
@@ -78,7 +77,7 @@ intellijPlatform {
7877
<li><b>New: Heatmap tab</b> in tool window - Shows recomposition event logs with parameter changes when clicking heatmap counts</li>
7978
<li><b>New: Cascade tab</b> in tool window - Dedicated panel for cascade analysis results</li>
8079
<li>Start/Stop Heatmap button moved to tool window title bar for easy access across all tabs</li>
81-
<li>Extended IDE compatibility to build 261 (IntelliJ IDEA 2026.1)</li>
80+
<li>Extended IDE compatibility to build 253 (IntelliJ IDEA 2025.3)</li>
8281
<li>Heatmap enabled by default in plugin settings</li>
8382
</ul>
8483
<b>0.6.7</b>
@@ -187,18 +186,6 @@ intellijPlatform {
187186

188187
}
189188

190-
pluginVerification {
191-
ides {
192-
recommended()
193-
}
194-
// Pre-existing K2 API issues (KaSessionProvider.handleAnalysisException) in 242-251
195-
// cause false positives — the plugin gracefully falls back to PSI on older IDEs.
196-
// 261 (2026.1 EAP) uses the unified "idea" artifact which the verifier cannot resolve yet.
197-
failureLevel = listOf(
198-
org.jetbrains.intellij.platform.gradle.tasks.VerifyPluginTask.FailureLevel.INVALID_PLUGIN,
199-
org.jetbrains.intellij.platform.gradle.tasks.VerifyPluginTask.FailureLevel.NOT_DYNAMIC,
200-
)
201-
}
202189
}
203190

204191
tasks {

0 commit comments

Comments
 (0)