@@ -5,18 +5,21 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8- ## [ 0.6.2 ] - 2025-12-13
8+ ## [ 0.6.3 ] - 2025-12-13
99
1010### Added
1111- ** Cross-module stability detection** - Classes from other Gradle modules now require explicit stability annotations
1212 - Compiler plugin: Detects cross-module types via IR origins and package matching
13- - Gradle plugin: Automatically collects project dependencies and passes them to compiler
13+ - Gradle plugin: Automatically collects all subproject packages for cross-module detection
1414 - IDE plugin: Uses IntelliJ module system to identify cross-module boundaries
1515 - Classes from different modules marked as UNSTABLE unless annotated with @Stable /@Immutable /@StabilityInferred
1616 - Prevents accidentally assuming stability for types where implementation details aren't visible
1717 - Provides consistent behavior across compiler plugin, IDE plugin, and stability validation
1818
1919### Fixed
20+ - ** Fixed Gradle compatibility issues**
21+ - Removed deprecated ` getDependencyProject() ` usage for broader Gradle version compatibility
22+ - Implemented portable dependency collection that works across all Gradle versions
2023- ** Fixed compiler tests compatibility**
2124 - Updated StabilityTestConfigurator to pass new projectDependencies parameter
2225 - All compiler tests now passing with cross-module detection enabled
@@ -32,6 +35,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3235 - Better visibility of composable signatures while respecting ignore patterns
3336- ** Compacted code comments** for better readability across all cross-module detection implementations
3437
38+ ## [ 0.6.2] - 2025-12-10
39+
40+ ### Fixed
41+ - ** Fixed property source file location and navigation in tool window** (Issue #67 )
42+ - Tool window now correctly identifies source file for composable properties
43+ - Properties no longer show "Unknown.kt" as file name
44+ - Double-clicking on property names navigates to correct source location
45+ - Extended source location search to include ` KtProperty ` declarations
46+
47+ ### Improved
48+ - ** Enhanced tool window handling of ignored type patterns** (Issue #74 )
49+ - Ignored parameters now displayed as stable instead of being hidden completely
50+ - Composable skippability is recalculated based on processed parameters
51+ - Provides better visibility of composable signatures while respecting ignore patterns
52+
3553## [ 0.6.1] - 2025-12-06
3654
3755### Added
0 commit comments