aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands/outdated.rs
AgeCommit message (Collapse)Author
2026-02-21feat(cache): add filesystem-backed cache with TTL expiration and size-limited GCnsfisis
Implement a cache module with CacheConfig and Cache structs supporting read/write (string and binary), atomic writes via temp+rename, TTL-based expiration, and size-limited garbage collection. Wire the repo cache into packagist.rs and resolver.rs for API response caching, and the files cache into downloader.rs for dist archive caching. Implement the clear-cache command with full clear and --gc modes. All existing call sites pass None for backward compatibility. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21feat(outdated): implement outdated command with version comparison and filteringnsfisis
Replaces the todo\!() stub with full implementation that loads installed or locked packages, fetches latest versions from Packagist, classifies updates as semver-compatible (red) or semver-incompatible (yellow), and supports all flags: --direct, --locked, --no-dev, --major-only, --minor-only, --patch-only, --format json, --strict, and --ignore. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-11change commands::*::execute() signaturesnsfisis
2026-02-11enable workspacensfisis