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
fix(core): resolve highest version when multiple versions exist in lock file (#56)
* fix(core): resolve highest version when multiple versions exist in lock file
ResolvedPackages now stores all versions per package name and returns
the highest semver version through public API. Fixes incorrect outdated
status when both direct and transitive dependency versions coexist in
the lock file.
* style: apply rustfmt to lockfile module
* release: prepare v0.6.1
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [Unreleased]
9
9
10
+
## [0.6.1] - 2026-02-16
11
+
10
12
### Added
11
13
-**deps-bundler benchmarks** — Criterion benchmarks for Gemfile/Gemfile.lock parsing with various file sizes (5-100 deps)
12
14
@@ -17,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
19
18
20
### Fixed
19
21
-**deps-bundler test coverage increased to 90%+** — Added comprehensive tests for error handling, parser edge cases, registry response parsing
22
+
-**Lock file duplicate versions** — ResolvedPackages now stores all versions per package name and returns the highest semver version, fixing incorrect outdated status when both direct and transitive dependency versions coexist
20
23
21
24
## [0.6.0] - 2026-02-03
22
25
@@ -298,7 +301,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
298
301
- TLS enforced via rustls
299
302
- cargo-deny configured for vulnerability scanning
0 commit comments