CommitService.GetTreeEntries: remove `root_oid` in response
As of heptapod@9091574388ef, upstream switches to a Gitaly revision that does not include it any more:
$ git diff 2df2ef004c6fece1192069a862c584425cc54cdf..da9aed3fa5fed505898e09126ee97b34ed7fccd7 -- proto/*.proto
diff --git a/proto/commit.proto b/proto/commit.proto
index b158233d2..9dab82e5d 100644
--- a/proto/commit.proto
+++ b/proto/commit.proto
@@ -415,12 +415,6 @@ message TreeEntry {
// OID of the object this tree entry points to
string oid = 1;
- // OID of the tree attached to commit_oid. This field is deprecated and will be removed in Gitaly
- // v16.0 as it cannot be implemented efficiently without having to spawn another extra process
- // that needs to get queried for every single TreeEntry. And at that point the caller can just
- // manually resolve the root tree ID via a separate RPC call, especially so as there are not
- // currently any known users of this feature.
- string root_oid = 2 [deprecated=true];
// Path relative to repository root
bytes path = 3;
// This comment is left unintentionally blank.
@@ -431,6 +425,11 @@ message TreeEntry {
string commit_oid = 6;
// Relative path of the first subdir that doesn't have only one directory descendant
bytes flat_path = 7;
+
+ // RootOid used to refer to the resolved object ID of the root tree. This field has been removed
+ // with no replacement.
+ reserved "root_oid";
+ reserved 2;
}
This has always been an uncertainty for us, so we'll be glad to oblige, in both implementations.