You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: compose-stability-analyzer-idea/CHANGELOG.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,11 @@ All notable changes to the IntelliJ IDEA plugin will be documented in this file.
8
8
9
9
## [0.5.0] - 2025-11-08
10
10
11
+
### Breaking Changes
12
+
-**Minimum IDE version updated**: Now requires IntelliJ IDEA 2024.2+ (build 242+)
13
+
- Previous minimum was 2023.2 (build 232)
14
+
- This aligns with modern K2 Analysis API requirements and ensures better stability
15
+
11
16
### Added
12
17
-**New Compose Stability Tool Window** - View all composables in your project at a glance (Issue #14)
13
18
- Tree view grouped by module -> package -> file
@@ -35,15 +40,23 @@ All notable changes to the IntelliJ IDEA plugin will be documented in this file.
35
40
-**Performance optimization** - Tool window now reads pre-computed stability information from JSON files instead of re-analyzing all files
36
41
- Significantly faster load times for large projects
37
42
- Reduced CPU usage when opening the tool window
43
+
-**Added IntelliJ Plugin Verifier integration**
44
+
- Automated compatibility testing across multiple IDE versions
45
+
- Prevents API compatibility issues before release
46
+
- Can be run locally with `./gradlew verifyPlugin`
38
47
39
48
### Fixed
49
+
-**Fixed PluginException in IntelliJ IDEA 2025.2.4** (Issue #33)
50
+
- Added explicit `shortName` attribute to inspection registration in plugin.xml
51
+
- Resolved "Short name not matched" error that occurred due to stricter validation in newer IDE versions
40
52
- Fixed double-click navigation to source code in tool window
41
53
- Fixed typealias detection for Composable function types (Issue #16)
42
54
- Typealiases like `typealias SettingsButtons = @Composable (PlayerUiState) -> Unit` now correctly expand to their underlying function types before stability analysis
43
55
- Fixed ImmutableList/ImmutableSet/ImmutableMap showing as unstable in test code (Issue #21)
44
56
- Added fallback type resolution by simple name for immutable collections when FQN resolution fails in test source sets
0 commit comments