|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +## [1.2.1] - 2024-08-06 |
| 6 | + |
| 7 | +### Fixed |
| 8 | +- **File Watcher**: Enhanced move event handling for modern editors (VS Code, etc.) |
| 9 | + - Fixed issue where files created via temp-then-move pattern weren't being detected |
| 10 | + - Improved event processing logic to exclusively check destination path for move events |
| 11 | + - Eliminated ambiguous fallback behavior that could cause inconsistent results |
| 12 | + |
| 13 | +### Improved |
| 14 | +- **Code Quality**: Comprehensive Pylint compliance improvements |
| 15 | + - Fixed all f-string logging warnings using lazy % formatting |
| 16 | + - Added proper docstrings to fallback classes |
| 17 | + - Fixed multiple-statements warnings |
| 18 | + - Moved imports to top-level following PEP 8 conventions |
| 19 | + - Added appropriate pylint disables for stub methods |
| 20 | + |
| 21 | +### Technical Details |
| 22 | +- Unified path checking logic across all event types |
| 23 | +- Reduced code complexity in `should_process_event()` method |
| 24 | +- Better error handling with consistent exception management |
| 25 | +- Enhanced debugging capabilities with improved logging |
| 26 | + |
| 27 | +## [1.2.0] - Previous Release |
| 28 | + |
| 29 | +### Added |
| 30 | +- Enhanced find_files functionality with filename search |
| 31 | +- Performance improvements to file discovery |
| 32 | +- Auto-refresh troubleshooting documentation |
| 33 | + |
| 34 | +## [1.1.1] - Previous Release |
| 35 | + |
| 36 | +### Fixed |
| 37 | +- Various bug fixes and stability improvements |
| 38 | + |
| 39 | +## [1.1.0] - Previous Release |
| 40 | + |
| 41 | +### Added |
| 42 | +- Initial file watcher functionality |
| 43 | +- Cross-platform file system monitoring |
| 44 | + |
| 45 | +## [1.0.0] - Initial Release |
| 46 | + |
| 47 | +### Added |
| 48 | +- Core MCP server implementation |
| 49 | +- Code indexing and analysis capabilities |
| 50 | +- Multi-language support |
0 commit comments