Skip to content

Commit

Permalink
feat: Bump symcache version (#1572)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjbayer authored Dec 19, 2024
1 parent 9209bcb commit 11a7712
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/symbolicator-service/src/caches/versions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ static_assert!(symbolic::cfi::CFICACHE_LATEST_VERSION == 2);

/// SymCache, with the following versions:
///
/// - `7`: Fixes inlinee lookup. (<https://github.com/getsentry/symbolic/pull/883>)
///
/// - `6`: Recomputation to use new `CacheKey` format.
///
/// - `5`: Proactive bump, as a bug in shared cache could have potentially
Expand All @@ -58,8 +60,8 @@ static_assert!(symbolic::cfi::CFICACHE_LATEST_VERSION == 2);
///
/// - `0`: Initial version.
pub const SYMCACHE_VERSIONS: CacheVersions = CacheVersions {
current: 6,
fallbacks: &[],
current: 7,
fallbacks: &[6],
};
static_assert!(symbolic::symcache::SYMCACHE_VERSION == 8);

Expand Down

0 comments on commit 11a7712

Please sign in to comment.