Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add schema field and features2 to the index. #9161

Merged
merged 4 commits into from
Feb 22, 2021

Commits on Feb 10, 2021

  1. Configuration menu
    Copy the full SHA
    196673b View commit details
    Browse the repository at this point in the history
  2. Add features2 to the index.

    ehuss committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    be28b58 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2021

  1. Include the index version in the index cache.

    This is intended to help prevent the following scenario from happening:
    
    1. Old cargo builds an index cache.
    2. Old cargo finds an index entry it cannot parse, skipping it,
       and saving the cache without the entry.
    3. New cargo loads the cache with the missing entry, and never sees
       the new entries that it understands.
    
    This may result in more cache thrashing, but that seems better than
    having new cargos missing entries.
    ehuss committed Feb 19, 2021
    Configuration menu
    Copy the full SHA
    0d4137f View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2021

  1. Fix index_v version check.

    The whole point is that when loading a cache from an earlier version,
    that cache may be missing new entries. So don't load older caches.
    ehuss committed Feb 20, 2021
    Configuration menu
    Copy the full SHA
    f258569 View commit details
    Browse the repository at this point in the history