|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to CodeMap will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [1.0.0] - 2026-03-15 |
| 9 | + |
| 10 | +### Added |
| 11 | + |
| 12 | +- Initial release of CodeMap |
| 13 | +- Framework-agnostic repository scanning for Python, JavaScript, TypeScript, JSX, TSX |
| 14 | +- Module-level dependency extraction with fan-in/fan-out metrics |
| 15 | +- Git-based ownership analysis with batch `git log` operations (2 calls regardless of repo size) |
| 16 | +- Churn and hotspot detection (high churn × high coupling = risk) |
| 17 | +- Interactive HTML visualization with D3.js force-directed graph |
| 18 | +- Six layout modes: Force, Tree, Radial, Cluster, Flow, Manual |
| 19 | +- Five display modes: Overview, Readable, Focus, Presentation, Spacious |
| 20 | +- Five color modes: Language, Group, Churn, Risk, Contributors |
| 21 | +- Theme selector: Dark, Light, System (persisted in localStorage) |
| 22 | +- Complete Polish (PL) and English (EN) UI localization |
| 23 | +- Focused single-node exploration with dropdown selection (Local, Dependencies, Reverse, Impact, Flow) |
| 24 | +- Manual layout mode with drag-and-drop, save/restore via localStorage |
| 25 | +- Node notes/annotations with modal editor |
| 26 | +- Minimap for large-graph navigation |
| 27 | +- Large-graph progressive loading: collapsed clusters, click-to-expand, adaptive simulation |
| 28 | +- Fast/Quality performance toggle for large graphs (>200 nodes) |
| 29 | +- `--fast` CLI flag to skip git analysis for speed |
| 30 | +- Real-time progress reporting with Rich spinners and stage labels |
| 31 | +- Graceful `Ctrl+C` cancellation for all commands |
| 32 | +- JSON, HTML, and PDF output formats |
| 33 | +- Terminal report renderer |
| 34 | +- CI workflow with lint (ruff), format check, type checking (mypy), and tests |
| 35 | +- 136 tests covering rendering, CLI, analysis, scanning, and infrastructure |
| 36 | +- Comprehensive documentation: README, architecture, contributing guide |
0 commit comments