Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Henkens <johan@henkens.com>2019-09-13 00:04:04 +0300
committerJohn Cai <jcai@gitlab.com>2019-09-13 00:04:04 +0300
commit18aa0d830d708e4bc16c272b3ec035bd017b941b (patch)
treecef12e152a224525b372366ec619df0d4de729ac
parent3bc16e2427cb705e902a2935c44466f3586445fd (diff)
Add first_parent to find-commits and count-commits
-rw-r--r--changelogs/unreleased/add-first-parent-to-find-commits.yml5
-rw-r--r--internal/service/commit/count_commits.go3
-rw-r--r--internal/service/commit/find_commits.go3
-rw-r--r--internal/service/commit/find_commits_test.go21
-rw-r--r--proto/commit.proto2
-rw-r--r--proto/go/gitalypb/commit.pb.go270
-rw-r--r--ruby/proto/gitaly/commit_pb.rb2
7 files changed, 180 insertions, 126 deletions
diff --git a/changelogs/unreleased/add-first-parent-to-find-commits.yml b/changelogs/unreleased/add-first-parent-to-find-commits.yml
new file mode 100644
index 000000000..36058f078
--- /dev/null
+++ b/changelogs/unreleased/add-first-parent-to-find-commits.yml
@@ -0,0 +1,5 @@
+---
+title: 'FindCommits/CommitCounts: Add support for `first_parent` parameter'
+merge_request: 1463
+author: jhenkens
+type: added
diff --git a/internal/service/commit/count_commits.go b/internal/service/commit/count_commits.go
index 1f96bb2fc..2f3de307f 100644
--- a/internal/service/commit/count_commits.go
+++ b/internal/service/commit/count_commits.go
@@ -37,6 +37,9 @@ func (s *server) CountCommits(ctx context.Context, in *gitalypb.CountCommitsRequ
if maxCount := in.GetMaxCount(); maxCount != 0 {
cmdArgs = append(cmdArgs, fmt.Sprintf("--max-count=%d", maxCount))
}
+ if in.GetFirstParent() {
+ cmdArgs = append(cmdArgs, "--first-parent")
+ }
if path := in.GetPath(); path != nil {
cmdArgs = append(cmdArgs, "--", string(path))
}
diff --git a/internal/service/commit/find_commits.go b/internal/service/commit/find_commits.go
index 3e4709353..cad71f4c3 100644
--- a/internal/service/commit/find_commits.go
+++ b/internal/service/commit/find_commits.go
@@ -186,6 +186,9 @@ func getLogCommandFlags(req *gitalypb.FindCommitsRequest) []string {
if req.GetRevision() != nil {
args = append(args, string(req.GetRevision()))
}
+ if req.GetFirstParent() {
+ args = append(args, "--first-parent")
+ }
if len(req.GetPaths()) > 0 {
args = append(args, "--")
for _, path := range req.GetPaths() {
diff --git a/internal/service/commit/find_commits_test.go b/internal/service/commit/find_commits_test.go
index b68ac1def..dd4c4d58f 100644
--- a/internal/service/commit/find_commits_test.go
+++ b/internal/service/commit/find_commits_test.go
@@ -266,6 +266,27 @@ func TestSuccessfulFindCommitsRequest(t *testing.T) {
},
minCommits: 90,
},
+ {
+ desc: "first parents",
+ request: &gitalypb.FindCommitsRequest{
+ Repository: testRepo,
+ Revision: []byte("e63f41fe459e62e1228fcef60d7189127aeba95a"),
+ FirstParent: true,
+ Limit: 10,
+ },
+ ids: []string{
+ "e63f41fe459e62e1228fcef60d7189127aeba95a",
+ "b83d6e391c22777fca1ed3012fce84f633d7fed0",
+ "1b12f15a11fc6e62177bef08f47bc7b5ce50b141",
+ "6907208d755b60ebeacb2e9dfea74c92c3449a1f",
+ "281d3a76f31c812dbf48abce82ccf6860adedd81",
+ "54fcc214b94e78d7a41a9a8fe6d87a5e59500e51",
+ "be93687618e4b132087f430a4d8fc3a609c9b77c",
+ "5f923865dde3436854e9ceb9cdb7815618d4e849",
+ "d2d430676773caa88cdaf7c55944073b2fd5561a",
+ "59e29889be61e6e0e5e223bfa9ac2721d31605b8",
+ },
+ },
}
for _, tc := range testCases {
diff --git a/proto/commit.proto b/proto/commit.proto
index 6a73e76c0..35ce65c43 100644
--- a/proto/commit.proto
+++ b/proto/commit.proto
@@ -216,6 +216,7 @@ message CountCommitsRequest {
int32 max_count = 6;
// all and revision are mutually exclusive
bool all = 7;
+ bool first_parent = 8;
}
message CountCommitsResponse {
@@ -341,6 +342,7 @@ message FindCommitsRequest {
google.protobuf.Timestamp before = 10;
// all and revision are mutually exclusive
bool all = 11;
+ bool first_parent = 12;
}
// A single 'page' of the result set
diff --git a/proto/go/gitalypb/commit.pb.go b/proto/go/gitalypb/commit.pb.go
index e30924901..aabc2b7f3 100644
--- a/proto/go/gitalypb/commit.pb.go
+++ b/proto/go/gitalypb/commit.pb.go
@@ -553,6 +553,7 @@ type CountCommitsRequest struct {
MaxCount int32 `protobuf:"varint,6,opt,name=max_count,json=maxCount,proto3" json:"max_count,omitempty"`
// all and revision are mutually exclusive
All bool `protobuf:"varint,7,opt,name=all,proto3" json:"all,omitempty"`
+ FirstParent bool `protobuf:"varint,8,opt,name=first_parent,json=firstParent,proto3" json:"first_parent,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -632,6 +633,13 @@ func (m *CountCommitsRequest) GetAll() bool {
return false
}
+func (m *CountCommitsRequest) GetFirstParent() bool {
+ if m != nil {
+ return m.FirstParent
+ }
+ return false
+}
+
type CountCommitsResponse struct {
Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
@@ -1448,6 +1456,7 @@ type FindCommitsRequest struct {
Before *timestamp.Timestamp `protobuf:"bytes,10,opt,name=before,proto3" json:"before,omitempty"`
// all and revision are mutually exclusive
All bool `protobuf:"varint,11,opt,name=all,proto3" json:"all,omitempty"`
+ FirstParent bool `protobuf:"varint,12,opt,name=first_parent,json=firstParent,proto3" json:"first_parent,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -1555,6 +1564,13 @@ func (m *FindCommitsRequest) GetAll() bool {
return false
}
+func (m *FindCommitsRequest) GetFirstParent() bool {
+ if m != nil {
+ return m.FirstParent
+ }
+ return false
+}
+
// A single 'page' of the result set
type FindCommitsResponse struct {
Commits []*GitCommit `protobuf:"bytes,1,rep,name=commits,proto3" json:"commits,omitempty"`
@@ -2643,132 +2659,134 @@ func init() {
func init() { proto.RegisterFile("commit.proto", fileDescriptor_db7163399a465f48) }
var fileDescriptor_db7163399a465f48 = []byte{
- // 1994 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x59, 0xdb, 0x6e, 0xe3, 0xc6,
- 0x19, 0x0e, 0x75, 0x24, 0x7f, 0xb9, 0x8e, 0x3c, 0x7b, 0x92, 0x69, 0x7b, 0xed, 0x70, 0x77, 0x53,
- 0x07, 0x69, 0x65, 0xd7, 0x3d, 0xa0, 0xbd, 0x2a, 0xd6, 0x89, 0x6d, 0xd8, 0x5d, 0x5b, 0x29, 0x2d,
- 0x20, 0x40, 0x91, 0x42, 0xa5, 0xc4, 0x91, 0x34, 0x5d, 0x4a, 0x54, 0xc8, 0x91, 0xd7, 0x2a, 0x8a,
- 0xde, 0x17, 0x28, 0x7a, 0x5b, 0xf4, 0x01, 0x7a, 0xd9, 0x8b, 0x3e, 0x42, 0x5f, 0xa1, 0x37, 0x7d,
- 0x8b, 0x3e, 0xc0, 0xa2, 0x17, 0xc1, 0x1c, 0xc8, 0x21, 0x45, 0xca, 0xde, 0xb5, 0xa3, 0xdc, 0x08,
- 0x33, 0xff, 0x1c, 0xfe, 0xc3, 0xcc, 0xff, 0xf1, 0x9b, 0x5f, 0xb0, 0xd2, 0xf3, 0x47, 0x23, 0x42,
- 0x9b, 0x93, 0xc0, 0xa7, 0x3e, 0xaa, 0x0c, 0x08, 0x75, 0xbc, 0x99, 0xb9, 0x12, 0x0e, 0x9d, 0x00,
- 0xbb, 0x42, 0x6a, 0x6e, 0x0f, 0x7c, 0x7f, 0xe0, 0xe1, 0x3d, 0xde, 0xeb, 0x4e, 0xfb, 0x7b, 0x94,
- 0x8c, 0x70, 0x48, 0x9d, 0xd1, 0x44, 0x4c, 0xb0, 0x5c, 0x40, 0x9f, 0xf1, 0x6d, 0x2e, 0xa9, 0x43,
- 0x43, 0x1b, 0x7f, 0x3d, 0xc5, 0x21, 0x45, 0x07, 0x00, 0x01, 0x9e, 0xf8, 0x21, 0xa1, 0x7e, 0x30,
- 0x6b, 0x68, 0x3b, 0xda, 0x6e, 0xed, 0x00, 0x35, 0x85, 0x86, 0xa6, 0x1d, 0x8f, 0xd8, 0x89, 0x59,
- 0xc8, 0x04, 0x3d, 0xc0, 0x57, 0x24, 0x24, 0xfe, 0xb8, 0x51, 0xd8, 0xd1, 0x76, 0x57, 0xec, 0xb8,
- 0x6f, 0xf5, 0xe0, 0x41, 0x4a, 0x4b, 0x38, 0xf1, 0xc7, 0x21, 0x46, 0x75, 0x28, 0xfa, 0xc4, 0xe5,
- 0xfb, 0x1b, 0x36, 0x6b, 0xa2, 0x4d, 0x30, 0x1c, 0xd7, 0x25, 0x94, 0xf8, 0xe3, 0x90, 0xef, 0x52,
- 0xb6, 0x95, 0x80, 0x8d, 0xba, 0xd8, 0xc3, 0x62, 0xb4, 0x28, 0x46, 0x63, 0x81, 0xf5, 0x67, 0x0d,
- 0x9e, 0x08, 0x2d, 0xa7, 0xe1, 0xcb, 0x71, 0x0f, 0x87, 0xd4, 0x0f, 0xee, 0xe3, 0xd0, 0x36, 0xd4,
- 0x1c, 0xb9, 0x4d, 0x87, 0xb8, 0xdc, 0x1a, 0xc3, 0x86, 0x48, 0x74, 0xea, 0xa2, 0x75, 0xd0, 0x7b,
- 0x43, 0xe2, 0xb9, 0x6c, 0xb4, 0xc8, 0x47, 0xab, 0xbc, 0x7f, 0xea, 0x5a, 0xfb, 0xd0, 0xc8, 0x9a,
- 0x22, 0xbd, 0x7e, 0x08, 0xe5, 0x2b, 0xc7, 0x9b, 0x62, 0x6e, 0x86, 0x6e, 0x8b, 0x8e, 0xf5, 0x17,
- 0x0d, 0xea, 0xed, 0x00, 0xe3, 0xa3, 0x31, 0x0d, 0x66, 0x4b, 0x3a, 0x07, 0x84, 0xa0, 0x34, 0x71,
- 0xe8, 0x90, 0x5b, 0xbb, 0x62, 0xf3, 0x36, 0x33, 0xc7, 0x23, 0x23, 0x42, 0x1b, 0xa5, 0x1d, 0x6d,
- 0xb7, 0x68, 0x8b, 0x8e, 0xf5, 0x1f, 0x0d, 0xd6, 0x12, 0xe6, 0x48, 0xd3, 0x7f, 0x0e, 0x25, 0x3a,
- 0x9b, 0x08, 0xcb, 0x57, 0x0f, 0x9e, 0x47, 0x96, 0x64, 0x26, 0x36, 0x5b, 0xdd, 0xdf, 0xe3, 0x1e,
- 0x6d, 0xcf, 0x26, 0xd8, 0xe6, 0x2b, 0xa2, 0xa3, 0x2e, 0xa8, 0xa3, 0x46, 0x50, 0x0a, 0xc9, 0x1f,
- 0x30, 0xb7, 0xa5, 0x68, 0xf3, 0x36, 0x93, 0x8d, 0x7c, 0x17, 0x73, 0x53, 0xca, 0x36, 0x6f, 0x33,
- 0x99, 0xeb, 0x50, 0xa7, 0x51, 0x16, 0x36, 0xb3, 0xb6, 0xf5, 0x53, 0x00, 0xa5, 0x01, 0x01, 0x54,
- 0x3e, 0x6b, 0x9d, 0x9f, 0x9f, 0xb6, 0xeb, 0x1f, 0x20, 0x1d, 0x4a, 0x87, 0xaf, 0x5a, 0x87, 0x75,
- 0x8d, 0xb5, 0xda, 0xf6, 0xd1, 0x51, 0xbd, 0x80, 0xaa, 0x50, 0x6c, 0xbf, 0x3c, 0xa9, 0x17, 0x2d,
- 0x1f, 0x1e, 0x89, 0x53, 0x09, 0x0f, 0x31, 0x7d, 0x83, 0xf1, 0xf8, 0x3e, 0x71, 0x46, 0x50, 0xea,
- 0x07, 0xfe, 0x48, 0xc6, 0x98, 0xb7, 0xd1, 0x2a, 0x14, 0xa8, 0x2f, 0xa3, 0x5b, 0xa0, 0xbe, 0x75,
- 0x04, 0x8f, 0xe7, 0x15, 0xca, 0x48, 0x7e, 0x0a, 0x55, 0x91, 0xbe, 0x61, 0x43, 0xdb, 0x29, 0xee,
- 0xd6, 0x0e, 0xd6, 0x22, 0x75, 0x27, 0x84, 0x8a, 0x35, 0x76, 0x34, 0xc3, 0xfa, 0x6b, 0x81, 0xe5,
- 0xcf, 0x74, 0x2c, 0x07, 0x96, 0x95, 0xa6, 0x68, 0x1f, 0xca, 0x4e, 0x9f, 0xe2, 0x80, 0x7b, 0x50,
- 0x3b, 0x30, 0x9b, 0x02, 0x3d, 0x9a, 0x11, 0x7a, 0x34, 0xdb, 0x11, 0x7a, 0xd8, 0x62, 0x22, 0x3a,
- 0x80, 0x4a, 0x17, 0xf7, 0xfd, 0x40, 0x1c, 0xd9, 0xcd, 0x4b, 0xe4, 0xcc, 0xf8, 0x12, 0x96, 0x13,
- 0x97, 0x70, 0x03, 0x8c, 0x91, 0x73, 0xdd, 0xe9, 0x31, 0x27, 0x1b, 0x15, 0x7e, 0xfa, 0xfa, 0xc8,
- 0xb9, 0xe6, 0x4e, 0xb3, 0xbb, 0xe3, 0x78, 0x5e, 0xa3, 0xca, 0xd3, 0x85, 0x35, 0xad, 0x1f, 0xc0,
- 0xc3, 0x74, 0x3c, 0x54, 0x6a, 0x89, 0x2d, 0x34, 0xbe, 0x85, 0xe8, 0x58, 0xff, 0xd0, 0x60, 0x93,
- 0x4f, 0xff, 0x9c, 0x5c, 0xe1, 0x60, 0x40, 0xc6, 0x83, 0x6f, 0x21, 0x8e, 0xef, 0x70, 0xfc, 0x69,
- 0xaf, 0xaa, 0x69, 0xaf, 0xce, 0x4a, 0x7a, 0xa9, 0x5e, 0x3e, 0x2b, 0xe9, 0xe5, 0x7a, 0xe5, 0xac,
- 0xa4, 0x57, 0xea, 0x55, 0xab, 0x03, 0x5b, 0x0b, 0xcc, 0x94, 0xee, 0x6d, 0x01, 0x78, 0xb8, 0x4f,
- 0x3b, 0x49, 0x1f, 0x0d, 0x26, 0x11, 0x71, 0xda, 0x86, 0x5a, 0x40, 0x06, 0xc3, 0x68, 0x5c, 0xc0,
- 0x27, 0x70, 0x11, 0x9f, 0x60, 0xbd, 0xd5, 0xc0, 0x88, 0x73, 0x35, 0x07, 0x7d, 0xd7, 0x41, 0x0f,
- 0x7c, 0x9f, 0x76, 0x54, 0xa6, 0x56, 0x59, 0xbf, 0x25, 0xb2, 0x35, 0x83, 0x1c, 0x7b, 0x12, 0x0d,
- 0x4a, 0x1c, 0x0d, 0x36, 0x32, 0x68, 0xd0, 0xe4, 0xbf, 0x09, 0x10, 0x88, 0xd2, 0xbb, 0x9c, 0x48,
- 0xef, 0x2d, 0x00, 0x71, 0xcd, 0xb9, 0xd6, 0x0a, 0xd7, 0x6a, 0x08, 0x09, 0xd3, 0xbb, 0x01, 0x46,
- 0xdf, 0x73, 0x68, 0x87, 0x2b, 0xaf, 0x8a, 0xfb, 0xca, 0x04, 0x5f, 0x38, 0x74, 0x68, 0x7d, 0x0a,
- 0x46, 0xac, 0x22, 0xce, 0xfc, 0x0f, 0xe2, 0xcc, 0xd7, 0x12, 0xc8, 0x50, 0xb4, 0xfe, 0xae, 0xc1,
- 0xa3, 0x13, 0x4c, 0x23, 0xeb, 0x08, 0x0e, 0xbf, 0x4b, 0x94, 0xdd, 0x04, 0x23, 0xc0, 0xbd, 0x69,
- 0x10, 0x92, 0x2b, 0x11, 0x30, 0xdd, 0x56, 0x02, 0x86, 0x13, 0xf3, 0xa6, 0x29, 0x9c, 0xc0, 0x42,
- 0x34, 0x8f, 0x13, 0x0a, 0x74, 0xa3, 0x19, 0x56, 0x17, 0xea, 0xaf, 0x48, 0x48, 0x8f, 0x89, 0xb7,
- 0x34, 0xe7, 0xac, 0x4f, 0x60, 0x2d, 0xa1, 0x43, 0xe5, 0x1d, 0xf3, 0x52, 0xd8, 0xb8, 0x62, 0x8b,
- 0x8e, 0xd5, 0x83, 0xb5, 0x63, 0x32, 0x76, 0x25, 0x9a, 0x2d, 0xc9, 0x9e, 0x5f, 0x02, 0x4a, 0x2a,
- 0x91, 0x06, 0x7d, 0x02, 0x15, 0x71, 0x87, 0xa4, 0x86, 0x1c, 0x74, 0x95, 0x13, 0xac, 0x0e, 0x3c,
- 0x61, 0x0e, 0x45, 0x38, 0x3d, 0x6b, 0x11, 0xf7, 0x3e, 0xb6, 0xc6, 0x1f, 0xba, 0xa2, 0xcc, 0x2a,
- 0xeb, 0x04, 0x1a, 0x59, 0x05, 0x77, 0xf9, 0x0c, 0x8c, 0x61, 0x23, 0xb5, 0x91, 0x8d, 0xfb, 0x17,
- 0xce, 0x08, 0xdf, 0xc7, 0xda, 0x0d, 0x76, 0x2d, 0xfb, 0x9d, 0xb1, 0x33, 0xc2, 0x21, 0xb7, 0x99,
- 0x87, 0x96, 0x6f, 0x1b, 0x5a, 0xbf, 0x82, 0xcd, 0x7c, 0x7d, 0x77, 0x31, 0xfe, 0xad, 0x06, 0x8f,
- 0xd8, 0x41, 0xbd, 0xf4, 0xbc, 0x25, 0x7f, 0xc5, 0x52, 0xa8, 0x5b, 0x9c, 0xfb, 0x96, 0x30, 0xd6,
- 0xf1, 0x9a, 0x4c, 0x22, 0x86, 0xc1, 0xda, 0xe8, 0x17, 0x50, 0xf6, 0x03, 0x17, 0x07, 0x1c, 0x97,
- 0x56, 0x0f, 0x9e, 0x45, 0xba, 0x73, 0xcd, 0x6d, 0xb6, 0xd8, 0x54, 0x5b, 0xac, 0xb0, 0x5e, 0x40,
- 0x99, 0xf7, 0x19, 0xe6, 0x5c, 0xb4, 0x2e, 0x8e, 0x24, 0xfa, 0xb4, 0xbe, 0x68, 0x09, 0x06, 0xf2,
- 0xf9, 0xcb, 0xf6, 0x51, 0xbd, 0xc0, 0xf2, 0x7b, 0x7e, 0xb3, 0xbb, 0xc4, 0xf0, 0xff, 0x85, 0xe4,
- 0x65, 0x5f, 0x5a, 0x00, 0x63, 0x46, 0x28, 0x82, 0x27, 0x3a, 0xe8, 0x31, 0x54, 0xfc, 0x7e, 0x3f,
- 0xc4, 0x54, 0xc6, 0x4e, 0xf6, 0x54, 0xee, 0x97, 0x13, 0xb9, 0xcf, 0x66, 0xf7, 0x7d, 0xcf, 0xf3,
- 0xdf, 0x70, 0x48, 0xd7, 0x6d, 0xd9, 0x63, 0xdf, 0x28, 0x16, 0xf3, 0xce, 0x08, 0x07, 0x03, 0x1c,
- 0xca, 0x6f, 0x3a, 0x30, 0xd1, 0x39, 0x97, 0xa0, 0x8f, 0x60, 0xc5, 0x25, 0xa1, 0xd3, 0xf5, 0x70,
- 0xe7, 0x8d, 0xe3, 0xbd, 0x6e, 0xe8, 0x7c, 0x46, 0x4d, 0xca, 0xbe, 0x74, 0xbc, 0xd7, 0x8a, 0xa6,
- 0x18, 0xef, 0x4f, 0x53, 0xe0, 0x9d, 0x69, 0x8a, 0x64, 0x1d, 0x35, 0xc5, 0x3a, 0x0e, 0xe1, 0x41,
- 0x2a, 0xfa, 0x77, 0x39, 0xc2, 0x61, 0xc4, 0x08, 0x5f, 0x39, 0xe3, 0xc1, 0xd4, 0x19, 0x2c, 0x0f,
- 0xa8, 0xff, 0x19, 0x3f, 0x87, 0x12, 0xaa, 0xa4, 0xc9, 0xc7, 0x60, 0x78, 0x91, 0x50, 0x1a, 0xbd,
- 0x1b, 0xa9, 0x5a, 0xb0, 0xa6, 0x19, 0x49, 0x6c, 0xb5, 0xd4, 0x3c, 0x03, 0x3d, 0x12, 0xb3, 0xcc,
- 0x62, 0x30, 0x22, 0xf9, 0x04, 0x6f, 0xb3, 0xbb, 0xc1, 0x9f, 0xa3, 0xdc, 0xb8, 0x82, 0x2d, 0x3a,
- 0x82, 0xa5, 0x79, 0x7e, 0x20, 0x1f, 0x4d, 0xa2, 0x63, 0x4d, 0xe1, 0x43, 0xdb, 0x79, 0x73, 0xe8,
- 0xdd, 0x13, 0xd1, 0xde, 0xf3, 0xc3, 0x6c, 0x7d, 0x0c, 0x75, 0xa5, 0x56, 0x86, 0x27, 0x7a, 0x72,
- 0x68, 0x89, 0x27, 0xc7, 0x9f, 0xa0, 0xf1, 0xca, 0x89, 0xc0, 0xf0, 0xd8, 0x0f, 0x18, 0x01, 0xf9,
- 0x2e, 0xed, 0x3c, 0x86, 0xf5, 0x1c, 0xfd, 0xef, 0xff, 0xb9, 0xfb, 0x97, 0x06, 0x5b, 0x0c, 0xd5,
- 0xd5, 0x66, 0xe1, 0xb1, 0x1f, 0x30, 0x32, 0xf1, 0x6d, 0x7a, 0x63, 0xbc, 0xcf, 0xa3, 0x33, 0x07,
- 0x62, 0xca, 0x49, 0x88, 0xb1, 0xfe, 0xab, 0xc1, 0xd3, 0x45, 0x36, 0xcb, 0x08, 0x5c, 0xcc, 0x27,
- 0xe1, 0x4f, 0x22, 0x8b, 0x6f, 0x5e, 0xd8, 0x8c, 0x03, 0xca, 0xa5, 0xd1, 0x26, 0x26, 0x86, 0xef,
- 0xa5, 0x46, 0x12, 0x21, 0x2e, 0xdc, 0x12, 0x62, 0x46, 0x69, 0x99, 0x93, 0x9d, 0xee, 0x8c, 0xe2,
- 0x90, 0x7b, 0xb8, 0x62, 0x1b, 0x4c, 0x72, 0xc8, 0x04, 0x67, 0x25, 0x5d, 0xab, 0x17, 0xce, 0x4a,
- 0x7a, 0xb1, 0x5e, 0xb2, 0xfe, 0x1d, 0x27, 0x69, 0x78, 0x38, 0x3b, 0xc7, 0x61, 0xc8, 0x12, 0x6c,
- 0x49, 0xb7, 0x4a, 0x45, 0xb7, 0x38, 0x0f, 0xe0, 0x39, 0x67, 0x91, 0xf7, 0x4a, 0x7b, 0x08, 0xe5,
- 0xaf, 0xa7, 0x38, 0x98, 0x49, 0x9a, 0x2e, 0x3a, 0x8c, 0xdf, 0x64, 0x5d, 0xb8, 0x0b, 0x36, 0x12,
- 0xd8, 0x3e, 0x26, 0x1e, 0xc5, 0xc1, 0xe5, 0xd0, 0x09, 0xbf, 0x24, 0x74, 0x78, 0x49, 0x06, 0x63,
- 0x87, 0x4e, 0x03, 0x7c, 0xdf, 0x97, 0x5a, 0x38, 0x74, 0x22, 0x7a, 0xc3, 0xdb, 0xd6, 0xcf, 0x60,
- 0x67, 0xb1, 0x2a, 0x85, 0x02, 0x7c, 0x9d, 0x96, 0x58, 0x37, 0x81, 0xad, 0xa3, 0x6b, 0x1a, 0x38,
- 0x3d, 0x69, 0x7c, 0xbc, 0xec, 0x9e, 0x24, 0x4c, 0x3e, 0x81, 0xe2, 0x77, 0x97, 0x2e, 0x04, 0xa7,
- 0xae, 0xd5, 0x81, 0xa7, 0x8b, 0x34, 0x4a, 0x3b, 0x37, 0xc1, 0x08, 0x23, 0xa1, 0x84, 0x2c, 0x25,
- 0xe0, 0x1f, 0x5c, 0x32, 0x18, 0x63, 0xb7, 0x43, 0xf1, 0x35, 0x95, 0x97, 0x02, 0x84, 0xa8, 0x8d,
- 0xaf, 0xa9, 0xe5, 0x83, 0x79, 0x82, 0xe7, 0x37, 0xbf, 0x57, 0xc0, 0xd5, 0x93, 0x8e, 0xb8, 0xa1,
- 0x64, 0xc2, 0x46, 0xe4, 0x50, 0x68, 0xcd, 0x60, 0x23, 0x57, 0xa1, 0x74, 0x27, 0x15, 0x0d, 0x2d,
- 0x1d, 0x8d, 0xb4, 0xaf, 0x85, 0x5b, 0x7c, 0x2d, 0x66, 0x7c, 0x1d, 0x41, 0x23, 0x56, 0x2d, 0xaf,
- 0xea, 0x32, 0x3d, 0xb5, 0x61, 0x3d, 0x47, 0xdd, 0xbb, 0xf8, 0xd9, 0x80, 0xea, 0x48, 0x2c, 0x90,
- 0x5e, 0x46, 0xdd, 0x83, 0xff, 0xd5, 0x23, 0x64, 0xba, 0xc4, 0xc1, 0x15, 0xe9, 0x61, 0xf4, 0x3b,
- 0xa8, 0xcf, 0xd7, 0x1a, 0xd1, 0x76, 0xfa, 0x6b, 0x9e, 0x29, 0x88, 0x9a, 0x3b, 0x8b, 0x27, 0x08,
- 0xfb, 0x2c, 0xe3, 0xed, 0xdf, 0x76, 0xcb, 0x7a, 0xc1, 0xd4, 0x7e, 0x84, 0xce, 0x93, 0x65, 0x83,
- 0x46, 0x4e, 0xd5, 0x4f, 0xec, 0xb9, 0xbe, 0xb0, 0x1e, 0x98, 0xd8, 0x6c, 0x5f, 0x43, 0x5f, 0xc1,
- 0x6a, 0xba, 0x2a, 0x86, 0xb6, 0xd2, 0xd6, 0xcc, 0x95, 0xe7, 0xcc, 0xa7, 0x8b, 0x86, 0xf3, 0x76,
- 0x6f, 0xc3, 0x4a, 0xb2, 0x36, 0x84, 0x36, 0xd4, 0xe2, 0x4c, 0x05, 0xcd, 0xdc, 0xcc, 0x1f, 0xcc,
- 0x86, 0x80, 0x97, 0x0e, 0x73, 0x6a, 0x33, 0xe8, 0x79, 0x6a, 0x87, 0x05, 0x15, 0x26, 0xf3, 0xc5,
- 0x2d, 0xb3, 0xb2, 0x0a, 0xbf, 0x82, 0xd5, 0x74, 0x49, 0x40, 0x05, 0x29, 0xb7, 0x8a, 0xa1, 0x82,
- 0x94, 0x5f, 0x49, 0x48, 0x07, 0xe9, 0x1c, 0x8c, 0xf8, 0x15, 0xaf, 0x4e, 0x74, 0xbe, 0x78, 0xa0,
- 0x4e, 0x34, 0xf3, 0xe4, 0x4f, 0x6f, 0x77, 0x01, 0xa0, 0x98, 0x31, 0x5a, 0x4f, 0x3e, 0xa0, 0x52,
- 0xaf, 0x7f, 0xd3, 0xcc, 0x1b, 0xca, 0x3a, 0xff, 0x6b, 0xa8, 0x25, 0xfe, 0x2f, 0x40, 0x66, 0xfa,
- 0xfc, 0x93, 0x7f, 0x55, 0x98, 0x1b, 0xb9, 0x63, 0xb9, 0xf1, 0x4c, 0x3f, 0xc1, 0x54, 0x3c, 0x73,
- 0xdf, 0x79, 0x2a, 0x9e, 0xf9, 0x2f, 0xb7, 0x74, 0x00, 0x2e, 0xa1, 0x96, 0x78, 0x1a, 0xa0, 0x1c,
- 0x37, 0xb3, 0x06, 0xe7, 0xbc, 0x25, 0xd2, 0x9b, 0xfe, 0x16, 0x3e, 0x9c, 0x23, 0xe3, 0xe8, 0xe9,
- 0x42, 0x96, 0x2e, 0x36, 0xdf, 0xbe, 0x85, 0xc5, 0x27, 0x23, 0x72, 0x06, 0x7a, 0xc4, 0x7c, 0xd1,
- 0x93, 0x18, 0xe8, 0xd2, 0x14, 0xdc, 0x6c, 0x64, 0x07, 0xf2, 0x4c, 0xed, 0xc1, 0x5a, 0x86, 0x9d,
- 0xa2, 0x18, 0x63, 0x16, 0x11, 0x67, 0xf3, 0xa3, 0x1b, 0x66, 0x64, 0x0d, 0xa6, 0xf0, 0x38, 0x9f,
- 0xcc, 0xa1, 0x17, 0xb7, 0x91, 0x3d, 0xa1, 0xee, 0xe3, 0x77, 0xe3, 0x84, 0x69, 0xd7, 0xba, 0x11,
- 0xbc, 0x2a, 0x7a, 0x33, 0x0f, 0xaf, 0x19, 0xee, 0x36, 0x0f, 0xaf, 0x59, 0x66, 0x94, 0xd1, 0x31,
- 0x5f, 0x22, 0x52, 0x3a, 0x16, 0x54, 0xa7, 0x94, 0x8e, 0x45, 0xd5, 0xa5, 0xb4, 0x8e, 0x31, 0x3c,
- 0xcc, 0xab, 0xe6, 0xa0, 0x67, 0xb9, 0xdb, 0xa4, 0x6b, 0x4b, 0xe6, 0xf3, 0x9b, 0x27, 0xe5, 0xe9,
- 0xfb, 0x23, 0x34, 0x16, 0x51, 0x2c, 0xf4, 0x7d, 0x95, 0x03, 0x37, 0xf2, 0x3d, 0x73, 0xf7, 0xf6,
- 0x89, 0x19, 0xdd, 0xbb, 0xda, 0xbe, 0xc6, 0xee, 0x4a, 0x3e, 0x6d, 0x52, 0x77, 0xe5, 0x46, 0x22,
- 0xa7, 0xee, 0xca, 0xcd, 0xec, 0x2b, 0xed, 0xf3, 0x6b, 0x78, 0x90, 0x43, 0x6d, 0x90, 0x95, 0x80,
- 0xe6, 0x05, 0x44, 0xcb, 0x7c, 0x76, 0xe3, 0x9c, 0x3c, 0x65, 0x18, 0xd6, 0x32, 0xec, 0x42, 0xe5,
- 0xdc, 0x22, 0x9e, 0xa3, 0x72, 0x6e, 0x21, 0x35, 0x49, 0xa9, 0x39, 0xdc, 0xff, 0x0d, 0x5b, 0xe0,
- 0x39, 0xdd, 0x66, 0xcf, 0x1f, 0xed, 0x89, 0xe6, 0x0f, 0xfd, 0x60, 0xb0, 0x27, 0xb6, 0x11, 0x7f,
- 0x2d, 0xef, 0x0d, 0x7c, 0xd9, 0x9f, 0x74, 0xbb, 0x15, 0x2e, 0xfa, 0xf1, 0x37, 0x01, 0x00, 0x00,
- 0xff, 0xff, 0xa1, 0x79, 0xf4, 0xb9, 0xa1, 0x1e, 0x00, 0x00,
+ // 2017 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x59, 0x49, 0x6f, 0xe3, 0xc8,
+ 0x15, 0x1e, 0x6a, 0x33, 0xf9, 0xa4, 0x78, 0xe4, 0xea, 0x4d, 0xa6, 0xed, 0xb6, 0x87, 0xdd, 0x3d,
+ 0xf1, 0x60, 0x12, 0xd9, 0x71, 0x16, 0x24, 0xa7, 0xa0, 0x3d, 0x63, 0x1b, 0x76, 0xda, 0x56, 0x87,
+ 0x16, 0x30, 0x40, 0x30, 0x81, 0x42, 0x89, 0x25, 0x89, 0x69, 0x4a, 0xd4, 0x90, 0x25, 0xb7, 0x15,
+ 0x04, 0xb9, 0x07, 0xc8, 0x3d, 0xc8, 0x29, 0xa7, 0x1c, 0x73, 0x98, 0x9f, 0x90, 0xbf, 0x90, 0x4b,
+ 0xfe, 0x45, 0x7e, 0x40, 0x9f, 0x06, 0xb5, 0x90, 0x45, 0x8a, 0xa4, 0xdd, 0xb6, 0x46, 0x7d, 0x11,
+ 0x58, 0xaf, 0x96, 0xb7, 0x54, 0xbd, 0xaf, 0xbe, 0x7a, 0x82, 0x5a, 0xcf, 0x1b, 0x8d, 0x1c, 0xd2,
+ 0x9c, 0xf8, 0x1e, 0xf1, 0x50, 0x65, 0xe0, 0x10, 0xcb, 0x9d, 0xe9, 0xb5, 0x60, 0x68, 0xf9, 0xd8,
+ 0xe6, 0x52, 0x7d, 0x7b, 0xe0, 0x79, 0x03, 0x17, 0xef, 0xb1, 0x56, 0x77, 0xda, 0xdf, 0x23, 0xce,
+ 0x08, 0x07, 0xc4, 0x1a, 0x4d, 0xf8, 0x00, 0xc3, 0x06, 0xf4, 0x05, 0x5b, 0xe6, 0x92, 0x58, 0x24,
+ 0x30, 0xf1, 0x37, 0x53, 0x1c, 0x10, 0x74, 0x00, 0xe0, 0xe3, 0x89, 0x17, 0x38, 0xc4, 0xf3, 0x67,
+ 0x0d, 0x65, 0x47, 0xd9, 0xad, 0x1e, 0xa0, 0x26, 0xd7, 0xd0, 0x34, 0xa3, 0x1e, 0x33, 0x36, 0x0a,
+ 0xe9, 0xa0, 0xfa, 0xf8, 0xca, 0x09, 0x1c, 0x6f, 0xdc, 0x28, 0xec, 0x28, 0xbb, 0x35, 0x33, 0x6a,
+ 0x1b, 0x3d, 0x78, 0x90, 0xd0, 0x12, 0x4c, 0xbc, 0x71, 0x80, 0x51, 0x1d, 0x8a, 0x9e, 0x63, 0xb3,
+ 0xf5, 0x35, 0x93, 0x7e, 0xa2, 0x4d, 0xd0, 0x2c, 0xdb, 0x76, 0x88, 0xe3, 0x8d, 0x03, 0xb6, 0x4a,
+ 0xd9, 0x94, 0x02, 0xda, 0x6b, 0x63, 0x17, 0xf3, 0xde, 0x22, 0xef, 0x8d, 0x04, 0xc6, 0x5f, 0x15,
+ 0x78, 0xc2, 0xb5, 0x9c, 0x06, 0x2f, 0xc7, 0x3d, 0x1c, 0x10, 0xcf, 0x5f, 0xc4, 0xa1, 0x6d, 0xa8,
+ 0x5a, 0x62, 0x99, 0x8e, 0x63, 0x33, 0x6b, 0x34, 0x13, 0x42, 0xd1, 0xa9, 0x8d, 0xd6, 0x41, 0xed,
+ 0x0d, 0x1d, 0xd7, 0xa6, 0xbd, 0x45, 0xd6, 0xbb, 0xc2, 0xda, 0xa7, 0xb6, 0xb1, 0x0f, 0x8d, 0xb4,
+ 0x29, 0xc2, 0xeb, 0x87, 0x50, 0xbe, 0xb2, 0xdc, 0x29, 0x66, 0x66, 0xa8, 0x26, 0x6f, 0x18, 0x7f,
+ 0x53, 0xa0, 0xde, 0xf6, 0x31, 0x3e, 0x1a, 0x13, 0x7f, 0xb6, 0xa4, 0x7d, 0x40, 0x08, 0x4a, 0x13,
+ 0x8b, 0x0c, 0x99, 0xb5, 0x35, 0x93, 0x7d, 0x53, 0x73, 0x5c, 0x67, 0xe4, 0x90, 0x46, 0x69, 0x47,
+ 0xd9, 0x2d, 0x9a, 0xbc, 0x61, 0xfc, 0x57, 0x81, 0xb5, 0x98, 0x39, 0xc2, 0xf4, 0x5f, 0x42, 0x89,
+ 0xcc, 0x26, 0xdc, 0xf2, 0xd5, 0x83, 0xe7, 0xa1, 0x25, 0xa9, 0x81, 0xcd, 0x56, 0xf7, 0x8f, 0xb8,
+ 0x47, 0xda, 0xb3, 0x09, 0x36, 0xd9, 0x8c, 0x70, 0xab, 0x0b, 0x72, 0xab, 0x11, 0x94, 0x02, 0xe7,
+ 0x4f, 0x98, 0xd9, 0x52, 0x34, 0xd9, 0x37, 0x95, 0x8d, 0x3c, 0x1b, 0x33, 0x53, 0xca, 0x26, 0xfb,
+ 0xa6, 0x32, 0xdb, 0x22, 0x56, 0xa3, 0xcc, 0x6d, 0xa6, 0xdf, 0xc6, 0xcf, 0x01, 0xa4, 0x06, 0x04,
+ 0x50, 0xf9, 0xa2, 0x75, 0x7e, 0x7e, 0xda, 0xae, 0x7f, 0x84, 0x54, 0x28, 0x1d, 0xbe, 0x6a, 0x1d,
+ 0xd6, 0x15, 0xfa, 0xd5, 0x36, 0x8f, 0x8e, 0xea, 0x05, 0xb4, 0x02, 0xc5, 0xf6, 0xcb, 0x93, 0x7a,
+ 0xd1, 0xf0, 0xe0, 0x11, 0xdf, 0x95, 0xe0, 0x10, 0x93, 0xb7, 0x18, 0x8f, 0x17, 0x89, 0x33, 0x82,
+ 0x52, 0xdf, 0xf7, 0x46, 0x22, 0xc6, 0xec, 0x1b, 0xad, 0x42, 0x81, 0x78, 0x22, 0xba, 0x05, 0xe2,
+ 0x19, 0x47, 0xf0, 0x78, 0x5e, 0xa1, 0x88, 0xe4, 0xe7, 0xb0, 0xc2, 0xd3, 0x37, 0x68, 0x28, 0x3b,
+ 0xc5, 0xdd, 0xea, 0xc1, 0x5a, 0xa8, 0xee, 0xc4, 0x21, 0x7c, 0x8e, 0x19, 0x8e, 0x30, 0xbe, 0x2d,
+ 0xd0, 0xfc, 0x99, 0x8e, 0x45, 0xc7, 0xb2, 0xd2, 0x14, 0xed, 0x43, 0xd9, 0xea, 0x13, 0xec, 0x33,
+ 0x0f, 0xaa, 0x07, 0x7a, 0x93, 0xa3, 0x47, 0x33, 0x44, 0x8f, 0x66, 0x3b, 0x44, 0x0f, 0x93, 0x0f,
+ 0x44, 0x07, 0x50, 0xe9, 0xe2, 0xbe, 0xe7, 0xf3, 0x2d, 0xbb, 0x79, 0x8a, 0x18, 0x19, 0x1d, 0xc2,
+ 0x72, 0xec, 0x10, 0x6e, 0x80, 0x36, 0xb2, 0xae, 0x3b, 0x3d, 0xea, 0x64, 0xa3, 0xc2, 0x76, 0x5f,
+ 0x1d, 0x59, 0xd7, 0xcc, 0x69, 0x7a, 0x76, 0x2c, 0xd7, 0x6d, 0xac, 0xb0, 0x74, 0xa1, 0x9f, 0xe8,
+ 0x13, 0xa8, 0xf5, 0x1d, 0x3f, 0x20, 0x9d, 0x89, 0xe5, 0xe3, 0x31, 0x69, 0xa8, 0xac, 0xab, 0xca,
+ 0x64, 0xaf, 0x99, 0xc8, 0xf8, 0x11, 0x3c, 0x4c, 0x86, 0x4c, 0x66, 0x1f, 0xd7, 0xa2, 0x30, 0x2d,
+ 0xbc, 0x61, 0xfc, 0x4b, 0x81, 0x4d, 0x36, 0xfc, 0x4b, 0xe7, 0x0a, 0xfb, 0x03, 0x67, 0x3c, 0xf8,
+ 0x1e, 0x42, 0xfd, 0x1e, 0x27, 0x24, 0xe9, 0xf8, 0x4a, 0xd2, 0xf1, 0xb3, 0x92, 0x5a, 0xaa, 0x97,
+ 0xcf, 0x4a, 0x6a, 0xb9, 0x5e, 0x39, 0x2b, 0xa9, 0x95, 0xfa, 0x8a, 0xd1, 0x81, 0xad, 0x1c, 0x33,
+ 0x85, 0x7b, 0x5b, 0x00, 0x2e, 0xee, 0x93, 0x4e, 0xdc, 0x47, 0x8d, 0x4a, 0x78, 0x28, 0xb7, 0xa1,
+ 0xea, 0x3b, 0x83, 0x61, 0xd8, 0xcf, 0x11, 0x16, 0x98, 0x88, 0x0d, 0x30, 0xde, 0x29, 0xa0, 0x45,
+ 0xe9, 0x9c, 0x01, 0xd0, 0xeb, 0xa0, 0xfa, 0x9e, 0x47, 0x3a, 0x32, 0x99, 0x57, 0x68, 0xbb, 0xc5,
+ 0x13, 0x3a, 0x05, 0x2e, 0x7b, 0x02, 0x30, 0x4a, 0x0c, 0x30, 0x36, 0x52, 0x80, 0xd1, 0x64, 0xbf,
+ 0x31, 0x9c, 0x08, 0x11, 0xa0, 0x1c, 0x43, 0x80, 0x2d, 0x00, 0x9e, 0x09, 0x4c, 0x6b, 0x85, 0x69,
+ 0xd5, 0xb8, 0x84, 0xea, 0xdd, 0x00, 0xad, 0xef, 0x5a, 0xf4, 0x2c, 0x90, 0x21, 0x0b, 0x61, 0xcd,
+ 0x54, 0xa9, 0xe0, 0xb5, 0x45, 0x86, 0xc6, 0xe7, 0xa0, 0x45, 0x2a, 0x22, 0x70, 0xf8, 0x28, 0x02,
+ 0x07, 0x25, 0x06, 0x1e, 0x45, 0xe3, 0x1f, 0x0a, 0x3c, 0x3a, 0xc1, 0x24, 0xb4, 0xce, 0xc1, 0xc1,
+ 0x87, 0x04, 0xe2, 0x4d, 0xd0, 0x7c, 0xdc, 0x9b, 0xfa, 0x81, 0x73, 0xc5, 0x03, 0xa6, 0x9a, 0x52,
+ 0x40, 0xa1, 0x64, 0xde, 0x34, 0x09, 0x25, 0x98, 0x8b, 0xe6, 0xa1, 0x44, 0xe2, 0x72, 0x38, 0xc2,
+ 0xe8, 0x42, 0xfd, 0x95, 0x13, 0x90, 0x63, 0xc7, 0x5d, 0x9a, 0x73, 0xc6, 0x67, 0xb0, 0x16, 0xd3,
+ 0x21, 0xf3, 0x8e, 0x7a, 0xc9, 0x6d, 0xac, 0x99, 0xbc, 0x61, 0xf4, 0x60, 0xed, 0xd8, 0x19, 0xdb,
+ 0x02, 0xf0, 0x96, 0x64, 0xcf, 0xaf, 0x01, 0xc5, 0x95, 0x08, 0x83, 0x3e, 0x83, 0x0a, 0x3f, 0x43,
+ 0x42, 0x43, 0x06, 0x00, 0x8b, 0x01, 0x46, 0x07, 0x9e, 0x50, 0x87, 0x42, 0x28, 0x9f, 0xb5, 0x1c,
+ 0x7b, 0x11, 0x5b, 0xa3, 0xbb, 0xb0, 0x28, 0xb2, 0xca, 0x38, 0x81, 0x46, 0x5a, 0xc1, 0x7d, 0x6e,
+ 0x8a, 0x31, 0x6c, 0x24, 0x16, 0x32, 0x71, 0xff, 0xc2, 0x1a, 0xe1, 0x45, 0xac, 0xdd, 0xa0, 0xc7,
+ 0xb2, 0xdf, 0x19, 0x5b, 0x23, 0x1c, 0x30, 0x9b, 0x59, 0x68, 0xd9, 0xb2, 0x81, 0xf1, 0x1b, 0xd8,
+ 0xcc, 0xd6, 0x77, 0x1f, 0xe3, 0xdf, 0x29, 0xf0, 0x88, 0x6e, 0xd4, 0x4b, 0xd7, 0x5d, 0xf2, 0x45,
+ 0x97, 0x40, 0xdd, 0xe2, 0xdc, 0x75, 0x43, 0x89, 0xc9, 0x1b, 0x67, 0x12, 0x92, 0x10, 0xfa, 0x8d,
+ 0x7e, 0x05, 0x65, 0xcf, 0xb7, 0xb1, 0xcf, 0x70, 0x69, 0xf5, 0xe0, 0x59, 0xa8, 0x3b, 0xd3, 0xdc,
+ 0x66, 0x8b, 0x0e, 0x35, 0xf9, 0x0c, 0xe3, 0x05, 0x94, 0x59, 0x9b, 0x62, 0xce, 0x45, 0xeb, 0xe2,
+ 0x48, 0xa0, 0x4f, 0xeb, 0x75, 0x8b, 0x93, 0x94, 0x2f, 0x5f, 0xb6, 0x8f, 0xea, 0x05, 0x9a, 0xdf,
+ 0xf3, 0x8b, 0xdd, 0x27, 0x86, 0xff, 0x2c, 0xc6, 0x0f, 0xfb, 0xd2, 0x02, 0x18, 0x91, 0x46, 0x1e,
+ 0x3c, 0xde, 0x40, 0x8f, 0xa1, 0xe2, 0xf5, 0xfb, 0x01, 0x26, 0x22, 0x76, 0xa2, 0x25, 0x73, 0xbf,
+ 0x1c, 0xcb, 0x7d, 0x3a, 0xba, 0xef, 0xb9, 0xae, 0xf7, 0x96, 0x41, 0xba, 0x6a, 0x8a, 0x16, 0xbd,
+ 0xa3, 0x68, 0xcc, 0x3b, 0x23, 0xec, 0x0f, 0x70, 0x20, 0xae, 0x7d, 0xa0, 0xa2, 0x73, 0x26, 0xa1,
+ 0xb7, 0xbf, 0xed, 0x04, 0x56, 0xd7, 0xc5, 0x9d, 0xb7, 0x96, 0xfb, 0x26, 0xbc, 0xfd, 0x85, 0xec,
+ 0x2b, 0xcb, 0x7d, 0x23, 0x99, 0x8c, 0x76, 0x77, 0x26, 0x03, 0xef, 0xcd, 0x64, 0x04, 0x31, 0xa9,
+ 0xe6, 0x13, 0x93, 0x5a, 0x9a, 0x98, 0x1c, 0xc2, 0x83, 0xc4, 0x06, 0xdd, 0x67, 0x97, 0x87, 0x21,
+ 0xaf, 0x7c, 0x65, 0x8d, 0x07, 0x53, 0x6b, 0xb0, 0x3c, 0x2c, 0xff, 0x77, 0xf4, 0xa8, 0x8a, 0xa9,
+ 0x12, 0x26, 0x1f, 0x83, 0xe6, 0x86, 0x42, 0x61, 0xf4, 0x6e, 0xa8, 0x2a, 0x67, 0x4e, 0x33, 0x94,
+ 0x98, 0x72, 0xaa, 0x7e, 0x06, 0x6a, 0x28, 0xa6, 0xc9, 0x47, 0x91, 0x46, 0x50, 0x0e, 0xf6, 0x4d,
+ 0x8f, 0x0f, 0x7b, 0xd4, 0x32, 0xe3, 0x0a, 0x26, 0x6f, 0x70, 0x22, 0xe7, 0x7a, 0xbe, 0x78, 0x7a,
+ 0xf1, 0x86, 0x31, 0x85, 0x8f, 0x4d, 0xeb, 0xed, 0xa1, 0xbb, 0x20, 0xe8, 0xdd, 0xf1, 0xee, 0x36,
+ 0x3e, 0x85, 0xba, 0x54, 0x2b, 0xc2, 0x13, 0x3e, 0x5c, 0x94, 0xd8, 0xc3, 0xe5, 0x2f, 0xd0, 0x78,
+ 0x65, 0x85, 0x78, 0x79, 0xec, 0xf9, 0x94, 0xa3, 0x7c, 0x48, 0x3b, 0x8f, 0x61, 0x3d, 0x43, 0xff,
+ 0xdd, 0x6f, 0xc4, 0x6f, 0x15, 0xd8, 0xa2, 0xc0, 0x2f, 0x17, 0x0b, 0x8e, 0x3d, 0x9f, 0xf2, 0x8d,
+ 0xef, 0xd3, 0x1b, 0xed, 0x2e, 0x4f, 0xd7, 0x0c, 0x14, 0x2a, 0xc7, 0x51, 0xc8, 0xf8, 0x9f, 0x02,
+ 0x4f, 0xf3, 0x6c, 0x16, 0x11, 0xb8, 0x98, 0x4f, 0xc2, 0x9f, 0x85, 0x16, 0xdf, 0x3c, 0xb1, 0x19,
+ 0x05, 0x94, 0x49, 0xc3, 0x45, 0x74, 0x0c, 0x3f, 0x48, 0xf4, 0xc4, 0x42, 0x5c, 0xb8, 0x25, 0xc4,
+ 0x94, 0xf5, 0x52, 0x27, 0x3b, 0xdd, 0x19, 0xc1, 0x01, 0xf3, 0xb0, 0x66, 0x6a, 0x54, 0x72, 0x48,
+ 0x05, 0x67, 0x25, 0x55, 0xa9, 0x17, 0xce, 0x4a, 0x6a, 0xb1, 0x5e, 0x32, 0xfe, 0x13, 0x25, 0x69,
+ 0x70, 0x38, 0x3b, 0xc7, 0x41, 0x40, 0x13, 0x6c, 0x49, 0xa7, 0x4a, 0x46, 0xb7, 0x38, 0x8f, 0xf1,
+ 0x19, 0x7b, 0x91, 0xf5, 0xd6, 0x7b, 0x08, 0xe5, 0x6f, 0xa6, 0xd8, 0x9f, 0x09, 0x26, 0xcf, 0x1b,
+ 0x94, 0x02, 0xa5, 0x5d, 0xb8, 0x0f, 0x36, 0x3a, 0xb0, 0x7d, 0xec, 0xb8, 0x04, 0xfb, 0x97, 0x43,
+ 0x2b, 0xf8, 0xca, 0x21, 0xc3, 0x4b, 0x67, 0x30, 0xb6, 0xc8, 0xd4, 0xc7, 0x8b, 0x3e, 0xe6, 0x82,
+ 0xa1, 0x15, 0x32, 0x20, 0xf6, 0x6d, 0xfc, 0x02, 0x76, 0xf2, 0x55, 0x49, 0x14, 0x60, 0xf3, 0x94,
+ 0xd8, 0xbc, 0x09, 0x6c, 0x1d, 0x5d, 0x13, 0xdf, 0xea, 0x09, 0xe3, 0xa3, 0x69, 0x0b, 0xf2, 0x34,
+ 0xf1, 0x4a, 0x8a, 0x9e, 0x66, 0x2a, 0x17, 0x9c, 0xda, 0x46, 0x07, 0x9e, 0xe6, 0x69, 0x14, 0x76,
+ 0x6e, 0x82, 0x16, 0x84, 0x42, 0x01, 0x59, 0x52, 0xc0, 0xee, 0x64, 0x67, 0x30, 0xc6, 0x76, 0x87,
+ 0xe0, 0x6b, 0x22, 0x0e, 0x05, 0x70, 0x51, 0x1b, 0x5f, 0x13, 0xc3, 0x03, 0xfd, 0x04, 0xcf, 0x2f,
+ 0xbe, 0x50, 0xc0, 0xe5, 0xab, 0xcf, 0xb1, 0x03, 0x41, 0x96, 0xb5, 0xd0, 0xa1, 0xc0, 0x98, 0xc1,
+ 0x46, 0xa6, 0x42, 0xe1, 0x4e, 0x22, 0x1a, 0x4a, 0x32, 0x1a, 0x49, 0x5f, 0x0b, 0xb7, 0xf8, 0x5a,
+ 0x4c, 0xf9, 0x3a, 0x82, 0x46, 0xa4, 0x5a, 0x1c, 0xd5, 0x65, 0x7a, 0x6a, 0xc2, 0x7a, 0x86, 0xba,
+ 0xf7, 0xf1, 0xb3, 0x01, 0x2b, 0x23, 0x3e, 0x41, 0x78, 0x19, 0x36, 0x0f, 0xfe, 0x5f, 0x0f, 0x91,
+ 0xe9, 0x12, 0xfb, 0x57, 0x4e, 0x0f, 0xa3, 0x3f, 0x40, 0x7d, 0xbe, 0x62, 0x89, 0xb6, 0x93, 0xb7,
+ 0x79, 0xaa, 0xac, 0xaa, 0xef, 0xe4, 0x0f, 0xe0, 0xf6, 0x19, 0xda, 0xbb, 0xbf, 0xef, 0x96, 0xd5,
+ 0x82, 0xae, 0xfc, 0x04, 0x9d, 0xc7, 0x2b, 0x0b, 0x8d, 0x8c, 0xda, 0x21, 0x5f, 0x73, 0x3d, 0xb7,
+ 0xaa, 0x18, 0x5b, 0x6c, 0x5f, 0x41, 0x5f, 0xc3, 0x6a, 0xb2, 0xb6, 0x86, 0xb6, 0x92, 0xd6, 0xcc,
+ 0x15, 0xf9, 0xf4, 0xa7, 0x79, 0xdd, 0x59, 0xab, 0xb7, 0xa1, 0x16, 0x2f, 0x1f, 0xa1, 0x0d, 0x39,
+ 0x39, 0x55, 0x87, 0xd3, 0x37, 0xb3, 0x3b, 0xd3, 0x21, 0x60, 0x05, 0xc8, 0x8c, 0xf2, 0x0d, 0x7a,
+ 0x9e, 0x58, 0x21, 0xa7, 0x08, 0xa5, 0xbf, 0xb8, 0x65, 0x54, 0x5a, 0xe1, 0xd7, 0xb0, 0x9a, 0xac,
+ 0x1a, 0xc8, 0x20, 0x65, 0x16, 0x3a, 0x64, 0x90, 0xb2, 0x8b, 0x0d, 0xc9, 0x20, 0x9d, 0x83, 0x16,
+ 0x3d, 0xf4, 0xe5, 0x8e, 0xce, 0xd7, 0x17, 0xe4, 0x8e, 0xa6, 0xaa, 0x02, 0xc9, 0xe5, 0x2e, 0x00,
+ 0x24, 0x33, 0x46, 0xeb, 0xf1, 0x37, 0x56, 0xa2, 0x40, 0xa0, 0xeb, 0x59, 0x5d, 0x69, 0xe7, 0x7f,
+ 0x0b, 0xd5, 0xd8, 0xbf, 0x0e, 0x48, 0x4f, 0xee, 0x7f, 0xfc, 0x0f, 0x0f, 0x7d, 0x23, 0xb3, 0x2f,
+ 0x33, 0x9e, 0xc9, 0x57, 0x9a, 0x8c, 0x67, 0xe6, 0x53, 0x50, 0xc6, 0x33, 0xfb, 0x71, 0x97, 0x0c,
+ 0xc0, 0x25, 0x54, 0x63, 0x4f, 0x03, 0x94, 0xe1, 0x66, 0xda, 0xe0, 0x8c, 0xb7, 0x44, 0x72, 0xd1,
+ 0xdf, 0xc3, 0xc7, 0x73, 0x64, 0x1c, 0x3d, 0xcd, 0x65, 0xe9, 0x7c, 0xf1, 0xed, 0x5b, 0x58, 0x7c,
+ 0x3c, 0x22, 0x67, 0xa0, 0x86, 0xcc, 0x17, 0x3d, 0x89, 0x80, 0x2e, 0x49, 0xc1, 0xf5, 0x46, 0xba,
+ 0x23, 0xcb, 0xd4, 0x1e, 0xac, 0xa5, 0xd8, 0x29, 0x8a, 0x30, 0x26, 0x8f, 0x38, 0xeb, 0x9f, 0xdc,
+ 0x30, 0x22, 0x6d, 0x30, 0x81, 0xc7, 0xd9, 0x64, 0x0e, 0xbd, 0xb8, 0x8d, 0xec, 0x71, 0x75, 0x9f,
+ 0xbe, 0x1f, 0x27, 0x4c, 0xba, 0xd6, 0x0d, 0xe1, 0x55, 0xd2, 0x9b, 0x79, 0x78, 0x4d, 0x71, 0xb7,
+ 0x79, 0x78, 0x4d, 0x33, 0xa3, 0x94, 0x8e, 0xf9, 0x2a, 0x92, 0xd4, 0x91, 0x53, 0xc0, 0x92, 0x3a,
+ 0xf2, 0x0a, 0x50, 0x49, 0x1d, 0x63, 0x78, 0x98, 0x55, 0xf0, 0x41, 0xcf, 0x32, 0x97, 0x49, 0x96,
+ 0x9f, 0xf4, 0xe7, 0x37, 0x0f, 0xca, 0xd2, 0xf7, 0x67, 0x68, 0xe4, 0x51, 0x2c, 0xf4, 0x43, 0x99,
+ 0x03, 0x37, 0xf2, 0x3d, 0x7d, 0xf7, 0xf6, 0x81, 0x29, 0xdd, 0xbb, 0xca, 0xbe, 0x42, 0xcf, 0x4a,
+ 0x36, 0x6d, 0x92, 0x67, 0xe5, 0x46, 0x22, 0x27, 0xcf, 0xca, 0xcd, 0xec, 0x2b, 0xe9, 0xf3, 0x1b,
+ 0x78, 0x90, 0x41, 0x6d, 0x90, 0x11, 0x83, 0xe6, 0x1c, 0xa2, 0xa5, 0x3f, 0xbb, 0x71, 0x4c, 0x96,
+ 0x32, 0x0c, 0x6b, 0x29, 0x76, 0x21, 0x73, 0x2e, 0x8f, 0xe7, 0xc8, 0x9c, 0xcb, 0xa5, 0x26, 0x09,
+ 0x35, 0x87, 0xfb, 0xbf, 0xa3, 0x13, 0x5c, 0xab, 0xdb, 0xec, 0x79, 0xa3, 0x3d, 0xfe, 0xf9, 0x63,
+ 0xcf, 0x1f, 0xec, 0xf1, 0x65, 0xf8, 0x1f, 0xd4, 0x7b, 0x03, 0x4f, 0xb4, 0x27, 0xdd, 0x6e, 0x85,
+ 0x89, 0x7e, 0xfa, 0x5d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa9, 0xd0, 0x63, 0x09, 0xe7, 0x1e, 0x00,
+ 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/ruby/proto/gitaly/commit_pb.rb b/ruby/proto/gitaly/commit_pb.rb
index 36935c0ef..6cb34706f 100644
--- a/ruby/proto/gitaly/commit_pb.rb
+++ b/ruby/proto/gitaly/commit_pb.rb
@@ -58,6 +58,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
optional :path, :bytes, 5
optional :max_count, :int32, 6
optional :all, :bool, 7
+ optional :first_parent, :bool, 8
end
add_message "gitaly.CountCommitsResponse" do
optional :count, :int32, 1
@@ -150,6 +151,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
optional :after, :message, 9, "google.protobuf.Timestamp"
optional :before, :message, 10, "google.protobuf.Timestamp"
optional :all, :bool, 11
+ optional :first_parent, :bool, 12
end
add_message "gitaly.FindCommitsResponse" do
repeated :commits, :message, 1, "gitaly.GitCommit"