Commit b3ff4c3d authored by Jacob Vosmaer (GitLab)'s avatar Jacob Vosmaer (GitLab)

Merge branch 'sh-bump-gitaly-proto-23-0' into 'master'

Bump gitaly-proto to v0.23.0

See merge request !155
parents 5d4ecb19 2d954125
......@@ -40,6 +40,8 @@ It has these top-level messages:
FindAllCommitsResponse
CommitLanguagesRequest
CommitLanguagesResponse
RawBlameRequest
RawBlameResponse
CommitDiffRequest
CommitDiffResponse
CommitDeltaRequest
......@@ -61,6 +63,8 @@ It has these top-level messages:
FindLocalBranchCommitAuthor
FindAllBranchesRequest
FindAllBranchesResponse
FindAllTagsRequest
FindAllTagsResponse
RepositoryExistsRequest
RepositoryExistsResponse
RepackIncrementalRequest
......
......@@ -6,6 +6,7 @@ package gitaly
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import google_protobuf "github.com/golang/protobuf/ptypes/timestamp"
import (
context "golang.org/x/net/context"
......@@ -343,8 +344,11 @@ func (m *CommitsBetweenResponse) GetCommits() []*GitCommit {
}
type CountCommitsRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
Revision []byte `protobuf:"bytes,2,opt,name=revision,proto3" json:"revision,omitempty"`
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
Revision []byte `protobuf:"bytes,2,opt,name=revision,proto3" json:"revision,omitempty"`
After *google_protobuf.Timestamp `protobuf:"bytes,3,opt,name=after" json:"after,omitempty"`
Before *google_protobuf.Timestamp `protobuf:"bytes,4,opt,name=before" json:"before,omitempty"`
Path []byte `protobuf:"bytes,5,opt,name=path,proto3" json:"path,omitempty"`
}
func (m *CountCommitsRequest) Reset() { *m = CountCommitsRequest{} }
......@@ -366,6 +370,27 @@ func (m *CountCommitsRequest) GetRevision() []byte {
return nil
}
func (m *CountCommitsRequest) GetAfter() *google_protobuf.Timestamp {
if m != nil {
return m.After
}
return nil
}
func (m *CountCommitsRequest) GetBefore() *google_protobuf.Timestamp {
if m != nil {
return m.Before
}
return nil
}
func (m *CountCommitsRequest) GetPath() []byte {
if m != nil {
return m.Path
}
return nil
}
type CountCommitsResponse struct {
Count int32 `protobuf:"varint,1,opt,name=count" json:"count,omitempty"`
}
......@@ -714,6 +739,54 @@ func (m *CommitLanguagesResponse_Language) GetColor() string {
return ""
}
type RawBlameRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
Revision []byte `protobuf:"bytes,2,opt,name=revision,proto3" json:"revision,omitempty"`
Path []byte `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
}
func (m *RawBlameRequest) Reset() { *m = RawBlameRequest{} }
func (m *RawBlameRequest) String() string { return proto.CompactTextString(m) }
func (*RawBlameRequest) ProtoMessage() {}
func (*RawBlameRequest) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{21} }
func (m *RawBlameRequest) GetRepository() *Repository {
if m != nil {
return m.Repository
}
return nil
}
func (m *RawBlameRequest) GetRevision() []byte {
if m != nil {
return m.Revision
}
return nil
}
func (m *RawBlameRequest) GetPath() []byte {
if m != nil {
return m.Path
}
return nil
}
type RawBlameResponse struct {
Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
}
func (m *RawBlameResponse) Reset() { *m = RawBlameResponse{} }
func (m *RawBlameResponse) String() string { return proto.CompactTextString(m) }
func (*RawBlameResponse) ProtoMessage() {}
func (*RawBlameResponse) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{22} }
func (m *RawBlameResponse) GetData() []byte {
if m != nil {
return m.Data
}
return nil
}
func init() {
proto.RegisterType((*CommitStatsRequest)(nil), "gitaly.CommitStatsRequest")
proto.RegisterType((*CommitStatsResponse)(nil), "gitaly.CommitStatsResponse")
......@@ -737,6 +810,8 @@ func init() {
proto.RegisterType((*CommitLanguagesRequest)(nil), "gitaly.CommitLanguagesRequest")
proto.RegisterType((*CommitLanguagesResponse)(nil), "gitaly.CommitLanguagesResponse")
proto.RegisterType((*CommitLanguagesResponse_Language)(nil), "gitaly.CommitLanguagesResponse.Language")
proto.RegisterType((*RawBlameRequest)(nil), "gitaly.RawBlameRequest")
proto.RegisterType((*RawBlameResponse)(nil), "gitaly.RawBlameResponse")
proto.RegisterEnum("gitaly.TreeEntryResponse_ObjectType", TreeEntryResponse_ObjectType_name, TreeEntryResponse_ObjectType_value)
proto.RegisterEnum("gitaly.TreeEntry_EntryType", TreeEntry_EntryType_name, TreeEntry_EntryType_value)
proto.RegisterEnum("gitaly.FindAllCommitsRequest_Order", FindAllCommitsRequest_Order_name, FindAllCommitsRequest_Order_value)
......@@ -764,6 +839,7 @@ type CommitServiceClient interface {
// Use a stream to paginate the result set
FindAllCommits(ctx context.Context, in *FindAllCommitsRequest, opts ...grpc.CallOption) (CommitService_FindAllCommitsClient, error)
CommitLanguages(ctx context.Context, in *CommitLanguagesRequest, opts ...grpc.CallOption) (*CommitLanguagesResponse, error)
RawBlame(ctx context.Context, in *RawBlameRequest, opts ...grpc.CallOption) (CommitService_RawBlameClient, error)
}
type commitServiceClient struct {
......@@ -979,6 +1055,38 @@ func (c *commitServiceClient) CommitLanguages(ctx context.Context, in *CommitLan
return out, nil
}
func (c *commitServiceClient) RawBlame(ctx context.Context, in *RawBlameRequest, opts ...grpc.CallOption) (CommitService_RawBlameClient, error) {
stream, err := grpc.NewClientStream(ctx, &_CommitService_serviceDesc.Streams[5], c.cc, "/gitaly.CommitService/RawBlame", opts...)
if err != nil {
return nil, err
}
x := &commitServiceRawBlameClient{stream}
if err := x.ClientStream.SendMsg(in); err != nil {
return nil, err
}
if err := x.ClientStream.CloseSend(); err != nil {
return nil, err
}
return x, nil
}
type CommitService_RawBlameClient interface {
Recv() (*RawBlameResponse, error)
grpc.ClientStream
}
type commitServiceRawBlameClient struct {
grpc.ClientStream
}
func (x *commitServiceRawBlameClient) Recv() (*RawBlameResponse, error) {
m := new(RawBlameResponse)
if err := x.ClientStream.RecvMsg(m); err != nil {
return nil, err
}
return m, nil
}
// Server API for CommitService service
type CommitServiceServer interface {
......@@ -993,6 +1101,7 @@ type CommitServiceServer interface {
// Use a stream to paginate the result set
FindAllCommits(*FindAllCommitsRequest, CommitService_FindAllCommitsServer) error
CommitLanguages(context.Context, *CommitLanguagesRequest) (*CommitLanguagesResponse, error)
RawBlame(*RawBlameRequest, CommitService_RawBlameServer) error
}
func RegisterCommitServiceServer(s *grpc.Server, srv CommitServiceServer) {
......@@ -1194,6 +1303,27 @@ func _CommitService_CommitLanguages_Handler(srv interface{}, ctx context.Context
return interceptor(ctx, in, info, handler)
}
func _CommitService_RawBlame_Handler(srv interface{}, stream grpc.ServerStream) error {
m := new(RawBlameRequest)
if err := stream.RecvMsg(m); err != nil {
return err
}
return srv.(CommitServiceServer).RawBlame(m, &commitServiceRawBlameServer{stream})
}
type CommitService_RawBlameServer interface {
Send(*RawBlameResponse) error
grpc.ServerStream
}
type commitServiceRawBlameServer struct {
grpc.ServerStream
}
func (x *commitServiceRawBlameServer) Send(m *RawBlameResponse) error {
return x.ServerStream.SendMsg(m)
}
var _CommitService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.CommitService",
HandlerType: (*CommitServiceServer)(nil),
......@@ -1245,6 +1375,11 @@ var _CommitService_serviceDesc = grpc.ServiceDesc{
Handler: _CommitService_FindAllCommits_Handler,
ServerStreams: true,
},
{
StreamName: "RawBlame",
Handler: _CommitService_RawBlame_Handler,
ServerStreams: true,
},
},
Metadata: "commit.proto",
}
......@@ -1252,68 +1387,76 @@ var _CommitService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("commit.proto", fileDescriptor1) }
var fileDescriptor1 = []byte{
// 1008 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xdd, 0x6e, 0xe3, 0x44,
0x14, 0x8e, 0xf3, 0xd7, 0xf8, 0x34, 0x04, 0x77, 0xd8, 0x85, 0xd4, 0xdd, 0xdd, 0x46, 0x03, 0x48,
0x59, 0x2d, 0x0a, 0xab, 0x20, 0x24, 0xb8, 0x42, 0xed, 0x36, 0x2d, 0x85, 0xee, 0x1a, 0x4d, 0x23,
0x71, 0x59, 0xb9, 0xf1, 0xd0, 0x0e, 0x38, 0x9e, 0x60, 0x4f, 0xcb, 0x06, 0x9e, 0x00, 0x89, 0xf7,
0xe0, 0x8a, 0x97, 0xe1, 0x9e, 0x17, 0xe1, 0x0a, 0xcd, 0x8f, 0xff, 0x12, 0x47, 0x48, 0xac, 0xc2,
0x4d, 0x74, 0x7e, 0xc6, 0xe7, 0x7c, 0x73, 0xe6, 0x3b, 0x67, 0x26, 0xd0, 0x9d, 0xf1, 0xf9, 0x9c,
0x89, 0xd1, 0x22, 0xe6, 0x82, 0xa3, 0xf6, 0x0d, 0x13, 0x7e, 0xb8, 0x74, 0xbb, 0xc9, 0xad, 0x1f,
0xd3, 0x40, 0x5b, 0x71, 0x00, 0xe8, 0x85, 0x5a, 0x75, 0x29, 0x7c, 0x91, 0x10, 0xfa, 0xe3, 0x1d,
0x4d, 0x04, 0x1a, 0x03, 0xc4, 0x74, 0xc1, 0x13, 0x26, 0x78, 0xbc, 0xec, 0x5b, 0x03, 0x6b, 0xb8,
0x3b, 0x46, 0x23, 0x1d, 0x60, 0x44, 0x32, 0x0f, 0x29, 0xac, 0x42, 0x2e, 0x74, 0x62, 0x7a, 0xcf,
0x12, 0xc6, 0xa3, 0x7e, 0x7d, 0x60, 0x0d, 0xbb, 0x24, 0xd3, 0xf1, 0x0c, 0xde, 0x29, 0x65, 0x49,
0x16, 0x3c, 0x4a, 0x28, 0x72, 0xa0, 0xc1, 0x59, 0xa0, 0xe2, 0xdb, 0x44, 0x8a, 0xe8, 0x11, 0xd8,
0x7e, 0x10, 0x30, 0xc1, 0x78, 0x94, 0xa8, 0x28, 0x2d, 0x92, 0x1b, 0xa4, 0x37, 0xa0, 0x21, 0xd5,
0xde, 0x86, 0xf6, 0x66, 0x06, 0xfc, 0xab, 0x05, 0xef, 0xe9, 0x2c, 0xe7, 0xc9, 0x51, 0x34, 0xa3,
0x89, 0xe0, 0xf1, 0x9b, 0x6c, 0xe8, 0x10, 0x76, 0x7d, 0x13, 0xe6, 0x8a, 0x05, 0x0a, 0x8d, 0x4d,
0x20, 0x35, 0x9d, 0x07, 0x68, 0x1f, 0x3a, 0xb3, 0x5b, 0x16, 0x06, 0xd2, 0xdb, 0x50, 0xde, 0x1d,
0xa5, 0x9f, 0x07, 0xf8, 0x39, 0xf4, 0xd7, 0xa1, 0x98, 0x5d, 0x3f, 0x80, 0xd6, 0xbd, 0x1f, 0xde,
0x51, 0x05, 0xa3, 0x43, 0xb4, 0x82, 0x7f, 0xb3, 0xc0, 0x99, 0xc6, 0x94, 0x4e, 0x22, 0x11, 0x2f,
0xb7, 0x74, 0x0e, 0x08, 0x41, 0x73, 0xe1, 0x8b, 0x5b, 0x85, 0xb6, 0x4b, 0x94, 0x2c, 0xe1, 0x84,
0x6c, 0xce, 0x44, 0xbf, 0x39, 0xb0, 0x86, 0x0d, 0xa2, 0x15, 0xfc, 0xa7, 0x05, 0x7b, 0x05, 0x38,
0x06, 0xfa, 0x67, 0xd0, 0x14, 0xcb, 0x85, 0x46, 0xde, 0x1b, 0x7f, 0x90, 0x22, 0x59, 0x5b, 0x38,
0xf2, 0xae, 0xbf, 0xa7, 0x33, 0x31, 0x5d, 0x2e, 0x28, 0x51, 0x5f, 0xa4, 0x47, 0x5d, 0xcf, 0x8f,
0x1a, 0x41, 0x33, 0x61, 0x3f, 0x53, 0x85, 0xa5, 0x41, 0x94, 0x2c, 0x6d, 0x73, 0x1e, 0x50, 0x05,
0xa5, 0x45, 0x94, 0x2c, 0x6d, 0x81, 0x2f, 0xfc, 0x7e, 0x4b, 0x63, 0x96, 0x32, 0xfe, 0x14, 0x20,
0xcf, 0x80, 0x00, 0xda, 0x2f, 0xbc, 0x97, 0x2f, 0xcf, 0xa7, 0x4e, 0x0d, 0x75, 0xa0, 0x79, 0x7c,
0xe1, 0x1d, 0x3b, 0x96, 0x94, 0xa6, 0x64, 0x32, 0x71, 0xea, 0x68, 0x07, 0x1a, 0xd3, 0xa3, 0x33,
0xa7, 0x81, 0x39, 0x3c, 0xd4, 0xa7, 0x92, 0x1c, 0x53, 0xf1, 0x13, 0xa5, 0xd1, 0x9b, 0xd4, 0x19,
0x41, 0xf3, 0xbb, 0x98, 0xcf, 0x4d, 0x8d, 0x95, 0x8c, 0x7a, 0x50, 0x17, 0xdc, 0x54, 0xb7, 0x2e,
0x38, 0x9e, 0xc0, 0xbb, 0xab, 0x09, 0x4d, 0x25, 0x9f, 0xc1, 0x8e, 0xee, 0xce, 0xa4, 0x6f, 0x0d,
0x1a, 0xc3, 0xdd, 0xf1, 0x5e, 0x9a, 0xee, 0x8c, 0x09, 0xfd, 0x0d, 0x49, 0x57, 0x60, 0x2a, 0xdb,
0xe7, 0x2e, 0x32, 0xf6, 0xad, 0x75, 0xe9, 0x47, 0xf0, 0xa0, 0x9c, 0x26, 0x27, 0xec, 0x4c, 0xda,
0x55, 0x8a, 0x16, 0xd1, 0x0a, 0xfe, 0xcb, 0x02, 0x3b, 0x3b, 0xf8, 0x8a, 0x56, 0xde, 0x87, 0x4e,
0xcc, 0xb9, 0xb8, 0xca, 0x8f, 0x7d, 0x47, 0xea, 0x9e, 0x3e, 0xfa, 0x35, 0x1a, 0x7e, 0x6c, 0xa8,
0xd5, 0x54, 0xd4, 0x3a, 0x58, 0xa3, 0xd6, 0x48, 0xfd, 0x16, 0x18, 0x95, 0x72, 0xa5, 0x55, 0xe0,
0xca, 0x63, 0x00, 0x5d, 0x33, 0x95, 0xb5, 0xad, 0xb2, 0xda, 0xda, 0xe2, 0xb1, 0x00, 0x3f, 0x03,
0x3b, 0x8b, 0x92, 0x31, 0xa5, 0x96, 0x31, 0xc5, 0x2a, 0x30, 0xa9, 0x81, 0x7f, 0x81, 0x87, 0x67,
0x54, 0xa4, 0xf9, 0x19, 0x4d, 0xfe, 0xc7, 0xa6, 0x94, 0xc4, 0x59, 0x4d, 0x9e, 0x13, 0x87, 0x6a,
0xd3, 0x2a, 0x71, 0xf2, 0x2e, 0x4c, 0x57, 0xe0, 0x6b, 0x70, 0x2e, 0x58, 0x22, 0x4e, 0x59, 0xb8,
0x35, 0xf8, 0xf8, 0x29, 0xec, 0x15, 0x72, 0xe4, 0x94, 0x91, 0xfb, 0xd0, 0x18, 0xbb, 0x44, 0x2b,
0x78, 0x06, 0x7b, 0xa7, 0x2c, 0x0a, 0x0c, 0xbd, 0xb7, 0x84, 0xe7, 0x0b, 0x40, 0xc5, 0x24, 0x06,
0xd0, 0x53, 0x68, 0x6b, 0x1e, 0x98, 0x0c, 0x15, 0xed, 0x66, 0x16, 0xe0, 0xbf, 0x2d, 0x78, 0x28,
0x23, 0x1c, 0x85, 0xe1, 0x76, 0x1b, 0x0e, 0x1d, 0x80, 0x3d, 0xf7, 0x5f, 0x5f, 0xe9, 0xe6, 0xd2,
0xf7, 0x59, 0x67, 0xee, 0xbf, 0x56, 0x4d, 0xa8, 0xe6, 0xe3, 0x0f, 0x6c, 0x91, 0xce, 0x42, 0x29,
0xa3, 0xcf, 0xa1, 0xc5, 0xe3, 0x80, 0xc6, 0x8a, 0xf4, 0xbd, 0xf1, 0xfb, 0x69, 0xee, 0x4a, 0xb8,
0x23, 0x4f, 0x2e, 0x25, 0xfa, 0x0b, 0xfc, 0x21, 0xb4, 0x94, 0x2e, 0xd9, 0xfe, 0xca, 0x7b, 0x35,
0x31, 0xbc, 0xf7, 0xbe, 0xf1, 0xf4, 0xac, 0x3c, 0x39, 0x9a, 0x4e, 0x9c, 0xba, 0x24, 0xde, 0x6a,
0xb0, 0xff, 0x32, 0xb1, 0x6e, 0xd3, 0xc1, 0x77, 0xe1, 0x47, 0x37, 0x77, 0xfe, 0xcd, 0xf6, 0xe8,
0xf7, 0x47, 0x76, 0xeb, 0x17, 0x52, 0x19, 0xc8, 0xa7, 0x60, 0x87, 0xa9, 0xd1, 0x80, 0x1e, 0xa6,
0xa9, 0x36, 0x7c, 0x33, 0x4a, 0x2d, 0x24, 0xff, 0xd4, 0xfd, 0x0a, 0x3a, 0xa9, 0x59, 0x1e, 0x4b,
0xe4, 0xcf, 0xa9, 0x99, 0x74, 0x4a, 0x96, 0x6c, 0x57, 0x8f, 0x2a, 0x05, 0xae, 0x4e, 0xb4, 0xa2,
0xc7, 0x66, 0xc8, 0x63, 0xf3, 0x36, 0xd0, 0xca, 0xf8, 0xf7, 0x36, 0xbc, 0x65, 0xde, 0x42, 0x34,
0xbe, 0x67, 0x33, 0x8a, 0xbe, 0x05, 0x67, 0xf5, 0xad, 0x80, 0x0e, 0xcb, 0x30, 0xd7, 0x1e, 0x34,
0xee, 0x60, 0xf3, 0x02, 0xbd, 0x11, 0x5c, 0x43, 0x27, 0xc5, 0x01, 0xdd, 0xaf, 0xb8, 0xac, 0x75,
0xa8, 0xfd, 0x8d, 0xd7, 0x38, 0xae, 0x3d, 0xb7, 0xd0, 0x25, 0xf4, 0xca, 0x77, 0x18, 0x7a, 0x5c,
0xce, 0xbd, 0x72, 0x99, 0xba, 0x4f, 0x36, 0xb9, 0x0b, 0x41, 0xbf, 0x86, 0x6e, 0xf1, 0xaa, 0x41,
0x07, 0xf9, 0x37, 0x6b, 0xf7, 0x9c, 0xfb, 0xa8, 0xda, 0x99, 0xed, 0xf3, 0x12, 0x7a, 0xe5, 0x61,
0x99, 0x23, 0xac, 0x9c, 0xe0, 0x39, 0xc2, 0xea, 0x19, 0xab, 0x10, 0x9e, 0x80, 0x9d, 0x8d, 0xb5,
0xbc, 0x78, 0xab, 0xd3, 0x34, 0x2f, 0xde, 0xda, 0x0c, 0x54, 0x51, 0x26, 0x00, 0xf9, 0x30, 0x42,
0xfb, 0xc5, 0x7e, 0x2d, 0x4d, 0x41, 0xd7, 0xad, 0x72, 0x65, 0x3b, 0xfc, 0x12, 0x76, 0x0b, 0xef,
0x67, 0xe4, 0x96, 0x2b, 0x5c, 0x7c, 0xba, 0xbb, 0x07, 0x95, 0xbe, 0x62, 0xad, 0xca, 0xfd, 0x9d,
0xd7, 0xaa, 0x72, 0x88, 0xe4, 0xb5, 0xaa, 0x1e, 0x0b, 0x6a, 0x97, 0x53, 0x78, 0x7b, 0xa5, 0x9d,
0xd0, 0x93, 0x8d, 0x7d, 0xa6, 0xc3, 0x1e, 0xfe, 0x4b, 0x1f, 0xe2, 0xda, 0x75, 0x5b, 0xfd, 0x43,
0xf9, 0xe4, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x57, 0x28, 0x96, 0x2a, 0xc7, 0x0c, 0x00, 0x00,
// 1122 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0x5d, 0x6f, 0x23, 0x35,
0x17, 0xee, 0xe4, 0xab, 0xc9, 0x69, 0xde, 0x6e, 0xea, 0x77, 0xcb, 0xa6, 0xd3, 0xdd, 0x6d, 0x65,
0x3e, 0xd4, 0xd5, 0xa2, 0xb4, 0x0a, 0x42, 0x82, 0x2b, 0xd4, 0x6e, 0xd3, 0x52, 0xe8, 0x6e, 0x90,
0x1b, 0x89, 0xcb, 0x6a, 0x9a, 0x71, 0x5b, 0xc3, 0xcc, 0x38, 0xcc, 0x38, 0xdd, 0x2d, 0xfc, 0x02,
0x24, 0xfe, 0x0a, 0x7f, 0x86, 0x7b, 0xc4, 0x3d, 0x3f, 0x81, 0x2b, 0xe4, 0x8f, 0x19, 0xcf, 0x24,
0x13, 0x90, 0x58, 0x65, 0x6f, 0x22, 0xfb, 0x1c, 0x8f, 0xcf, 0xe3, 0xe3, 0xe7, 0x3c, 0x3e, 0x81,
0xf6, 0x98, 0x87, 0x21, 0x13, 0xbd, 0x49, 0xcc, 0x05, 0x47, 0x8d, 0x1b, 0x26, 0xbc, 0xe0, 0xde,
0x6d, 0x27, 0xb7, 0x5e, 0x4c, 0x7d, 0x6d, 0x75, 0x77, 0x6e, 0x38, 0xbf, 0x09, 0xe8, 0xbe, 0x9a,
0x5d, 0x4d, 0xaf, 0xf7, 0x05, 0x0b, 0x69, 0x22, 0xbc, 0x70, 0xa2, 0x17, 0x60, 0x1f, 0xd0, 0x0b,
0xb5, 0xcd, 0x85, 0xf0, 0x44, 0x42, 0xe8, 0x0f, 0x53, 0x9a, 0x08, 0xd4, 0x07, 0x88, 0xe9, 0x84,
0x27, 0x4c, 0xf0, 0xf8, 0xbe, 0xeb, 0xec, 0x3a, 0x7b, 0x6b, 0x7d, 0xd4, 0xd3, 0x11, 0x7a, 0x24,
0xf3, 0x90, 0xdc, 0x2a, 0xe4, 0x42, 0x33, 0xa6, 0x77, 0x2c, 0x61, 0x3c, 0xea, 0x56, 0x76, 0x9d,
0xbd, 0x36, 0xc9, 0xe6, 0x78, 0x0c, 0xff, 0x2f, 0x44, 0x49, 0x26, 0x3c, 0x4a, 0x28, 0xea, 0x40,
0x95, 0x33, 0x5f, 0xed, 0xdf, 0x22, 0x72, 0x88, 0x1e, 0x43, 0xcb, 0xf3, 0x7d, 0x26, 0x18, 0x8f,
0x12, 0xb5, 0x4b, 0x9d, 0x58, 0x83, 0xf4, 0xfa, 0x34, 0xa0, 0xda, 0x5b, 0xd5, 0xde, 0xcc, 0x80,
0x7f, 0x76, 0xe0, 0x91, 0x8e, 0x72, 0x96, 0x1c, 0x46, 0x63, 0x9a, 0x08, 0x1e, 0xbf, 0xcd, 0x81,
0x76, 0x60, 0xcd, 0x33, 0xdb, 0x5c, 0x32, 0x5f, 0xa1, 0x69, 0x11, 0x48, 0x4d, 0x67, 0x3e, 0xda,
0x82, 0xe6, 0xf8, 0x96, 0x05, 0xbe, 0xf4, 0x56, 0x95, 0x77, 0x55, 0xcd, 0xcf, 0x7c, 0x7c, 0x00,
0xdd, 0x79, 0x28, 0xe6, 0xd4, 0x0f, 0xa1, 0x7e, 0xe7, 0x05, 0x53, 0xaa, 0x60, 0x34, 0x89, 0x9e,
0xe0, 0x5f, 0x1c, 0xe8, 0x8c, 0x62, 0x4a, 0x07, 0x91, 0x88, 0xef, 0x97, 0x74, 0x0f, 0x08, 0x41,
0x6d, 0xe2, 0x89, 0x5b, 0x85, 0xb6, 0x4d, 0xd4, 0x58, 0xc2, 0x09, 0x58, 0xc8, 0x44, 0xb7, 0xb6,
0xeb, 0xec, 0x55, 0x89, 0x9e, 0xe0, 0xdf, 0x1c, 0xd8, 0xc8, 0xc1, 0x31, 0xd0, 0x3f, 0x83, 0x9a,
0xb8, 0x9f, 0x68, 0xe4, 0xeb, 0xfd, 0x0f, 0x52, 0x24, 0x73, 0x0b, 0x7b, 0xc3, 0xab, 0xef, 0xe8,
0x58, 0x8c, 0xee, 0x27, 0x94, 0xa8, 0x2f, 0xd2, 0xab, 0xae, 0xd8, 0xab, 0x46, 0x50, 0x4b, 0xd8,
0x8f, 0x54, 0x61, 0xa9, 0x12, 0x35, 0x96, 0xb6, 0x90, 0xfb, 0x54, 0x41, 0xa9, 0x13, 0x35, 0x96,
0x36, 0xdf, 0x13, 0x5e, 0xb7, 0xae, 0x31, 0xcb, 0x31, 0xfe, 0x14, 0xc0, 0x46, 0x40, 0x00, 0x8d,
0x17, 0xc3, 0x97, 0x2f, 0xcf, 0x46, 0x9d, 0x15, 0xd4, 0x84, 0xda, 0xd1, 0xf9, 0xf0, 0xa8, 0xe3,
0xc8, 0xd1, 0x88, 0x0c, 0x06, 0x9d, 0x0a, 0x5a, 0x85, 0xea, 0xe8, 0xf0, 0xb4, 0x53, 0xc5, 0x1c,
0x36, 0xf5, 0xad, 0x24, 0x47, 0x54, 0xbc, 0xa6, 0x34, 0x7a, 0x9b, 0x3c, 0x23, 0xa8, 0x5d, 0xc7,
0x3c, 0x34, 0x39, 0x56, 0x63, 0xb4, 0x0e, 0x15, 0xc1, 0x4d, 0x76, 0x2b, 0x82, 0xe3, 0x01, 0xbc,
0x37, 0x1b, 0xd0, 0x64, 0xf2, 0x39, 0xac, 0xea, 0xf2, 0x4d, 0xba, 0xce, 0x6e, 0x75, 0x6f, 0xad,
0xbf, 0x91, 0x86, 0x3b, 0x65, 0x42, 0x7f, 0x43, 0xd2, 0x15, 0xf8, 0x0f, 0x47, 0xd6, 0xcf, 0x34,
0x32, 0x8e, 0x65, 0x95, 0x29, 0x3a, 0x80, 0xba, 0x77, 0x2d, 0x68, 0xac, 0x4e, 0xb0, 0xd6, 0x77,
0x7b, 0x5a, 0x3d, 0x7a, 0xa9, 0x7a, 0xf4, 0x46, 0xa9, 0x7a, 0x10, 0xbd, 0x10, 0xf5, 0xa1, 0x71,
0x45, 0xaf, 0x79, 0xac, 0xaf, 0xec, 0x9f, 0x3f, 0x31, 0x2b, 0x33, 0x12, 0xd6, 0x2d, 0x09, 0xf1,
0xc7, 0xf0, 0xb0, 0x78, 0x40, 0x5b, 0x2b, 0x63, 0x69, 0x57, 0x87, 0xab, 0x13, 0x3d, 0xc1, 0xbf,
0x3b, 0xd0, 0xca, 0x38, 0x57, 0xa2, 0x22, 0x5b, 0xd0, 0x8c, 0x39, 0x17, 0x97, 0x96, 0x71, 0xab,
0x72, 0x3e, 0xd4, 0xac, 0x9b, 0xab, 0x80, 0x7d, 0xc3, 0xea, 0x9a, 0x62, 0xf5, 0xf6, 0x1c, 0xab,
0x7b, 0xea, 0x37, 0x47, 0xe6, 0x94, 0xa6, 0xf5, 0x1c, 0x4d, 0x9f, 0x00, 0xe8, 0xeb, 0x52, 0x51,
0x1b, 0x2a, 0x6a, 0x4b, 0x5b, 0x86, 0xcc, 0xc7, 0xcf, 0xa1, 0x95, 0xed, 0x92, 0x91, 0x74, 0x25,
0x23, 0xa9, 0x93, 0x23, 0x71, 0x15, 0xff, 0x04, 0x9b, 0xa7, 0x54, 0xa4, 0xf1, 0x19, 0x4d, 0xde,
0xa1, 0x1e, 0x48, 0xce, 0xce, 0x06, 0xb7, 0x9c, 0xa5, 0xda, 0x34, 0xcb, 0x59, 0x2b, 0x00, 0xe9,
0x0a, 0x7c, 0x05, 0x9d, 0x73, 0x96, 0x88, 0x13, 0x16, 0x2c, 0x0d, 0x3e, 0x7e, 0x06, 0x1b, 0xb9,
0x18, 0x96, 0x32, 0xf2, 0x1c, 0x1a, 0x63, 0x9b, 0xe8, 0x09, 0x1e, 0xc3, 0xc6, 0x09, 0x8b, 0x7c,
0x53, 0x59, 0x4b, 0xc2, 0xf3, 0x05, 0xa0, 0x7c, 0x10, 0x03, 0xe8, 0x19, 0x34, 0x34, 0x0f, 0x4c,
0x84, 0x92, 0x4a, 0x37, 0x0b, 0xf0, 0x5f, 0x0e, 0x6c, 0xca, 0x1d, 0x0e, 0x83, 0x60, 0xc9, 0xa5,
0xbe, 0x0d, 0xad, 0xd0, 0x7b, 0x73, 0xa9, 0x8b, 0x4b, 0x3f, 0xa5, 0xcd, 0xd0, 0x7b, 0xa3, 0x8a,
0x50, 0x49, 0xf3, 0xf7, 0x6c, 0x92, 0xca, 0xb0, 0x1c, 0xa3, 0xcf, 0xa1, 0xce, 0x63, 0x9f, 0xc6,
0x8a, 0xf4, 0xeb, 0xfd, 0xf7, 0xd3, 0xd8, 0xa5, 0x70, 0x7b, 0x43, 0xb9, 0x94, 0xe8, 0x2f, 0xf0,
0x87, 0x50, 0x57, 0x73, 0xc9, 0xf6, 0x57, 0xc3, 0x57, 0x03, 0xc3, 0xfb, 0xe1, 0x37, 0x43, 0x2d,
0xd3, 0xc7, 0x87, 0xa3, 0x41, 0xa7, 0x22, 0x89, 0x37, 0xbb, 0xd9, 0x7f, 0x11, 0xcb, 0xdb, 0x54,
0x73, 0xcf, 0xbd, 0xe8, 0x66, 0xea, 0xdd, 0x2c, 0x8f, 0x7e, 0xbf, 0x66, 0x0d, 0x47, 0x2e, 0x94,
0x81, 0x7c, 0x02, 0xad, 0x20, 0x35, 0x1a, 0xd0, 0x7b, 0x69, 0xa8, 0x05, 0xdf, 0xf4, 0x52, 0x0b,
0xb1, 0x9f, 0xba, 0x5f, 0x41, 0x33, 0x35, 0xcb, 0x6b, 0x89, 0xbc, 0x90, 0x1a, 0xa5, 0x53, 0x63,
0xc9, 0x76, 0xd5, 0xf0, 0x29, 0x70, 0x15, 0xa2, 0x27, 0x5a, 0x36, 0x03, 0x1e, 0x9b, 0xb6, 0x44,
0x4f, 0xf0, 0x14, 0x1e, 0x10, 0xef, 0xf5, 0x51, 0xe0, 0x85, 0xf4, 0x5d, 0x0a, 0xca, 0x47, 0xd0,
0xb1, 0x61, 0x4d, 0x7a, 0xd2, 0x47, 0xdd, 0xb1, 0x8f, 0x7a, 0xff, 0xcf, 0x06, 0xfc, 0xcf, 0x74,
0x89, 0x34, 0xbe, 0x63, 0x63, 0x8a, 0xbe, 0x85, 0xce, 0x6c, 0x17, 0x85, 0x76, 0x8a, 0x59, 0x9c,
0x6b, 0xf5, 0xdc, 0xdd, 0xc5, 0x0b, 0x74, 0x70, 0xbc, 0x82, 0x8e, 0xf3, 0xef, 0x47, 0xb7, 0xa4,
0x8d, 0xd1, 0x5b, 0x6d, 0x2d, 0x6c, 0x70, 0xf0, 0xca, 0x81, 0x83, 0x2e, 0x60, 0xbd, 0xf8, 0xba,
0xa3, 0x27, 0xc5, 0xd8, 0x33, 0x6d, 0x86, 0xfb, 0x74, 0x91, 0x3b, 0xb7, 0xe9, 0xd7, 0xd0, 0xce,
0xbf, 0x84, 0x68, 0xdb, 0x7e, 0x33, 0xd7, 0x00, 0xb8, 0x8f, 0xcb, 0x9d, 0xd9, 0x39, 0x2f, 0x60,
0xbd, 0xa8, 0xe5, 0x16, 0x61, 0xe9, 0x03, 0x63, 0x11, 0x96, 0x3f, 0x01, 0x0a, 0xe1, 0x31, 0xb4,
0x32, 0xd5, 0xb5, 0xc9, 0x9b, 0x15, 0x7b, 0x9b, 0xbc, 0x39, 0x89, 0x56, 0xbb, 0x0c, 0x00, 0xac,
0x56, 0xa2, 0xad, 0xbc, 0x9c, 0x14, 0x44, 0xda, 0x75, 0xcb, 0x5c, 0xd9, 0x09, 0xbf, 0x84, 0xb5,
0xdc, 0x3f, 0x0b, 0xe4, 0x16, 0x33, 0x9c, 0xff, 0x53, 0xe3, 0x6e, 0x97, 0xfa, 0xf2, 0xb9, 0x2a,
0xca, 0x8f, 0xcd, 0x55, 0xa9, 0xc6, 0xd9, 0x5c, 0x95, 0xab, 0x96, 0x3a, 0xe5, 0x08, 0x1e, 0xcc,
0x54, 0x3b, 0x7a, 0xba, 0x50, 0x06, 0xf4, 0xb6, 0x3b, 0xff, 0x22, 0x13, 0x78, 0x05, 0x1d, 0x42,
0x33, 0xad, 0x28, 0xf4, 0x28, 0xab, 0xd6, 0x62, 0x69, 0xbb, 0xdd, 0x79, 0x87, 0x05, 0x76, 0xd5,
0x50, 0x0d, 0xda, 0x27, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xdb, 0xf3, 0x6d, 0x45, 0x0e,
0x00, 0x00,
}
......@@ -369,6 +369,78 @@ func (m *FindAllBranchesResponse_Branch) GetTarget() *GitCommit {
return nil
}
type FindAllTagsRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
}
func (m *FindAllTagsRequest) Reset() { *m = FindAllTagsRequest{} }
func (m *FindAllTagsRequest) String() string { return proto.CompactTextString(m) }
func (*FindAllTagsRequest) ProtoMessage() {}
func (*FindAllTagsRequest) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{14} }
func (m *FindAllTagsRequest) GetRepository() *Repository {
if m != nil {
return m.Repository
}
return nil
}
type FindAllTagsResponse struct {
Tags []*FindAllTagsResponse_Tag `protobuf:"bytes,1,rep,name=tags" json:"tags,omitempty"`
}
func (m *FindAllTagsResponse) Reset() { *m = FindAllTagsResponse{} }
func (m *FindAllTagsResponse) String() string { return proto.CompactTextString(m) }
func (*FindAllTagsResponse) ProtoMessage() {}
func (*FindAllTagsResponse) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{15} }
func (m *FindAllTagsResponse) GetTags() []*FindAllTagsResponse_Tag {
if m != nil {
return m.Tags
}
return nil
}
type FindAllTagsResponse_Tag struct {
Name []byte `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
Id string `protobuf:"bytes,2,opt,name=id" json:"id,omitempty"`
TargetCommit *GitCommit `protobuf:"bytes,3,opt,name=target_commit,json=targetCommit" json:"target_commit,omitempty"`
Message []byte `protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty"`
}
func (m *FindAllTagsResponse_Tag) Reset() { *m = FindAllTagsResponse_Tag{} }
func (m *FindAllTagsResponse_Tag) String() string { return proto.CompactTextString(m) }
func (*FindAllTagsResponse_Tag) ProtoMessage() {}
func (*FindAllTagsResponse_Tag) Descriptor() ([]byte, []int) { return fileDescriptor5, []int{15, 0} }
func (m *FindAllTagsResponse_Tag) GetName() []byte {
if m != nil {
return m.Name
}
return nil
}
func (m *FindAllTagsResponse_Tag) GetId() string {
if m != nil {
return m.Id
}
return ""
}
func (m *FindAllTagsResponse_Tag) GetTargetCommit() *GitCommit {
if m != nil {
return m.TargetCommit
}
return nil
}
func (m *FindAllTagsResponse_Tag) GetMessage() []byte {
if m != nil {
return m.Message
}
return nil
}
func init() {
proto.RegisterType((*FindDefaultBranchNameRequest)(nil), "gitaly.FindDefaultBranchNameRequest")
proto.RegisterType((*FindDefaultBranchNameResponse)(nil), "gitaly.FindDefaultBranchNameResponse")
......@@ -385,6 +457,9 @@ func init() {
proto.RegisterType((*FindAllBranchesRequest)(nil), "gitaly.FindAllBranchesRequest")
proto.RegisterType((*FindAllBranchesResponse)(nil), "gitaly.FindAllBranchesResponse")
proto.RegisterType((*FindAllBranchesResponse_Branch)(nil), "gitaly.FindAllBranchesResponse.Branch")
proto.RegisterType((*FindAllTagsRequest)(nil), "gitaly.FindAllTagsRequest")
proto.RegisterType((*FindAllTagsResponse)(nil), "gitaly.FindAllTagsResponse")
proto.RegisterType((*FindAllTagsResponse_Tag)(nil), "gitaly.FindAllTagsResponse.Tag")
proto.RegisterEnum("gitaly.FindLocalBranchesRequest_SortBy", FindLocalBranchesRequest_SortBy_name, FindLocalBranchesRequest_SortBy_value)
}
......@@ -407,6 +482,7 @@ type RefServiceClient interface {
// Return a stream so we can divide the response in chunks of branches
FindLocalBranches(ctx context.Context, in *FindLocalBranchesRequest, opts ...grpc.CallOption) (RefService_FindLocalBranchesClient, error)
FindAllBranches(ctx context.Context, in *FindAllBranchesRequest, opts ...grpc.CallOption) (RefService_FindAllBranchesClient, error)
FindAllTags(ctx context.Context, in *FindAllTagsRequest, opts ...grpc.CallOption) (RefService_FindAllTagsClient, error)
}
type refServiceClient struct {
......@@ -563,6 +639,38 @@ func (x *refServiceFindAllBranchesClient) Recv() (*FindAllBranchesResponse, erro
return m, nil
}
func (c *refServiceClient) FindAllTags(ctx context.Context, in *FindAllTagsRequest, opts ...grpc.CallOption) (RefService_FindAllTagsClient, error) {
stream, err := grpc.NewClientStream(ctx, &_RefService_serviceDesc.Streams[4], c.cc, "/gitaly.RefService/FindAllTags", opts...)
if err != nil {
return nil, err
}
x := &refServiceFindAllTagsClient{stream}
if err := x.ClientStream.SendMsg(in); err != nil {
return nil, err
}
if err := x.ClientStream.CloseSend(); err != nil {
return nil, err
}
return x, nil
}
type RefService_FindAllTagsClient interface {
Recv() (*FindAllTagsResponse, error)
grpc.ClientStream
}
type refServiceFindAllTagsClient struct {
grpc.ClientStream
}
func (x *refServiceFindAllTagsClient) Recv() (*FindAllTagsResponse, error) {
m := new(FindAllTagsResponse)
if err := x.ClientStream.RecvMsg(m); err != nil {
return nil, err
}
return m, nil
}
// Server API for RefService service
type RefServiceServer interface {
......@@ -574,6 +682,7 @@ type RefServiceServer interface {
// Return a stream so we can divide the response in chunks of branches
FindLocalBranches(*FindLocalBranchesRequest, RefService_FindLocalBranchesServer) error
FindAllBranches(*FindAllBranchesRequest, RefService_FindAllBranchesServer) error
FindAllTags(*FindAllTagsRequest, RefService_FindAllTagsServer) error
}
func RegisterRefServiceServer(s *grpc.Server, srv RefServiceServer) {
......@@ -700,6 +809,27 @@ func (x *refServiceFindAllBranchesServer) Send(m *FindAllBranchesResponse) error
return x.ServerStream.SendMsg(m)
}
func _RefService_FindAllTags_Handler(srv interface{}, stream grpc.ServerStream) error {
m := new(FindAllTagsRequest)
if err := stream.RecvMsg(m); err != nil {
return err
}
return srv.(RefServiceServer).FindAllTags(m, &refServiceFindAllTagsServer{stream})
}
type RefService_FindAllTagsServer interface {
Send(*FindAllTagsResponse) error
grpc.ServerStream
}
type refServiceFindAllTagsServer struct {
grpc.ServerStream
}
func (x *refServiceFindAllTagsServer) Send(m *FindAllTagsResponse) error {
return x.ServerStream.SendMsg(m)
}
var _RefService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.RefService",
HandlerType: (*RefServiceServer)(nil),
......@@ -734,6 +864,11 @@ var _RefService_serviceDesc = grpc.ServiceDesc{
Handler: _RefService_FindAllBranches_Handler,
ServerStreams: true,
},
{
StreamName: "FindAllTags",
Handler: _RefService_FindAllTags_Handler,
ServerStreams: true,
},
},
Metadata: "ref.proto",
}
......@@ -741,48 +876,54 @@ var _RefService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("ref.proto", fileDescriptor5) }
var fileDescriptor5 = []byte{
// 688 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0xd1, 0x52, 0xd3, 0x4c,
0x14, 0x26, 0x50, 0xf2, 0xc3, 0x69, 0x7f, 0x28, 0x2b, 0x62, 0x0c, 0x0a, 0x25, 0x8a, 0xc2, 0x4d,
0x70, 0xc2, 0x78, 0xe5, 0x8d, 0xa5, 0x45, 0x70, 0x06, 0xd1, 0xd9, 0xa2, 0xe3, 0x85, 0x33, 0x9d,
0x6d, 0xbb, 0x29, 0x71, 0x9a, 0xa6, 0x6e, 0xb6, 0x6a, 0x2f, 0x7c, 0x02, 0xdf, 0xc3, 0x3b, 0x9f,
0xc3, 0xd7, 0x72, 0xba, 0xbb, 0xa9, 0x69, 0xbb, 0x29, 0xce, 0xd4, 0xab, 0x74, 0xcf, 0x7e, 0xdf,
0xd9, 0xb3, 0xdf, 0x39, 0xfb, 0x15, 0x56, 0x19, 0xf5, 0xdd, 0x1e, 0x8b, 0x78, 0x84, 0xcc, 0x76,
0xc0, 0x49, 0x67, 0x60, 0x17, 0xe2, 0x6b, 0xc2, 0x68, 0x4b, 0x46, 0xed, 0xdd, 0x76, 0x14, 0xb5,
0x3b, 0xf4, 0x48, 0xac, 0x1a, 0x7d, 0xff, 0x88, 0x07, 0x21, 0x8d, 0x39, 0x09, 0x7b, 0x12, 0xe0,
0x60, 0xb8, 0xf7, 0x22, 0xe8, 0xb6, 0xaa, 0xd4, 0x27, 0xfd, 0x0e, 0x3f, 0x61, 0xa4, 0xdb, 0xbc,
0xbe, 0x24, 0x21, 0xc5, 0xf4, 0x53, 0x9f, 0xc6, 0x1c, 0x79, 0x00, 0x8c, 0xf6, 0xa2, 0x38, 0xe0,
0x11, 0x1b, 0x58, 0x46, 0xc9, 0x38, 0xc8, 0x7b, 0xc8, 0x95, 0x67, 0xb9, 0x78, 0xb4, 0x83, 0x53,
0x28, 0xe7, 0x18, 0xee, 0x67, 0xe4, 0x8c, 0x7b, 0x51, 0x37, 0xa6, 0x08, 0x41, 0xae, 0x4b, 0x42,
0x2a, 0xd2, 0x15, 0xb0, 0xf8, 0xed, 0xbc, 0x86, 0xbb, 0x43, 0x52, 0xb9, 0xd3, 0xf9, 0x43, 0x88,
0xe7, 0xa9, 0xc2, 0x03, 0x5b, 0x97, 0x50, 0x95, 0xb0, 0x09, 0xcb, 0xc3, 0x63, 0x63, 0xcb, 0x28,
0x2d, 0x1d, 0x14, 0xb0, 0x5c, 0x38, 0x17, 0xb0, 0xa5, 0x38, 0x57, 0xa4, 0x3d, 0x77, 0x05, 0x47,
0x70, 0x67, 0x2a, 0xdb, 0xcc, 0xe3, 0xbf, 0x01, 0x1a, 0x12, 0x30, 0xf5, 0xe7, 0x6c, 0x01, 0xda,
0x86, 0xd5, 0x66, 0x14, 0x86, 0x01, 0xaf, 0x07, 0x2d, 0x6b, 0xb1, 0x64, 0x1c, 0xac, 0xe2, 0x15,
0x19, 0x78, 0xd9, 0x42, 0x5b, 0x60, 0xf6, 0x18, 0xf5, 0x83, 0xaf, 0xd6, 0x92, 0x68, 0x80, 0x5a,
0x39, 0x87, 0x70, 0x6b, 0xec, 0xf8, 0x19, 0xdd, 0xfa, 0x65, 0x80, 0x35, 0xc4, 0x5e, 0x44, 0x4d,
0xa2, 0xf4, 0x9d, 0x4b, 0x2b, 0xf4, 0x1c, 0xfe, 0x8b, 0x23, 0xc6, 0xeb, 0x8d, 0x81, 0x28, 0x77,
0xcd, 0x7b, 0x9c, 0x10, 0xb2, 0x8e, 0x71, 0x6b, 0x11, 0xe3, 0x27, 0x03, 0x6c, 0xc6, 0xe2, 0xeb,
0x3c, 0x05, 0x53, 0x46, 0xd0, 0x0a, 0xe4, 0x2e, 0xcb, 0xaf, 0x4e, 0x8b, 0x0b, 0x68, 0x1d, 0xf2,
0x6f, 0xdf, 0x54, 0xcb, 0x57, 0xa7, 0xd5, 0x7a, 0xb9, 0x56, 0x29, 0x1a, 0xa8, 0x08, 0x85, 0x24,
0x50, 0x3d, 0xad, 0x55, 0x8a, 0x8b, 0xce, 0x7b, 0x39, 0x77, 0x13, 0x27, 0xa8, 0xab, 0x3f, 0x83,
0x95, 0x86, 0x8a, 0x89, 0x4e, 0xe5, 0xbd, 0xdd, 0x8c, 0xb2, 0x12, 0x0a, 0x1e, 0x11, 0x9c, 0xef,
0x8b, 0xb2, 0xff, 0x1a, 0x94, 0x4e, 0xd3, 0xd9, 0x3d, 0xdb, 0x87, 0x35, 0xb5, 0x19, 0xf7, 0x1b,
0x1f, 0x69, 0x93, 0xab, 0xde, 0xfd, 0x2f, 0xa3, 0x35, 0x19, 0x44, 0xe7, 0xa0, 0x02, 0x75, 0xd2,
0xe7, 0xd7, 0x11, 0xb3, 0x72, 0x42, 0xfd, 0x07, 0x19, 0x55, 0x57, 0x04, 0xb6, 0x2c, 0xa0, 0xb8,
0xd0, 0x4c, 0xad, 0xd0, 0x25, 0x14, 0x55, 0x26, 0xf9, 0xe1, 0x94, 0x59, 0xcb, 0x7f, 0x9f, 0x6c,
0x5d, 0xb2, 0x2a, 0x09, 0xd7, 0xf9, 0x02, 0xdb, 0x33, 0xf0, 0x5a, 0x41, 0x36, 0x61, 0x99, 0x86,
0x24, 0xe8, 0x08, 0x31, 0x0a, 0x58, 0x2e, 0x90, 0x0b, 0xb9, 0x16, 0xe1, 0x54, 0xdc, 0x3f, 0xef,
0xd9, 0xae, 0x74, 0x38, 0x37, 0x71, 0x38, 0xf7, 0x2a, 0x71, 0x38, 0x2c, 0x70, 0xa9, 0x37, 0xfd,
0x0f, 0xe6, 0xd4, 0xf9, 0x61, 0x8c, 0x1e, 0xf5, 0xd4, 0xb4, 0x9c, 0x4c, 0x4d, 0xcb, 0xa3, 0xb4,
0x54, 0x1a, 0x8a, 0xab, 0xc6, 0x62, 0xc4, 0xb3, 0xcf, 0xc0, 0x94, 0x31, 0xad, 0x22, 0x87, 0x60,
0x72, 0xc2, 0xda, 0x94, 0x0b, 0x49, 0xf2, 0xde, 0x46, 0x92, 0xff, 0x2c, 0x91, 0x1a, 0x2b, 0x80,
0xf7, 0x33, 0x07, 0x80, 0xa9, 0x5f, 0xa3, 0xec, 0x73, 0xd0, 0xa4, 0xc8, 0x87, 0xdb, 0x5a, 0x4f,
0x46, 0x0f, 0xd3, 0x25, 0x66, 0xfd, 0x0d, 0xd8, 0xfb, 0x37, 0xa0, 0xe4, 0x75, 0x9c, 0x05, 0x54,
0x97, 0x16, 0x36, 0xee, 0xba, 0x68, 0x4f, 0xab, 0x43, 0xda, 0x60, 0x6d, 0x67, 0x16, 0x24, 0x49,
0xff, 0xc4, 0x40, 0xef, 0x60, 0x7d, 0xc2, 0x54, 0xd1, 0xce, 0x04, 0x75, 0xc2, 0xbb, 0xed, 0xdd,
0xcc, 0xfd, 0x54, 0xde, 0x73, 0xc8, 0xa7, 0xcc, 0x0f, 0xd9, 0x69, 0xce, 0xb8, 0x21, 0xdb, 0xdb,
0xda, 0xbd, 0x91, 0x04, 0x1f, 0x60, 0x63, 0xca, 0x51, 0x50, 0xe9, 0x26, 0x3b, 0xb3, 0xf7, 0x66,
0x20, 0xb4, 0xf7, 0x1f, 0xe5, 0xde, 0xc9, 0x9c, 0x32, 0xfd, 0xfd, 0x75, 0x79, 0x1b, 0xa6, 0x78,
0x40, 0xc7, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x05, 0x13, 0xab, 0x7e, 0x53, 0x08, 0x00, 0x00,
// 782 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0x51, 0x53, 0xd3, 0x4a,
0x14, 0x26, 0xa5, 0x14, 0x38, 0x0d, 0x50, 0xf6, 0x72, 0xb9, 0xb9, 0xe1, 0x5e, 0x28, 0x51, 0x14,
0x5e, 0x82, 0x13, 0x46, 0x5f, 0x7c, 0xb1, 0xb4, 0x08, 0x3a, 0x88, 0xce, 0xb6, 0x3a, 0x3e, 0x38,
0xd3, 0xd9, 0xb6, 0xdb, 0x10, 0xa7, 0x69, 0x6a, 0xb2, 0x55, 0x3b, 0x8e, 0xbf, 0xc0, 0xff, 0xe1,
0x5f, 0xe1, 0x37, 0xf9, 0xe6, 0x74, 0x77, 0x13, 0xd3, 0x76, 0x5b, 0x9c, 0xa9, 0x4f, 0xed, 0x39,
0xf9, 0xce, 0xb7, 0xfb, 0x9d, 0x73, 0xf6, 0x1c, 0x58, 0x0d, 0x69, 0xdb, 0xee, 0x85, 0x01, 0x0b,
0x50, 0xce, 0xf5, 0x18, 0xe9, 0x0c, 0x4c, 0x3d, 0xba, 0x26, 0x21, 0x6d, 0x09, 0xaf, 0xb9, 0xe7,
0x06, 0x81, 0xdb, 0xa1, 0xc7, 0xdc, 0x6a, 0xf4, 0xdb, 0xc7, 0xcc, 0xf3, 0x69, 0xc4, 0x88, 0xdf,
0x13, 0x00, 0x0b, 0xc3, 0x7f, 0x4f, 0xbd, 0x6e, 0xab, 0x42, 0xdb, 0xa4, 0xdf, 0x61, 0xa7, 0x21,
0xe9, 0x36, 0xaf, 0xaf, 0x88, 0x4f, 0x31, 0xfd, 0xd0, 0xa7, 0x11, 0x43, 0x0e, 0x40, 0x48, 0x7b,
0x41, 0xe4, 0xb1, 0x20, 0x1c, 0x18, 0x5a, 0x51, 0x3b, 0xcc, 0x3b, 0xc8, 0x16, 0x67, 0xd9, 0x38,
0xf9, 0x82, 0x53, 0x28, 0xeb, 0x04, 0xfe, 0x9f, 0xc2, 0x19, 0xf5, 0x82, 0x6e, 0x44, 0x11, 0x82,
0x6c, 0x97, 0xf8, 0x94, 0xd3, 0xe9, 0x98, 0xff, 0xb7, 0x5e, 0xc2, 0xbf, 0xc3, 0xa0, 0x52, 0xa7,
0xf3, 0x2b, 0x20, 0x9a, 0xe7, 0x16, 0x0e, 0x98, 0x2a, 0x42, 0x79, 0x85, 0x2d, 0x58, 0x1a, 0x1e,
0x1b, 0x19, 0x5a, 0x71, 0xf1, 0x50, 0xc7, 0xc2, 0xb0, 0x2e, 0x61, 0x5b, 0xc6, 0xd4, 0x88, 0x3b,
0xf7, 0x0d, 0x8e, 0xe1, 0x9f, 0x09, 0xb6, 0x99, 0xc7, 0x7f, 0x05, 0x34, 0x0c, 0xc0, 0xb4, 0x3d,
0x67, 0x09, 0xd0, 0x0e, 0xac, 0x36, 0x03, 0xdf, 0xf7, 0x58, 0xdd, 0x6b, 0x19, 0x99, 0xa2, 0x76,
0xb8, 0x8a, 0x57, 0x84, 0xe3, 0x59, 0x0b, 0x6d, 0x43, 0xae, 0x17, 0xd2, 0xb6, 0xf7, 0xd9, 0x58,
0xe4, 0x05, 0x90, 0x96, 0x75, 0x04, 0x7f, 0x8d, 0x1c, 0x3f, 0xa3, 0x5a, 0x37, 0x1a, 0x18, 0x43,
0xec, 0x65, 0xd0, 0x24, 0x32, 0xbf, 0x73, 0xe5, 0x0a, 0x3d, 0x81, 0xe5, 0x28, 0x08, 0x59, 0xbd,
0x31, 0xe0, 0xd7, 0x5d, 0x77, 0xee, 0xc7, 0x01, 0xd3, 0x8e, 0xb1, 0xab, 0x41, 0xc8, 0x4e, 0x07,
0x38, 0x17, 0xf1, 0x5f, 0xeb, 0x21, 0xe4, 0x84, 0x07, 0xad, 0x40, 0xf6, 0xaa, 0xf4, 0xe2, 0xac,
0xb0, 0x80, 0x36, 0x20, 0xff, 0xfa, 0x55, 0xa5, 0x54, 0x3b, 0xab, 0xd4, 0x4b, 0xd5, 0x72, 0x41,
0x43, 0x05, 0xd0, 0x63, 0x47, 0xe5, 0xac, 0x5a, 0x2e, 0x64, 0xac, 0xb7, 0xa2, 0xef, 0xc6, 0x4e,
0x90, 0xd2, 0x1f, 0xc3, 0x4a, 0x43, 0xfa, 0x78, 0xa5, 0xf2, 0xce, 0xde, 0x94, 0x6b, 0xc5, 0x21,
0x38, 0x09, 0xb0, 0xbe, 0x65, 0x44, 0xfd, 0x15, 0x28, 0x55, 0x4e, 0x67, 0xd7, 0xec, 0x00, 0xd6,
0xe5, 0xc7, 0xa8, 0xdf, 0x78, 0x4f, 0x9b, 0x4c, 0xd6, 0x6e, 0x4d, 0x78, 0xab, 0xc2, 0x89, 0x2e,
0x40, 0x3a, 0xea, 0xa4, 0xcf, 0xae, 0x83, 0xd0, 0xc8, 0xf2, 0xec, 0xdf, 0x99, 0x72, 0xeb, 0x32,
0xc7, 0x96, 0x38, 0x14, 0xeb, 0xcd, 0x94, 0x85, 0xae, 0xa0, 0x20, 0x99, 0xc4, 0x0f, 0xa3, 0xa1,
0xb1, 0xf4, 0xfb, 0x64, 0x1b, 0x22, 0xaa, 0x1c, 0xc7, 0x5a, 0x9f, 0x60, 0x67, 0x06, 0x5e, 0x99,
0x90, 0x2d, 0x58, 0xa2, 0x3e, 0xf1, 0x3a, 0x3c, 0x19, 0x3a, 0x16, 0x06, 0xb2, 0x21, 0xdb, 0x22,
0x8c, 0x72, 0xfd, 0x79, 0xc7, 0xb4, 0xc5, 0x84, 0xb3, 0xe3, 0x09, 0x67, 0xd7, 0xe2, 0x09, 0x87,
0x39, 0x2e, 0xf5, 0xa6, 0xff, 0x40, 0x9f, 0x5a, 0xdf, 0xb5, 0xe4, 0x51, 0x4f, 0x74, 0xcb, 0xe9,
0x44, 0xb7, 0xdc, 0x4b, 0xa7, 0x4a, 0x11, 0x62, 0xcb, 0xb6, 0x48, 0xe2, 0xcc, 0x73, 0xc8, 0x09,
0x9f, 0x32, 0x23, 0x47, 0x90, 0x63, 0x24, 0x74, 0x29, 0xe3, 0x29, 0xc9, 0x3b, 0x9b, 0x31, 0xff,
0x79, 0x9c, 0x6a, 0x2c, 0x01, 0xd6, 0x85, 0x98, 0x25, 0x62, 0xf8, 0xcc, 0x25, 0xf9, 0x46, 0x13,
0x73, 0x21, 0xa1, 0x92, 0x72, 0x4f, 0x20, 0xcb, 0x88, 0xab, 0x7c, 0x18, 0x63, 0x50, 0xbb, 0x46,
0x5c, 0xcc, 0xc1, 0xe6, 0x17, 0x58, 0xac, 0x11, 0x57, 0x29, 0x6e, 0x1d, 0x32, 0x49, 0xe3, 0x67,
0xbc, 0x16, 0x7a, 0x04, 0x6b, 0x42, 0x8b, 0xec, 0x40, 0x59, 0x71, 0x85, 0x66, 0x5d, 0xe0, 0x84,
0x85, 0x0c, 0x58, 0xf6, 0x69, 0x14, 0x11, 0x97, 0xf2, 0xee, 0xd7, 0x71, 0x6c, 0x3a, 0x3f, 0xb2,
0x00, 0x98, 0xb6, 0xab, 0x34, 0xfc, 0xe8, 0x35, 0x29, 0x6a, 0xc3, 0xdf, 0xca, 0x3d, 0x85, 0xee,
0xa6, 0xb5, 0x4c, 0x5b, 0x8d, 0xe6, 0xc1, 0x2d, 0x28, 0xa1, 0xdd, 0x5a, 0x40, 0xf5, 0xa4, 0x14,
0xa9, 0x4d, 0x84, 0xf6, 0x95, 0xbd, 0x91, 0x5e, 0x3a, 0xa6, 0x35, 0x0b, 0x12, 0xd3, 0x3f, 0xd0,
0xd0, 0x1b, 0xd8, 0x18, 0x5b, 0x34, 0x68, 0x77, 0xb2, 0x1c, 0x23, 0xd4, 0x7b, 0x53, 0xbf, 0xa7,
0x78, 0x2f, 0x20, 0x9f, 0x5a, 0x08, 0xc8, 0x4c, 0xc7, 0x8c, 0x2e, 0x29, 0x73, 0x47, 0xf9, 0x2d,
0x49, 0xc1, 0x3b, 0xd8, 0x9c, 0x98, 0xb2, 0xa8, 0x78, 0xdb, 0x88, 0x37, 0xf7, 0x67, 0x20, 0x94,
0xfa, 0x13, 0xee, 0xdd, 0xa9, 0x2f, 0x4f, 0xad, 0x5f, 0xc9, 0xfb, 0x5c, 0xe8, 0x97, 0xdd, 0x3c,
0xaa, 0x7f, 0xf4, 0x61, 0x8d, 0xea, 0x1f, 0x6b, 0xff, 0x21, 0x57, 0x23, 0xc7, 0x07, 0xd4, 0xc9,
0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc7, 0xea, 0x03, 0xcf, 0xb3, 0x09, 0x00, 0x00,
}
......@@ -23,7 +23,7 @@ type SSHUploadPackRequest struct {
// A chunk of raw data to be copied to 'git upload-pack' standard input
Stdin []byte `protobuf:"bytes,2,opt,name=stdin,proto3" json:"stdin,omitempty"`
// Parameters to use with git -c (key=value pairs)
GitConfigParameters [][]byte `protobuf:"bytes,3,rep,name=git_config_parameters,json=gitConfigParameters,proto3" json:"git_config_parameters,omitempty"`
GitConfigOptions []string `protobuf:"bytes,4,rep,name=git_config_options,json=gitConfigOptions" json:"git_config_options,omitempty"`
}
func (m *SSHUploadPackRequest) Reset() { *m = SSHUploadPackRequest{} }
......@@ -45,9 +45,9 @@ func (m *SSHUploadPackRequest) GetStdin() []byte {
return nil
}
func (m *SSHUploadPackRequest) GetGitConfigParameters() [][]byte {
func (m *SSHUploadPackRequest) GetGitConfigOptions() []string {
if m != nil {
return m.GitConfigParameters
return m.GitConfigOptions
}
return nil
}
......@@ -351,27 +351,28 @@ var _SSHService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("ssh.proto", fileDescriptor9) }
var fileDescriptor9 = []byte{
// 344 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x92, 0xcd, 0x4e, 0xea, 0x40,
0x14, 0xc7, 0xef, 0x5c, 0x3e, 0x12, 0x0e, 0xe5, 0x2e, 0x86, 0x8f, 0x10, 0x72, 0xef, 0x0d, 0xa9,
0x9b, 0xae, 0x88, 0x29, 0x8f, 0x60, 0x4c, 0x70, 0x47, 0xa6, 0x61, 0xdd, 0xd4, 0xf6, 0x38, 0x4c,
0xac, 0x4c, 0x9d, 0x39, 0x10, 0x48, 0xf4, 0x2d, 0xdc, 0xf9, 0x20, 0xbe, 0x9e, 0xb1, 0xad, 0x58,
0x50, 0x96, 0xba, 0xeb, 0x99, 0x5f, 0xcf, 0xf9, 0xff, 0xcf, 0x07, 0xb4, 0xac, 0x5d, 0x4e, 0x32,
0xa3, 0x49, 0xf3, 0xa6, 0x54, 0x14, 0xa5, 0xbb, 0x91, 0x63, 0x97, 0x91, 0xc1, 0xa4, 0x78, 0x75,
0x9f, 0x18, 0xf4, 0x82, 0x60, 0xb6, 0xc8, 0x52, 0x1d, 0x25, 0xf3, 0x28, 0xbe, 0x15, 0x78, 0xbf,
0x46, 0x4b, 0xdc, 0x07, 0x30, 0x98, 0x69, 0xab, 0x48, 0x9b, 0xdd, 0x90, 0x8d, 0x99, 0xd7, 0xf6,
0xf9, 0xa4, 0xa8, 0x31, 0x11, 0x7b, 0x22, 0x2a, 0x7f, 0xf1, 0x1e, 0x34, 0x2c, 0x25, 0x6a, 0x35,
0xfc, 0x3d, 0x66, 0x9e, 0x23, 0x8a, 0x80, 0xfb, 0xd0, 0x97, 0x8a, 0xc2, 0x58, 0xaf, 0x6e, 0x94,
0x0c, 0xb3, 0xc8, 0x44, 0x77, 0x48, 0x68, 0xec, 0xb0, 0x36, 0xae, 0x79, 0x8e, 0xe8, 0x4a, 0x45,
0x17, 0x39, 0x9b, 0xef, 0x91, 0xfb, 0x00, 0xfd, 0x23, 0x57, 0x36, 0xd3, 0x2b, 0x8b, 0x7c, 0x00,
0x4d, 0x4b, 0x89, 0x5e, 0x53, 0x6e, 0xc9, 0x11, 0x65, 0x54, 0xbe, 0xa3, 0x31, 0xa5, 0x76, 0x19,
0xf1, 0x29, 0xb4, 0x71, 0xab, 0x28, 0xb4, 0x14, 0xd1, 0xfa, 0x4d, 0xf2, 0xa0, 0x8f, 0xcb, 0xad,
0xa2, 0x20, 0x27, 0x02, 0x70, 0xff, 0xed, 0x3e, 0xb3, 0x5c, 0x5e, 0x60, 0x8c, 0x6a, 0x83, 0xdf,
0x33, 0x95, 0x2e, 0x34, 0x64, 0x1a, 0xaa, 0x24, 0xb7, 0xd4, 0x12, 0x75, 0x99, 0x5e, 0x25, 0xfc,
0x0c, 0x3a, 0x32, 0x0d, 0x2b, 0x0a, 0xf5, 0x1c, 0x3a, 0x32, 0xfd, 0xa8, 0xed, 0x3e, 0xc2, 0xe0,
0xd8, 0xdc, 0x0f, 0x0e, 0xc7, 0x7f, 0x61, 0x00, 0x41, 0x30, 0x0b, 0xd0, 0x6c, 0x54, 0x8c, 0x5c,
0x40, 0xe7, 0x60, 0x53, 0xfc, 0xef, 0x7b, 0xfe, 0x57, 0x67, 0x35, 0xfa, 0x77, 0x82, 0x16, 0x1d,
0xb8, 0xbf, 0x3c, 0x76, 0xce, 0xf8, 0x02, 0xfe, 0x1c, 0x76, 0xc8, 0xab, 0x69, 0x9f, 0xd7, 0x32,
0xfa, 0x7f, 0x0a, 0x57, 0xcb, 0x5e, 0x37, 0xf3, 0x93, 0x9f, 0xbe, 0x06, 0x00, 0x00, 0xff, 0xff,
0xad, 0xff, 0xd1, 0xd9, 0x15, 0x03, 0x00, 0x00,
// 360 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x93, 0xc1, 0x4e, 0xf2, 0x40,
0x10, 0xc7, 0xbf, 0xfd, 0x28, 0xe4, 0x63, 0x28, 0x5f, 0xc8, 0x0a, 0xa4, 0x21, 0x6a, 0x48, 0xbd,
0xf4, 0x60, 0x88, 0x81, 0x47, 0x30, 0x26, 0xe8, 0x45, 0xb3, 0x0d, 0xe7, 0xa6, 0xb6, 0xeb, 0xb2,
0xb1, 0x76, 0xeb, 0xee, 0x40, 0x20, 0xd1, 0x27, 0xf1, 0x11, 0x7c, 0x00, 0x5f, 0xcf, 0xa4, 0xad,
0x58, 0x50, 0x8e, 0x7a, 0xdb, 0x99, 0xdf, 0xce, 0xcc, 0x7f, 0x66, 0x76, 0xa1, 0x69, 0xcc, 0x7c,
0x94, 0x69, 0x85, 0x8a, 0x36, 0x84, 0xc4, 0x30, 0x59, 0x0f, 0x6c, 0x33, 0x0f, 0x35, 0x8f, 0x0b,
0xaf, 0xfb, 0x4a, 0xa0, 0xeb, 0xfb, 0xd3, 0x59, 0x96, 0xa8, 0x30, 0xbe, 0x09, 0xa3, 0x7b, 0xc6,
0x1f, 0x17, 0xdc, 0x20, 0x1d, 0x03, 0x68, 0x9e, 0x29, 0x23, 0x51, 0xe9, 0xb5, 0x43, 0x86, 0xc4,
0x6b, 0x8d, 0xe9, 0xa8, 0xc8, 0x31, 0x62, 0x1b, 0xc2, 0x2a, 0xb7, 0x68, 0x17, 0xea, 0x06, 0x63,
0x99, 0x3a, 0x7f, 0x87, 0xc4, 0xb3, 0x59, 0x61, 0xd0, 0x53, 0xa0, 0x42, 0x62, 0x10, 0xa9, 0xf4,
0x4e, 0x8a, 0x40, 0x65, 0x28, 0x55, 0x6a, 0x1c, 0x6b, 0x58, 0xf3, 0x9a, 0xac, 0x23, 0x24, 0x9e,
0xe7, 0xe0, 0xba, 0xf0, 0x5f, 0x59, 0xff, 0x6a, 0x1d, 0x8b, 0xf5, 0x2a, 0x11, 0x59, 0xa8, 0xc3,
0x07, 0x8e, 0x5c, 0x1b, 0xf7, 0x09, 0x7a, 0x3b, 0x62, 0x4d, 0xa6, 0x52, 0xc3, 0x69, 0x1f, 0x1a,
0x06, 0x63, 0xb5, 0xc0, 0x5c, 0xa9, 0xcd, 0x4a, 0xab, 0xf4, 0x73, 0xad, 0x4b, 0x49, 0xa5, 0x45,
0x27, 0xd0, 0xe2, 0x2b, 0x89, 0x81, 0xc1, 0x10, 0x17, 0xc6, 0xa9, 0x6d, 0xb7, 0x77, 0xb1, 0x92,
0xe8, 0xe7, 0x84, 0x01, 0xdf, 0x9c, 0xdd, 0x17, 0x92, 0x97, 0x67, 0x3c, 0xe2, 0x72, 0xc9, 0x7f,
0x66, 0x58, 0x07, 0x50, 0x17, 0x49, 0x20, 0xe3, 0x5c, 0x52, 0x93, 0x59, 0x22, 0xb9, 0x8c, 0xe9,
0x09, 0xb4, 0x45, 0x12, 0x54, 0x2a, 0x58, 0x39, 0xb4, 0x45, 0xf2, 0x99, 0xdb, 0x7d, 0x86, 0xfe,
0xae, 0xb8, 0x5f, 0x1c, 0xce, 0xf8, 0x8d, 0x00, 0xf8, 0xfe, 0xd4, 0xe7, 0x7a, 0x29, 0x23, 0x4e,
0x19, 0xb4, 0xb7, 0x36, 0x45, 0x0f, 0x3f, 0xe2, 0xbf, 0x7b, 0x6d, 0x83, 0xa3, 0x3d, 0xb4, 0xe8,
0xc0, 0xfd, 0xe3, 0x91, 0x33, 0x42, 0x67, 0xf0, 0x7f, 0xbb, 0x43, 0x5a, 0x0d, 0xfb, 0xba, 0x96,
0xc1, 0xf1, 0x3e, 0x5c, 0x4d, 0x7b, 0xdb, 0xc8, 0x7f, 0xc2, 0xe4, 0x3d, 0x00, 0x00, 0xff, 0xff,
0x2e, 0x25, 0xf4, 0x8b, 0x2c, 0x03, 0x00, 0x00,
}
......@@ -21,13 +21,13 @@
"revisionTime": "2017-03-31T03:19:02Z"
},
{
"checksumSHA1": "+CNxvSTtLN/56WUMMlQvgJFCz2o=",
"checksumSHA1": "C7Yd+5V4a/75li7OdslnLdTgqLI=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go",
"revision": "595c853b19e3440dde3728044a136d940811c1f9",
"revisionTime": "2017-07-25T17:44:10Z",
"revision": "60534539c0c8ed6396bf4fd9d7f35a68e1cd6734",
"revisionTime": "2017-07-28T19:21:39Z",
"tree": true,
"version": "v0.20.0",
"versionExact": "v0.20.0"
"version": "v0.23.0",
"versionExact": "v0.23.0"
},
{
"checksumSHA1": "dUHJbKas746n5fLzlwxHb6FOCxs=",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment