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:
authorAlejandro Rodríguez <alejorro70@gmail.com>2017-10-06 23:02:51 +0300
committerAlejandro Rodríguez <alejorro70@gmail.com>2017-10-06 23:02:51 +0300
commit9caea98377050bd4f7a2dc348ad93169ce97751e (patch)
tree9f87fba7b7d008039b4bdf44acff8f78ab8c96ac
parentcaaaf1dc5b349fef5f41571d1b06d689ddd944d2 (diff)
Update gitaly-proto to v0.40.0
-rw-r--r--internal/service/repository/repository.go4
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION2
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go2
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go165
-rw-r--r--vendor/vendor.json10
5 files changed, 130 insertions, 53 deletions
diff --git a/internal/service/repository/repository.go b/internal/service/repository/repository.go
index e6697adcf..3879c9eb2 100644
--- a/internal/service/repository/repository.go
+++ b/internal/service/repository/repository.go
@@ -19,3 +19,7 @@ func (s *server) RepositoryExists(ctx context.Context, in *pb.RepositoryExistsRe
return &pb.RepositoryExistsResponse{Exists: helper.IsGitDirectory(path)}, nil
}
+
+func (s *server) HasLocalBranches(ctx context.Context, in *pb.HasLocalBranchesRequest) (*pb.HasLocalBranchesResponse, error) {
+ return nil, nil
+}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
index 4ef2eb086..9b0025a78 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
@@ -1 +1 @@
-0.39.0
+0.40.0
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
index 755eab258..8705db090 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
@@ -121,6 +121,8 @@ It has these top-level messages:
CreateRepositoryResponse
GetArchiveRequest
GetArchiveResponse
+ HasLocalBranchesRequest
+ HasLocalBranchesResponse
Repository
GitCommit
CommitAuthor
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
index 519f76594..d88902ff3 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
@@ -381,6 +381,38 @@ func (m *GetArchiveResponse) GetData() []byte {
return nil
}
+type HasLocalBranchesRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
+}
+
+func (m *HasLocalBranchesRequest) Reset() { *m = HasLocalBranchesRequest{} }
+func (m *HasLocalBranchesRequest) String() string { return proto.CompactTextString(m) }
+func (*HasLocalBranchesRequest) ProtoMessage() {}
+func (*HasLocalBranchesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{18} }
+
+func (m *HasLocalBranchesRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+type HasLocalBranchesResponse struct {
+ Value bool `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
+}
+
+func (m *HasLocalBranchesResponse) Reset() { *m = HasLocalBranchesResponse{} }
+func (m *HasLocalBranchesResponse) String() string { return proto.CompactTextString(m) }
+func (*HasLocalBranchesResponse) ProtoMessage() {}
+func (*HasLocalBranchesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{19} }
+
+func (m *HasLocalBranchesResponse) GetValue() bool {
+ if m != nil {
+ return m.Value
+ }
+ return false
+}
+
func init() {
proto.RegisterType((*RepositoryExistsRequest)(nil), "gitaly.RepositoryExistsRequest")
proto.RegisterType((*RepositoryExistsResponse)(nil), "gitaly.RepositoryExistsResponse")
@@ -400,6 +432,8 @@ func init() {
proto.RegisterType((*CreateRepositoryResponse)(nil), "gitaly.CreateRepositoryResponse")
proto.RegisterType((*GetArchiveRequest)(nil), "gitaly.GetArchiveRequest")
proto.RegisterType((*GetArchiveResponse)(nil), "gitaly.GetArchiveResponse")
+ proto.RegisterType((*HasLocalBranchesRequest)(nil), "gitaly.HasLocalBranchesRequest")
+ proto.RegisterType((*HasLocalBranchesResponse)(nil), "gitaly.HasLocalBranchesResponse")
proto.RegisterEnum("gitaly.GetArchiveRequest_Format", GetArchiveRequest_Format_name, GetArchiveRequest_Format_value)
}
@@ -423,6 +457,7 @@ type RepositoryServiceClient interface {
FetchRemote(ctx context.Context, in *FetchRemoteRequest, opts ...grpc.CallOption) (*FetchRemoteResponse, error)
CreateRepository(ctx context.Context, in *CreateRepositoryRequest, opts ...grpc.CallOption) (*CreateRepositoryResponse, error)
GetArchive(ctx context.Context, in *GetArchiveRequest, opts ...grpc.CallOption) (RepositoryService_GetArchiveClient, error)
+ HasLocalBranches(ctx context.Context, in *HasLocalBranchesRequest, opts ...grpc.CallOption) (*HasLocalBranchesResponse, error)
// Deprecated, use the RepositoryExists RPC instead.
Exists(ctx context.Context, in *RepositoryExistsRequest, opts ...grpc.CallOption) (*RepositoryExistsResponse, error)
}
@@ -539,6 +574,15 @@ func (x *repositoryServiceGetArchiveClient) Recv() (*GetArchiveResponse, error)
return m, nil
}
+func (c *repositoryServiceClient) HasLocalBranches(ctx context.Context, in *HasLocalBranchesRequest, opts ...grpc.CallOption) (*HasLocalBranchesResponse, error) {
+ out := new(HasLocalBranchesResponse)
+ err := grpc.Invoke(ctx, "/gitaly.RepositoryService/HasLocalBranches", in, out, c.cc, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
func (c *repositoryServiceClient) Exists(ctx context.Context, in *RepositoryExistsRequest, opts ...grpc.CallOption) (*RepositoryExistsResponse, error) {
out := new(RepositoryExistsResponse)
err := grpc.Invoke(ctx, "/gitaly.RepositoryService/Exists", in, out, c.cc, opts...)
@@ -560,6 +604,7 @@ type RepositoryServiceServer interface {
FetchRemote(context.Context, *FetchRemoteRequest) (*FetchRemoteResponse, error)
CreateRepository(context.Context, *CreateRepositoryRequest) (*CreateRepositoryResponse, error)
GetArchive(*GetArchiveRequest, RepositoryService_GetArchiveServer) error
+ HasLocalBranches(context.Context, *HasLocalBranchesRequest) (*HasLocalBranchesResponse, error)
// Deprecated, use the RepositoryExists RPC instead.
Exists(context.Context, *RepositoryExistsRequest) (*RepositoryExistsResponse, error)
}
@@ -733,6 +778,24 @@ func (x *repositoryServiceGetArchiveServer) Send(m *GetArchiveResponse) error {
return x.ServerStream.SendMsg(m)
}
+func _RepositoryService_HasLocalBranches_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(HasLocalBranchesRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(RepositoryServiceServer).HasLocalBranches(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/gitaly.RepositoryService/HasLocalBranches",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(RepositoryServiceServer).HasLocalBranches(ctx, req.(*HasLocalBranchesRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
func _RepositoryService_Exists_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RepositoryExistsRequest)
if err := dec(in); err != nil {
@@ -788,6 +851,10 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
Handler: _RepositoryService_CreateRepository_Handler,
},
{
+ MethodName: "HasLocalBranches",
+ Handler: _RepositoryService_HasLocalBranches_Handler,
+ },
+ {
MethodName: "Exists",
Handler: _RepositoryService_Exists_Handler,
},
@@ -805,51 +872,55 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor8) }
var fileDescriptor8 = []byte{
- // 734 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x4f, 0x6f, 0xda, 0x4a,
- 0x10, 0x87, 0x90, 0x98, 0x64, 0xe0, 0x45, 0x64, 0x5e, 0xfe, 0x38, 0xce, 0x7b, 0x0d, 0x75, 0x2f,
- 0x39, 0xb4, 0xa8, 0x22, 0x97, 0x5e, 0x49, 0x94, 0x90, 0x28, 0x4a, 0xd5, 0xba, 0x91, 0x22, 0x21,
- 0x55, 0x68, 0x31, 0x1b, 0x58, 0x01, 0x5e, 0x77, 0x77, 0x49, 0x43, 0xbe, 0x64, 0x3f, 0x44, 0x8f,
- 0xfd, 0x12, 0x15, 0x6b, 0x63, 0x1b, 0x6c, 0x72, 0xa1, 0xbd, 0x79, 0x67, 0x67, 0x7e, 0x33, 0xfb,
- 0x9b, 0x99, 0x9f, 0x0c, 0xa6, 0xa0, 0x3e, 0x97, 0x4c, 0x71, 0x31, 0x79, 0x27, 0xa9, 0x78, 0x64,
- 0x2e, 0xad, 0xf9, 0x82, 0x2b, 0x8e, 0x46, 0x8f, 0x29, 0x32, 0x9c, 0x58, 0x65, 0xd9, 0x27, 0x82,
- 0x76, 0x03, 0xab, 0x7d, 0x0b, 0x07, 0x4e, 0x14, 0x71, 0xf1, 0xc4, 0xa4, 0x92, 0x0e, 0xfd, 0x36,
- 0xa6, 0x52, 0x61, 0x1d, 0x20, 0x06, 0x33, 0xf3, 0xd5, 0xfc, 0x49, 0xa9, 0x8e, 0xb5, 0x00, 0xa5,
- 0x16, 0x07, 0x39, 0x09, 0x2f, 0xbb, 0x0e, 0x66, 0x1a, 0x4e, 0xfa, 0xdc, 0x93, 0x14, 0xf7, 0xc1,
- 0xa0, 0xda, 0xa2, 0xb1, 0x36, 0x9d, 0xf0, 0x64, 0x7f, 0xd4, 0x31, 0xc4, 0x1d, 0x5c, 0x7b, 0xae,
- 0xa0, 0x23, 0xea, 0x29, 0x32, 0x5c, 0xa5, 0x86, 0x23, 0x38, 0xcc, 0xc0, 0x0b, 0x8a, 0xb0, 0x87,
- 0xb0, 0x13, 0x5c, 0x5e, 0x8e, 0x87, 0xab, 0x64, 0xc1, 0x37, 0xf0, 0x8f, 0x2b, 0x28, 0x51, 0xb4,
- 0xdd, 0x61, 0x6a, 0x44, 0x7c, 0x73, 0x4d, 0x3f, 0xaa, 0x1c, 0x18, 0xcf, 0xb4, 0xcd, 0xde, 0x05,
- 0x4c, 0x66, 0x0b, 0x6b, 0xf0, 0x61, 0xaf, 0x49, 0x44, 0x87, 0xf4, 0xe8, 0x39, 0x1f, 0x0e, 0xa9,
- 0xab, 0xfe, 0x7a, 0x1d, 0x26, 0xec, 0x2f, 0x66, 0x0c, 0x6b, 0xb9, 0x81, 0xbd, 0x18, 0xf8, 0x0b,
- 0x7b, 0xa6, 0xab, 0x30, 0xff, 0x16, 0xf6, 0x17, 0xc1, 0xc2, 0xde, 0x23, 0xac, 0x4b, 0xf6, 0x4c,
- 0x35, 0x4e, 0xc1, 0xd1, 0xdf, 0xf6, 0x00, 0x0e, 0x1b, 0xbe, 0x3f, 0x9c, 0x34, 0x99, 0x22, 0x4a,
- 0x09, 0xd6, 0x19, 0x2b, 0xba, 0xca, 0xf0, 0xa1, 0x05, 0x9b, 0x82, 0x3e, 0x32, 0xc9, 0xb8, 0xa7,
- 0x59, 0x28, 0x3b, 0xd1, 0xd9, 0xfe, 0x0f, 0xac, 0xac, 0x64, 0x21, 0x0b, 0x3f, 0xf3, 0x80, 0x97,
- 0x54, 0xb9, 0x7d, 0x87, 0x8e, 0xb8, 0x5a, 0x85, 0x83, 0xe9, 0x94, 0x0b, 0x0d, 0xa2, 0x4b, 0xd8,
- 0x72, 0xc2, 0x13, 0xee, 0xc2, 0xc6, 0x03, 0x17, 0x2e, 0x35, 0x0b, 0xba, 0x3f, 0xc1, 0x01, 0x0f,
- 0xa0, 0xe8, 0xf1, 0xb6, 0x22, 0x3d, 0x69, 0xae, 0x07, 0x4b, 0xe1, 0xf1, 0x3b, 0xd2, 0x93, 0x68,
- 0x42, 0x51, 0xb1, 0x11, 0xe5, 0x63, 0x65, 0x6e, 0x54, 0xf3, 0x27, 0x1b, 0xce, 0xec, 0x38, 0x0d,
- 0x91, 0xb2, 0xdf, 0x1e, 0xd0, 0x89, 0x69, 0x04, 0x19, 0xa4, 0xec, 0xdf, 0xd0, 0x09, 0x1e, 0x43,
- 0x69, 0xe0, 0xf1, 0xef, 0x5e, 0xbb, 0xcf, 0xa7, 0x4b, 0x56, 0xd4, 0x97, 0xa0, 0x4d, 0x57, 0x53,
- 0x8b, 0xbd, 0x07, 0xff, 0xce, 0x3d, 0x32, 0x7c, 0xfc, 0x2d, 0x1c, 0x9c, 0xeb, 0x61, 0x49, 0xbc,
- 0x68, 0x85, 0x21, 0xb0, 0xc0, 0x4c, 0xc3, 0x85, 0xa9, 0x7e, 0xe5, 0x61, 0xa7, 0x49, 0x55, 0x43,
- 0xb8, 0x7d, 0xf6, 0xb8, 0x12, 0xcd, 0x47, 0xb0, 0xe5, 0xf2, 0xd1, 0x88, 0xa9, 0x36, 0xeb, 0x86,
- 0x4c, 0x6f, 0x06, 0x86, 0xeb, 0xee, 0xb4, 0x07, 0xbe, 0xa0, 0x0f, 0xec, 0x49, 0x93, 0xbd, 0xe5,
- 0x84, 0x27, 0xfc, 0x00, 0xc6, 0x03, 0x17, 0x23, 0xa2, 0x34, 0xd9, 0xdb, 0xf5, 0xea, 0x2c, 0x49,
- 0xaa, 0xa6, 0xda, 0xa5, 0xf6, 0x73, 0x42, 0x7f, 0xfb, 0x14, 0x8c, 0xc0, 0x82, 0x45, 0x28, 0xb4,
- 0xae, 0x3f, 0x55, 0x72, 0xd3, 0x8f, 0xbb, 0x86, 0x53, 0xc9, 0x23, 0x80, 0x71, 0xd7, 0x70, 0xda,
- 0xcd, 0x56, 0x65, 0x0d, 0x4b, 0x50, 0x9c, 0x7e, 0x9f, 0xb5, 0xea, 0x95, 0x82, 0x7d, 0x02, 0x98,
- 0x04, 0x8e, 0x57, 0xa1, 0x4b, 0x14, 0xd1, 0xef, 0x2c, 0x3b, 0xfa, 0xbb, 0xfe, 0xc3, 0xd0, 0xb2,
- 0x34, 0xdb, 0x9c, 0x40, 0xb7, 0xf1, 0x1e, 0x2a, 0x8b, 0x62, 0x8a, 0xc7, 0x69, 0x5e, 0xe6, 0x54,
- 0xdb, 0xaa, 0x2e, 0x77, 0x08, 0x9b, 0x90, 0xc3, 0xd6, 0x4c, 0x04, 0x13, 0x0a, 0x89, 0xc9, 0xc0,
- 0x4c, 0x31, 0xb6, 0x5e, 0xbf, 0xe0, 0x11, 0x61, 0x5f, 0x00, 0xc4, 0x92, 0x87, 0x87, 0xf3, 0x21,
- 0x09, 0xd1, 0xb5, 0xac, 0xac, 0xab, 0x08, 0xe6, 0x33, 0x6c, 0xcf, 0x2b, 0x16, 0xfe, 0x1f, 0x35,
- 0x2b, 0x4b, 0x3b, 0xad, 0x57, 0xcb, 0xae, 0x93, 0x90, 0xf3, 0xea, 0x14, 0x43, 0x66, 0x4a, 0x60,
- 0x0c, 0x99, 0x2d, 0x6a, 0x76, 0x0e, 0xbf, 0x02, 0xa6, 0x55, 0x05, 0x23, 0x9e, 0x96, 0xca, 0x9b,
- 0x65, 0xbf, 0xe4, 0x12, 0xc1, 0x5f, 0x41, 0x29, 0xb1, 0xb0, 0x18, 0x31, 0x96, 0x96, 0x2a, 0xeb,
- 0x28, 0xf3, 0x2e, 0x42, 0xba, 0x87, 0xca, 0xe2, 0x52, 0xc6, 0xa3, 0xb4, 0x64, 0xfb, 0xe3, 0x51,
- 0x5a, 0xba, 0xcf, 0x39, 0x6c, 0x02, 0xc4, 0x33, 0x1e, 0xb7, 0x3b, 0xb5, 0x50, 0x71, 0xbb, 0xd3,
- 0x2b, 0x61, 0xe7, 0xde, 0xe7, 0xf1, 0x16, 0x8c, 0x3f, 0x38, 0xe2, 0x1d, 0x43, 0xff, 0xde, 0x9c,
- 0xfe, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x20, 0x17, 0xa1, 0x43, 0x10, 0x09, 0x00, 0x00,
+ // 785 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x5f, 0x6f, 0xda, 0x48,
+ 0x10, 0x87, 0x10, 0x4c, 0x32, 0x70, 0x11, 0xd9, 0xcb, 0x1f, 0xc7, 0xb9, 0xbb, 0x70, 0xbe, 0x97,
+ 0x3c, 0x5c, 0x51, 0x44, 0x5e, 0xfa, 0x4a, 0xa2, 0x84, 0x44, 0x69, 0xaa, 0xd6, 0x8d, 0x14, 0x09,
+ 0xa9, 0x42, 0x8b, 0xd9, 0xc0, 0x0a, 0xe3, 0x75, 0x77, 0x17, 0x1a, 0xf2, 0x89, 0xfa, 0xbd, 0xfa,
+ 0xd8, 0x2f, 0x51, 0x79, 0x6d, 0x6c, 0x83, 0x4d, 0x5e, 0xdc, 0xbe, 0xed, 0xcc, 0xee, 0xfe, 0x66,
+ 0x76, 0x66, 0x7e, 0x3f, 0x1b, 0x74, 0x4e, 0x3c, 0x26, 0xa8, 0x64, 0x7c, 0xfe, 0x46, 0x10, 0x3e,
+ 0xa3, 0x36, 0x69, 0x7a, 0x9c, 0x49, 0x86, 0xb4, 0x21, 0x95, 0xd8, 0x99, 0x1b, 0x35, 0x31, 0xc2,
+ 0x9c, 0x0c, 0x02, 0xaf, 0x79, 0x0f, 0x87, 0x56, 0x74, 0xe3, 0xea, 0x99, 0x0a, 0x29, 0x2c, 0xf2,
+ 0x65, 0x4a, 0x84, 0x44, 0x2d, 0x80, 0x18, 0x4c, 0x2f, 0x36, 0x8a, 0xa7, 0xd5, 0x16, 0x6a, 0x06,
+ 0x28, 0xcd, 0xf8, 0x92, 0x95, 0x38, 0x65, 0xb6, 0x40, 0x4f, 0xc3, 0x09, 0x8f, 0xb9, 0x82, 0xa0,
+ 0x03, 0xd0, 0x88, 0xf2, 0x28, 0xac, 0x2d, 0x2b, 0xb4, 0xcc, 0xf7, 0xea, 0x0e, 0xb6, 0xc7, 0xb7,
+ 0xae, 0xcd, 0xc9, 0x84, 0xb8, 0x12, 0x3b, 0x79, 0x72, 0x38, 0x86, 0xa3, 0x0c, 0xbc, 0x20, 0x09,
+ 0xd3, 0x81, 0xdd, 0x60, 0xf3, 0x7a, 0xea, 0xe4, 0x89, 0x82, 0xfe, 0x83, 0x3f, 0x6c, 0x4e, 0xb0,
+ 0x24, 0xbd, 0x3e, 0x95, 0x13, 0xec, 0xe9, 0x1b, 0xea, 0x51, 0xb5, 0xc0, 0x79, 0xa1, 0x7c, 0xe6,
+ 0x1e, 0xa0, 0x64, 0xb4, 0x30, 0x07, 0x0f, 0xf6, 0x3b, 0x98, 0xf7, 0xf1, 0x90, 0x5c, 0x32, 0xc7,
+ 0x21, 0xb6, 0xfc, 0xed, 0x79, 0xe8, 0x70, 0xb0, 0x1a, 0x31, 0xcc, 0xe5, 0x0e, 0xf6, 0x63, 0xe0,
+ 0x4f, 0xf4, 0x85, 0xe4, 0xa9, 0xfc, 0xff, 0x70, 0xb0, 0x0a, 0x16, 0xf6, 0x1e, 0xc1, 0xa6, 0xa0,
+ 0x2f, 0x44, 0xe1, 0x94, 0x2c, 0xb5, 0x36, 0xc7, 0x70, 0xd4, 0xf6, 0x3c, 0x67, 0xde, 0xa1, 0x12,
+ 0x4b, 0xc9, 0x69, 0x7f, 0x2a, 0x49, 0x9e, 0xe1, 0x43, 0x06, 0x6c, 0x71, 0x32, 0xa3, 0x82, 0x32,
+ 0x57, 0x55, 0xa1, 0x66, 0x45, 0xb6, 0xf9, 0x17, 0x18, 0x59, 0xc1, 0xc2, 0x2a, 0x7c, 0x2f, 0x02,
+ 0xba, 0x26, 0xd2, 0x1e, 0x59, 0x64, 0xc2, 0x64, 0x9e, 0x1a, 0xf8, 0x53, 0xce, 0x15, 0x88, 0x4a,
+ 0x61, 0xdb, 0x0a, 0x2d, 0xb4, 0x07, 0xe5, 0x27, 0xc6, 0x6d, 0xa2, 0x97, 0x54, 0x7f, 0x02, 0x03,
+ 0x1d, 0x42, 0xc5, 0x65, 0x3d, 0x89, 0x87, 0x42, 0xdf, 0x0c, 0x48, 0xe1, 0xb2, 0x07, 0x3c, 0x14,
+ 0x48, 0x87, 0x8a, 0xa4, 0x13, 0xc2, 0xa6, 0x52, 0x2f, 0x37, 0x8a, 0xa7, 0x65, 0x6b, 0x61, 0xfa,
+ 0x57, 0x84, 0x18, 0xf5, 0xc6, 0x64, 0xae, 0x6b, 0x41, 0x04, 0x21, 0x46, 0x77, 0x64, 0x8e, 0x4e,
+ 0xa0, 0x3a, 0x76, 0xd9, 0x57, 0xb7, 0x37, 0x62, 0x3e, 0xc9, 0x2a, 0x6a, 0x13, 0x94, 0xeb, 0xc6,
+ 0xf7, 0x98, 0xfb, 0xf0, 0xe7, 0xd2, 0x23, 0xc3, 0xc7, 0xdf, 0xc3, 0xe1, 0xa5, 0x1a, 0x96, 0xc4,
+ 0x8b, 0x72, 0x0c, 0x81, 0x01, 0x7a, 0x1a, 0x2e, 0x0c, 0xf5, 0xa3, 0x08, 0xbb, 0x1d, 0x22, 0xdb,
+ 0xdc, 0x1e, 0xd1, 0x59, 0xae, 0x32, 0x1f, 0xc3, 0xb6, 0xcd, 0x26, 0x13, 0x2a, 0x7b, 0x74, 0x10,
+ 0x56, 0x7a, 0x2b, 0x70, 0xdc, 0x0e, 0xfc, 0x1e, 0x78, 0x9c, 0x3c, 0xd1, 0x67, 0x55, 0xec, 0x6d,
+ 0x2b, 0xb4, 0xd0, 0x5b, 0xd0, 0x9e, 0x18, 0x9f, 0x60, 0xa9, 0x8a, 0xbd, 0xd3, 0x6a, 0x2c, 0x82,
+ 0xa4, 0x72, 0x6a, 0x5e, 0xab, 0x73, 0x56, 0x78, 0xde, 0x3c, 0x07, 0x2d, 0xf0, 0xa0, 0x0a, 0x94,
+ 0xba, 0xb7, 0x1f, 0xea, 0x05, 0x7f, 0xf1, 0xd0, 0xb6, 0xea, 0x45, 0x04, 0xa0, 0x3d, 0xb4, 0xad,
+ 0x5e, 0xa7, 0x5b, 0xdf, 0x40, 0x55, 0xa8, 0xf8, 0xeb, 0x8b, 0x6e, 0xab, 0x5e, 0x32, 0x4f, 0x01,
+ 0x25, 0x81, 0x63, 0x2a, 0x0c, 0xb0, 0xc4, 0xea, 0x9d, 0x35, 0x4b, 0xad, 0xfd, 0x16, 0xdc, 0x60,
+ 0xf1, 0x8e, 0xd9, 0xd8, 0xb9, 0xe0, 0xd8, 0xb5, 0x47, 0xb9, 0x88, 0x60, 0x9e, 0x81, 0x9e, 0x86,
+ 0x0b, 0xc3, 0xef, 0x41, 0x79, 0x86, 0x9d, 0x29, 0x09, 0x45, 0x38, 0x30, 0x5a, 0xdf, 0x2a, 0x4a,
+ 0x17, 0x17, 0xd4, 0x0d, 0x3e, 0x1c, 0xe8, 0x11, 0xea, 0xab, 0x6a, 0x8e, 0x4e, 0xd2, 0xb1, 0x97,
+ 0x3e, 0x1b, 0x46, 0x63, 0xfd, 0x81, 0x70, 0x0a, 0x0a, 0xa8, 0xbb, 0x50, 0xe1, 0x84, 0x44, 0xa3,
+ 0xe4, 0xc5, 0xcc, 0xaf, 0x81, 0xf1, 0xef, 0x2b, 0x27, 0x22, 0xec, 0x2b, 0x80, 0x58, 0x73, 0xd1,
+ 0xd1, 0xf2, 0x95, 0x84, 0xea, 0x1b, 0x46, 0xd6, 0x56, 0x04, 0xf3, 0x11, 0x76, 0x96, 0x25, 0x13,
+ 0xfd, 0x1d, 0x4d, 0x4b, 0x96, 0x78, 0x1b, 0xff, 0xac, 0xdb, 0x4e, 0x42, 0x2e, 0xcb, 0x63, 0x0c,
+ 0x99, 0xa9, 0xc1, 0x31, 0x64, 0xb6, 0xaa, 0x9a, 0x05, 0xf4, 0x19, 0x50, 0x5a, 0xd6, 0x50, 0x54,
+ 0xa7, 0xb5, 0xfa, 0x6a, 0x98, 0xaf, 0x1d, 0x89, 0xe0, 0x6f, 0xa0, 0x9a, 0x50, 0x0c, 0x14, 0x55,
+ 0x2c, 0xad, 0x95, 0xc6, 0x71, 0xe6, 0x5e, 0x84, 0xf4, 0x08, 0xf5, 0x55, 0x55, 0x88, 0x47, 0x69,
+ 0x8d, 0xfc, 0xc4, 0xa3, 0xb4, 0x56, 0x50, 0x0a, 0xa8, 0x03, 0x10, 0x93, 0x2c, 0x6e, 0x77, 0x8a,
+ 0xd1, 0x71, 0xbb, 0xd3, 0x9c, 0x34, 0x0b, 0x67, 0x45, 0x3f, 0xc3, 0x55, 0xd2, 0xc4, 0x19, 0xae,
+ 0x61, 0x67, 0x9c, 0xe1, 0x3a, 0xbe, 0x99, 0x05, 0x74, 0x0f, 0xda, 0x2f, 0xe4, 0x4e, 0x5f, 0x53,
+ 0x3f, 0x6e, 0xe7, 0x3f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x7b, 0x61, 0xeb, 0x54, 0xea, 0x09, 0x00,
+ 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index da3afb526..efb248634 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -201,12 +201,12 @@
"revisionTime": "2017-01-30T11:31:45Z"
},
{
- "checksumSHA1": "I7Kz+IncdenJ5tOCo/5qJlQ4U7k=",
+ "checksumSHA1": "AXXBF4XhkUMKqGxkvpqxZrvPX5g=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go",
- "revision": "8ac6c4c6cb2c124ff95cdd0f97bc4624055edc8f",
- "revisionTime": "2017-10-02T18:55:11Z",
- "version": "v0.39.0",
- "versionExact": "v0.39.0"
+ "revision": "45c994f22c2505248f725420ab480716f54b2539",
+ "revisionTime": "2017-10-06T19:40:06Z",
+ "version": "v0.40.0",
+ "versionExact": "v0.40.0"
},
{
"checksumSHA1": "nqWNlnMmVpt628zzvyo6Yv2CX5Q=",