Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bug-ops/deps-lsp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.5.4
Choose a base ref
...
head repository: bug-ops/deps-lsp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.5.5
Choose a head ref
  • 1 commit
  • 6 files changed
  • 1 contributor

Commits on Jan 27, 2026

  1. fix(lsp): correct inlay hints after lock file or manifest changes (#53)

    This fixes two related bugs where inlay hints incorrectly showed all
    dependencies as up-to-date (green checkmarks) after cargo update or
    applying code actions.
    
    Root cause: cached_versions (latest from registry) were being
    overwritten with resolved_versions (from lock file), causing the
    comparison logic to always return true.
    
    Changes:
    - Remove incorrect update_cached_versions call in handle_lockfile_change
    - Remove for loop merging resolved_versions into cached_versions in handle_document_change
    - Add two-tier check for dependencies not in lock file (fallback to version requirement check)
    - Update dependencies (aws-lc-rs, colored, cc, etc.)
    - Update resolver to version 3
    
    Fixes issue where dev-dependencies in workspace members showed
    incorrect status when missing from Cargo.lock.
    bug-ops authored Jan 27, 2026
    Configuration menu
    Copy the full SHA
    37f78f3 View commit details
    Browse the repository at this point in the history
Loading