backend: drop deprecated fields from local_store.proto

We don't even try to preserve compatibility with old repos using the
local backend.
This commit is contained in:
Martin von Zweigbergk 2023-06-22 04:04:21 -07:00 committed by Martin von Zweigbergk
parent da5db27bb0
commit ea2d5fdba7
2 changed files with 0 additions and 9 deletions

View file

@ -57,9 +57,6 @@ message Commit {
}
Signature author = 6;
Signature committer = 7;
bool is_open = 8 [deprecated = true];
bool is_pruned = 9 [deprecated = true];
}
message Conflict {

View file

@ -61,12 +61,6 @@ pub struct Commit {
pub author: ::core::option::Option<commit::Signature>,
#[prost(message, optional, tag = "7")]
pub committer: ::core::option::Option<commit::Signature>,
#[deprecated]
#[prost(bool, tag = "8")]
pub is_open: bool,
#[deprecated]
#[prost(bool, tag = "9")]
pub is_pruned: bool,
}
/// Nested message and enum types in `Commit`.
pub mod commit {