gitaly 14.4.0.pre.rc43 → 14.6.0.pre.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/ruby/proto/gitaly/blob_pb.rb +2 -2
  3. data/ruby/proto/gitaly/blob_services_pb.rb +8 -8
  4. data/ruby/proto/gitaly/cleanup_pb.rb +2 -2
  5. data/ruby/proto/gitaly/cleanup_services_pb.rb +2 -2
  6. data/ruby/proto/gitaly/commit_pb.rb +2 -2
  7. data/ruby/proto/gitaly/commit_services_pb.rb +27 -27
  8. data/ruby/proto/gitaly/conflicts_pb.rb +2 -2
  9. data/ruby/proto/gitaly/conflicts_services_pb.rb +3 -3
  10. data/ruby/proto/gitaly/diff_pb.rb +2 -2
  11. data/ruby/proto/gitaly/diff_services_pb.rb +7 -7
  12. data/ruby/proto/gitaly/hook_pb.rb +2 -2
  13. data/ruby/proto/gitaly/hook_services_pb.rb +8 -10
  14. data/ruby/proto/gitaly/internal_pb.rb +1 -1
  15. data/ruby/proto/gitaly/internal_services_pb.rb +2 -2
  16. data/ruby/proto/gitaly/lint_pb.rb +1 -0
  17. data/ruby/proto/gitaly/namespace_pb.rb +1 -1
  18. data/ruby/proto/gitaly/namespace_services_pb.rb +5 -5
  19. data/ruby/proto/gitaly/objectpool_pb.rb +2 -10
  20. data/ruby/proto/gitaly/objectpool_services_pb.rb +8 -19
  21. data/ruby/proto/gitaly/operations_pb.rb +2 -2
  22. data/ruby/proto/gitaly/operations_services_pb.rb +16 -16
  23. data/ruby/proto/gitaly/praefect_pb.rb +32 -2
  24. data/ruby/proto/gitaly/praefect_services_pb.rb +7 -5
  25. data/ruby/proto/gitaly/ref_pb.rb +2 -12
  26. data/ruby/proto/gitaly/ref_services_pb.rb +19 -21
  27. data/ruby/proto/gitaly/remote_pb.rb +2 -2
  28. data/ruby/proto/gitaly/remote_services_pb.rb +4 -4
  29. data/ruby/proto/gitaly/repository-service_pb.rb +3 -20
  30. data/ruby/proto/gitaly/repository-service_services_pb.rb +41 -43
  31. data/ruby/proto/gitaly/server_pb.rb +1 -1
  32. data/ruby/proto/gitaly/server_services_pb.rb +3 -3
  33. data/ruby/proto/gitaly/shared_pb.rb +2 -2
  34. data/ruby/proto/gitaly/smarthttp_pb.rb +2 -2
  35. data/ruby/proto/gitaly/smarthttp_services_pb.rb +6 -6
  36. data/ruby/proto/gitaly/ssh_pb.rb +2 -2
  37. data/ruby/proto/gitaly/ssh_services_pb.rb +4 -4
  38. data/ruby/proto/gitaly/transaction_pb.rb +2 -2
  39. data/ruby/proto/gitaly/transaction_services_pb.rb +3 -3
  40. data/ruby/proto/gitaly/version.rb +1 -1
  41. data/ruby/proto/gitaly/wiki_pb.rb +2 -2
  42. data/ruby/proto/gitaly/wiki_services_pb.rb +6 -6
  43. metadata +6 -6
@@ -8,19 +8,19 @@ module Gitaly
8
8
  module PraefectInfoService
9
9
  class Service
10
10
 
11
- include GRPC::GenericService
11
+ include ::GRPC::GenericService
12
12
 
13
13
  self.marshal_class_method = :encode
14
14
  self.unmarshal_class_method = :decode
15
15
  self.service_name = 'gitaly.PraefectInfoService'
16
16
 
17
- rpc :RepositoryReplicas, Gitaly::RepositoryReplicasRequest, Gitaly::RepositoryReplicasResponse
17
+ rpc :RepositoryReplicas, ::Gitaly::RepositoryReplicasRequest, ::Gitaly::RepositoryReplicasResponse
18
18
  # DatalossCheck checks for unavailable repositories.
19
- rpc :DatalossCheck, Gitaly::DatalossCheckRequest, Gitaly::DatalossCheckResponse
19
+ rpc :DatalossCheck, ::Gitaly::DatalossCheckRequest, ::Gitaly::DatalossCheckResponse
20
20
  # SetAuthoritativeStorage sets the authoritative storage for a repository on a given virtual storage.
21
21
  # This causes the current version of the repository on the authoritative storage to be considered the
22
22
  # latest and overwrite any other version on the virtual storage.
23
- rpc :SetAuthoritativeStorage, Gitaly::SetAuthoritativeStorageRequest, Gitaly::SetAuthoritativeStorageResponse
23
+ rpc :SetAuthoritativeStorage, ::Gitaly::SetAuthoritativeStorageRequest, ::Gitaly::SetAuthoritativeStorageResponse
24
24
  # SetReplicationFactor assigns or unassigns host nodes from the repository to meet the desired replication factor.
25
25
  # SetReplicationFactor returns an error when trying to set a replication factor that exceeds the storage node count
26
26
  # in the virtual storage. An error is also returned when trying to set a replication factor below one. The primary node
@@ -29,7 +29,9 @@ module Gitaly
29
29
  # This might cause the actual replication factor to be higher than desired if the replication factor is set during an upgrade
30
30
  # from a Praefect node that does not yet know about a new node. As assignments of unconfigured storages are ignored, replication
31
31
  # factor of repositories assigned to a storage node removed from the cluster is effectively decreased.
32
- rpc :SetReplicationFactor, Gitaly::SetReplicationFactorRequest, Gitaly::SetReplicationFactorResponse
32
+ rpc :SetReplicationFactor, ::Gitaly::SetReplicationFactorRequest, ::Gitaly::SetReplicationFactorResponse
33
+ # GetRepositoryMetadata returns the cluster metadata for a repository. Returns NotFound if the repository does not exist.
34
+ rpc :GetRepositoryMetadata, ::Gitaly::GetRepositoryMetadataRequest, ::Gitaly::GetRepositoryMetadataResponse
33
35
  end
34
36
 
35
37
  Stub = Service.rpc_stub_class
@@ -1,12 +1,11 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: ref.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'lint_pb'
7
5
  require 'shared_pb'
8
- require 'blob_pb'
9
6
  require 'google/protobuf/timestamp_pb'
7
+ require 'google/protobuf'
8
+
10
9
  Google::Protobuf::DescriptorPool.generated_pool.build do
11
10
  add_file("ref.proto", :syntax => :proto3) do
12
11
  add_message "gitaly.FindDefaultBranchNameRequest" do
@@ -168,13 +167,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
168
167
  optional :message, :bytes, 2
169
168
  optional :tag_id, :string, 3
170
169
  end
171
- add_message "gitaly.ListNewCommitsRequest" do
172
- optional :repository, :message, 1, "gitaly.Repository"
173
- optional :commit_id, :string, 2
174
- end
175
- add_message "gitaly.ListNewCommitsResponse" do
176
- repeated :commits, :message, 1, "gitaly.GitCommit"
177
- end
178
170
  add_message "gitaly.FindAllRemoteBranchesRequest" do
179
171
  optional :repository, :message, 1, "gitaly.Repository"
180
172
  optional :remote_name, :string, 2
@@ -254,8 +246,6 @@ module Gitaly
254
246
  GetTagSignaturesResponse::TagSignature = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTagSignaturesResponse.TagSignature").msgclass
255
247
  GetTagMessagesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTagMessagesRequest").msgclass
256
248
  GetTagMessagesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTagMessagesResponse").msgclass
257
- ListNewCommitsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewCommitsRequest").msgclass
258
- ListNewCommitsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewCommitsResponse").msgclass
259
249
  FindAllRemoteBranchesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllRemoteBranchesRequest").msgclass
260
250
  FindAllRemoteBranchesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllRemoteBranchesResponse").msgclass
261
251
  PackRefsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackRefsRequest").msgclass
@@ -8,46 +8,44 @@ module Gitaly
8
8
  module RefService
9
9
  class Service
10
10
 
11
- include GRPC::GenericService
11
+ include ::GRPC::GenericService
12
12
 
13
13
  self.marshal_class_method = :encode
14
14
  self.unmarshal_class_method = :decode
15
15
  self.service_name = 'gitaly.RefService'
16
16
 
17
- rpc :FindDefaultBranchName, Gitaly::FindDefaultBranchNameRequest, Gitaly::FindDefaultBranchNameResponse
18
- rpc :FindAllBranchNames, Gitaly::FindAllBranchNamesRequest, stream(Gitaly::FindAllBranchNamesResponse)
19
- rpc :FindAllTagNames, Gitaly::FindAllTagNamesRequest, stream(Gitaly::FindAllTagNamesResponse)
17
+ rpc :FindDefaultBranchName, ::Gitaly::FindDefaultBranchNameRequest, ::Gitaly::FindDefaultBranchNameResponse
18
+ rpc :FindAllBranchNames, ::Gitaly::FindAllBranchNamesRequest, stream(::Gitaly::FindAllBranchNamesResponse)
19
+ rpc :FindAllTagNames, ::Gitaly::FindAllTagNamesRequest, stream(::Gitaly::FindAllTagNamesResponse)
20
20
  # Return a stream so we can divide the response in chunks of branches
21
- rpc :FindLocalBranches, Gitaly::FindLocalBranchesRequest, stream(Gitaly::FindLocalBranchesResponse)
22
- rpc :FindAllBranches, Gitaly::FindAllBranchesRequest, stream(Gitaly::FindAllBranchesResponse)
21
+ rpc :FindLocalBranches, ::Gitaly::FindLocalBranchesRequest, stream(::Gitaly::FindLocalBranchesResponse)
22
+ rpc :FindAllBranches, ::Gitaly::FindAllBranchesRequest, stream(::Gitaly::FindAllBranchesResponse)
23
23
  # Returns a stream of tags repository has.
24
- rpc :FindAllTags, Gitaly::FindAllTagsRequest, stream(Gitaly::FindAllTagsResponse)
25
- rpc :FindTag, Gitaly::FindTagRequest, Gitaly::FindTagResponse
26
- rpc :FindAllRemoteBranches, Gitaly::FindAllRemoteBranchesRequest, stream(Gitaly::FindAllRemoteBranchesResponse)
27
- rpc :RefExists, Gitaly::RefExistsRequest, Gitaly::RefExistsResponse
24
+ rpc :FindAllTags, ::Gitaly::FindAllTagsRequest, stream(::Gitaly::FindAllTagsResponse)
25
+ rpc :FindTag, ::Gitaly::FindTagRequest, ::Gitaly::FindTagResponse
26
+ rpc :FindAllRemoteBranches, ::Gitaly::FindAllRemoteBranchesRequest, stream(::Gitaly::FindAllRemoteBranchesResponse)
27
+ rpc :RefExists, ::Gitaly::RefExistsRequest, ::Gitaly::RefExistsResponse
28
28
  # FindBranch finds a branch by its unqualified name (like "master") and
29
29
  # returns the commit it currently points to.
30
- rpc :FindBranch, Gitaly::FindBranchRequest, Gitaly::FindBranchResponse
31
- rpc :DeleteRefs, Gitaly::DeleteRefsRequest, Gitaly::DeleteRefsResponse
32
- rpc :ListBranchNamesContainingCommit, Gitaly::ListBranchNamesContainingCommitRequest, stream(Gitaly::ListBranchNamesContainingCommitResponse)
33
- rpc :ListTagNamesContainingCommit, Gitaly::ListTagNamesContainingCommitRequest, stream(Gitaly::ListTagNamesContainingCommitResponse)
30
+ rpc :FindBranch, ::Gitaly::FindBranchRequest, ::Gitaly::FindBranchResponse
31
+ rpc :DeleteRefs, ::Gitaly::DeleteRefsRequest, ::Gitaly::DeleteRefsResponse
32
+ rpc :ListBranchNamesContainingCommit, ::Gitaly::ListBranchNamesContainingCommitRequest, stream(::Gitaly::ListBranchNamesContainingCommitResponse)
33
+ rpc :ListTagNamesContainingCommit, ::Gitaly::ListTagNamesContainingCommitRequest, stream(::Gitaly::ListTagNamesContainingCommitResponse)
34
34
  # GetTagSignatures returns signatures for annotated tags resolved from a set of revisions. Revisions
35
35
  # which don't resolve to an annotated tag are silently discarded. Revisions which cannot be resolved
36
36
  # result in an error. Tags which are annotated but not signed will return a TagSignature response
37
37
  # which has no signature, but its unsigned contents will still be returned.
38
- rpc :GetTagSignatures, Gitaly::GetTagSignaturesRequest, stream(Gitaly::GetTagSignaturesResponse)
39
- rpc :GetTagMessages, Gitaly::GetTagMessagesRequest, stream(Gitaly::GetTagMessagesResponse)
40
- # Returns commits that are only reachable from the ref passed
41
- rpc :ListNewCommits, Gitaly::ListNewCommitsRequest, stream(Gitaly::ListNewCommitsResponse)
42
- rpc :PackRefs, Gitaly::PackRefsRequest, Gitaly::PackRefsResponse
38
+ rpc :GetTagSignatures, ::Gitaly::GetTagSignaturesRequest, stream(::Gitaly::GetTagSignaturesResponse)
39
+ rpc :GetTagMessages, ::Gitaly::GetTagMessagesRequest, stream(::Gitaly::GetTagMessagesResponse)
40
+ rpc :PackRefs, ::Gitaly::PackRefsRequest, ::Gitaly::PackRefsResponse
43
41
  # ListRefs returns a stream of all references in the repository. By default, pseudo-revisions like HEAD
44
42
  # will not be returned by this RPC. Any symbolic references will be resolved to the object ID it is
45
43
  # pointing at.
46
- rpc :ListRefs, Gitaly::ListRefsRequest, stream(Gitaly::ListRefsResponse)
44
+ rpc :ListRefs, ::Gitaly::ListRefsRequest, stream(::Gitaly::ListRefsResponse)
47
45
  # FindRefsByOID returns an array of fully qualified reference names that point to an object ID.
48
46
  # It returns nothing if the object ID doesn't exist, or doesn't point to
49
47
  # any branches or tags. Prefixes can be also be used as the object ID.
50
- rpc :FindRefsByOID, Gitaly::FindRefsByOIDRequest, Gitaly::FindRefsByOIDResponse
48
+ rpc :FindRefsByOID, ::Gitaly::FindRefsByOIDRequest, ::Gitaly::FindRefsByOIDResponse
51
49
  end
52
50
 
53
51
  Stub = Service.rpc_stub_class
@@ -1,10 +1,10 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: remote.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'lint_pb'
7
5
  require 'shared_pb'
6
+ require 'google/protobuf'
7
+
8
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
9
9
  add_file("remote.proto", :syntax => :proto3) do
10
10
  add_message "gitaly.UpdateRemoteMirrorRequest" do
@@ -8,7 +8,7 @@ module Gitaly
8
8
  module RemoteService
9
9
  class Service
10
10
 
11
- include GRPC::GenericService
11
+ include ::GRPC::GenericService
12
12
 
13
13
  self.marshal_class_method = :encode
14
14
  self.unmarshal_class_method = :decode
@@ -19,14 +19,14 @@ module Gitaly
19
19
  # references to the mirror. Created and modified references are updated, removed references are
20
20
  # deleted from the mirror. UpdateRemoteMirror updates all tags. Branches are updated if they match
21
21
  # the patterns specified in the requests.
22
- rpc :UpdateRemoteMirror, stream(Gitaly::UpdateRemoteMirrorRequest), Gitaly::UpdateRemoteMirrorResponse
23
- rpc :FindRemoteRepository, Gitaly::FindRemoteRepositoryRequest, Gitaly::FindRemoteRepositoryResponse
22
+ rpc :UpdateRemoteMirror, stream(::Gitaly::UpdateRemoteMirrorRequest), ::Gitaly::UpdateRemoteMirrorResponse
23
+ rpc :FindRemoteRepository, ::Gitaly::FindRemoteRepositoryRequest, ::Gitaly::FindRemoteRepositoryResponse
24
24
  # FindRemoteRootRef tries to find the root reference of a remote
25
25
  # repository. The root reference is the default branch as pointed to by
26
26
  # the remotes HEAD reference. Returns an InvalidArgument error if the
27
27
  # specified remote does not exist and a NotFound error in case no HEAD
28
28
  # branch was found.
29
- rpc :FindRemoteRootRef, Gitaly::FindRemoteRootRefRequest, Gitaly::FindRemoteRootRefResponse
29
+ rpc :FindRemoteRootRef, ::Gitaly::FindRemoteRootRefRequest, ::Gitaly::FindRemoteRootRefResponse
30
30
  end
31
31
 
32
32
  Stub = Service.rpc_stub_class
@@ -1,10 +1,10 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: repository-service.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'lint_pb'
7
5
  require 'shared_pb'
6
+ require 'google/protobuf'
7
+
8
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
9
9
  add_file("repository-service.proto", :syntax => :proto3) do
10
10
  add_message "gitaly.RepositoryExistsRequest" do
@@ -65,6 +65,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
65
65
  add_message "gitaly.FetchBundleRequest" do
66
66
  optional :repository, :message, 1, "gitaly.Repository"
67
67
  optional :data, :bytes, 2
68
+ optional :update_head, :bool, 3
68
69
  end
69
70
  add_message "gitaly.FetchBundleResponse" do
70
71
  end
@@ -283,20 +284,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
283
284
  add_message "gitaly.GetObjectDirectorySizeResponse" do
284
285
  optional :size, :int64, 1
285
286
  end
286
- add_message "gitaly.CloneFromPoolRequest" do
287
- optional :repository, :message, 1, "gitaly.Repository"
288
- optional :pool, :message, 2, "gitaly.ObjectPool"
289
- optional :remote, :message, 3, "gitaly.Remote"
290
- end
291
- add_message "gitaly.CloneFromPoolResponse" do
292
- end
293
- add_message "gitaly.CloneFromPoolInternalRequest" do
294
- optional :repository, :message, 1, "gitaly.Repository"
295
- optional :pool, :message, 2, "gitaly.ObjectPool"
296
- optional :source_repository, :message, 3, "gitaly.Repository"
297
- end
298
- add_message "gitaly.CloneFromPoolInternalResponse" do
299
- end
300
287
  add_message "gitaly.RemoveRepositoryRequest" do
301
288
  optional :repository, :message, 1, "gitaly.Repository"
302
289
  end
@@ -404,10 +391,6 @@ module Gitaly
404
391
  Remote = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Remote").msgclass
405
392
  GetObjectDirectorySizeRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetObjectDirectorySizeRequest").msgclass
406
393
  GetObjectDirectorySizeResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetObjectDirectorySizeResponse").msgclass
407
- CloneFromPoolRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolRequest").msgclass
408
- CloneFromPoolResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolResponse").msgclass
409
- CloneFromPoolInternalRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolInternalRequest").msgclass
410
- CloneFromPoolInternalResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolInternalResponse").msgclass
411
394
  RemoveRepositoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRepositoryRequest").msgclass
412
395
  RemoveRepositoryResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRepositoryResponse").msgclass
413
396
  RenameRepositoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RenameRepositoryRequest").msgclass
@@ -8,73 +8,71 @@ module Gitaly
8
8
  module RepositoryService
9
9
  class Service
10
10
 
11
- include GRPC::GenericService
11
+ include ::GRPC::GenericService
12
12
 
13
13
  self.marshal_class_method = :encode
14
14
  self.unmarshal_class_method = :decode
15
15
  self.service_name = 'gitaly.RepositoryService'
16
16
 
17
- rpc :RepositoryExists, Gitaly::RepositoryExistsRequest, Gitaly::RepositoryExistsResponse
18
- rpc :RepackIncremental, Gitaly::RepackIncrementalRequest, Gitaly::RepackIncrementalResponse
19
- rpc :RepackFull, Gitaly::RepackFullRequest, Gitaly::RepackFullResponse
20
- rpc :MidxRepack, Gitaly::MidxRepackRequest, Gitaly::MidxRepackResponse
21
- rpc :GarbageCollect, Gitaly::GarbageCollectRequest, Gitaly::GarbageCollectResponse
22
- rpc :WriteCommitGraph, Gitaly::WriteCommitGraphRequest, Gitaly::WriteCommitGraphResponse
23
- rpc :RepositorySize, Gitaly::RepositorySizeRequest, Gitaly::RepositorySizeResponse
24
- rpc :ApplyGitattributes, Gitaly::ApplyGitattributesRequest, Gitaly::ApplyGitattributesResponse
17
+ rpc :RepositoryExists, ::Gitaly::RepositoryExistsRequest, ::Gitaly::RepositoryExistsResponse
18
+ rpc :RepackIncremental, ::Gitaly::RepackIncrementalRequest, ::Gitaly::RepackIncrementalResponse
19
+ rpc :RepackFull, ::Gitaly::RepackFullRequest, ::Gitaly::RepackFullResponse
20
+ rpc :MidxRepack, ::Gitaly::MidxRepackRequest, ::Gitaly::MidxRepackResponse
21
+ rpc :GarbageCollect, ::Gitaly::GarbageCollectRequest, ::Gitaly::GarbageCollectResponse
22
+ rpc :WriteCommitGraph, ::Gitaly::WriteCommitGraphRequest, ::Gitaly::WriteCommitGraphResponse
23
+ rpc :RepositorySize, ::Gitaly::RepositorySizeRequest, ::Gitaly::RepositorySizeResponse
24
+ rpc :ApplyGitattributes, ::Gitaly::ApplyGitattributesRequest, ::Gitaly::ApplyGitattributesResponse
25
25
  # FetchRemote fetches references from a remote repository into the local
26
26
  # repository.
27
- rpc :FetchRemote, Gitaly::FetchRemoteRequest, Gitaly::FetchRemoteResponse
28
- rpc :CreateRepository, Gitaly::CreateRepositoryRequest, Gitaly::CreateRepositoryResponse
29
- rpc :GetArchive, Gitaly::GetArchiveRequest, stream(Gitaly::GetArchiveResponse)
30
- rpc :HasLocalBranches, Gitaly::HasLocalBranchesRequest, Gitaly::HasLocalBranchesResponse
27
+ rpc :FetchRemote, ::Gitaly::FetchRemoteRequest, ::Gitaly::FetchRemoteResponse
28
+ rpc :CreateRepository, ::Gitaly::CreateRepositoryRequest, ::Gitaly::CreateRepositoryResponse
29
+ rpc :GetArchive, ::Gitaly::GetArchiveRequest, stream(::Gitaly::GetArchiveResponse)
30
+ rpc :HasLocalBranches, ::Gitaly::HasLocalBranchesRequest, ::Gitaly::HasLocalBranchesResponse
31
31
  # FetchSourceBranch fetches a branch from a second (potentially remote)
32
32
  # repository into the given repository.
33
- rpc :FetchSourceBranch, Gitaly::FetchSourceBranchRequest, Gitaly::FetchSourceBranchResponse
34
- rpc :Fsck, Gitaly::FsckRequest, Gitaly::FsckResponse
35
- rpc :WriteRef, Gitaly::WriteRefRequest, Gitaly::WriteRefResponse
36
- rpc :FindMergeBase, Gitaly::FindMergeBaseRequest, Gitaly::FindMergeBaseResponse
37
- rpc :CreateFork, Gitaly::CreateForkRequest, Gitaly::CreateForkResponse
38
- rpc :CreateRepositoryFromURL, Gitaly::CreateRepositoryFromURLRequest, Gitaly::CreateRepositoryFromURLResponse
33
+ rpc :FetchSourceBranch, ::Gitaly::FetchSourceBranchRequest, ::Gitaly::FetchSourceBranchResponse
34
+ rpc :Fsck, ::Gitaly::FsckRequest, ::Gitaly::FsckResponse
35
+ rpc :WriteRef, ::Gitaly::WriteRefRequest, ::Gitaly::WriteRefResponse
36
+ rpc :FindMergeBase, ::Gitaly::FindMergeBaseRequest, ::Gitaly::FindMergeBaseResponse
37
+ rpc :CreateFork, ::Gitaly::CreateForkRequest, ::Gitaly::CreateForkResponse
38
+ rpc :CreateRepositoryFromURL, ::Gitaly::CreateRepositoryFromURLRequest, ::Gitaly::CreateRepositoryFromURLResponse
39
39
  # CreateBundle creates a bundle from all refs
40
- rpc :CreateBundle, Gitaly::CreateBundleRequest, stream(Gitaly::CreateBundleResponse)
40
+ rpc :CreateBundle, ::Gitaly::CreateBundleRequest, stream(::Gitaly::CreateBundleResponse)
41
41
  # CreateBundleFromRefList creates a bundle from a stream of ref patterns.
42
42
  # When the bundle would be empty the FailedPrecondition error code is returned.
43
- rpc :CreateBundleFromRefList, stream(Gitaly::CreateBundleFromRefListRequest), stream(Gitaly::CreateBundleFromRefListResponse)
43
+ rpc :CreateBundleFromRefList, stream(::Gitaly::CreateBundleFromRefListRequest), stream(::Gitaly::CreateBundleFromRefListResponse)
44
44
  # FetchBundle fetches references from a bundle into the local repository.
45
45
  # Refs will be mirrored to the target repository with the refspec
46
46
  # "+refs/*:refs/*" and refs that do not exist in the bundle will be removed.
47
- rpc :FetchBundle, stream(Gitaly::FetchBundleRequest), Gitaly::FetchBundleResponse
48
- rpc :CreateRepositoryFromBundle, stream(Gitaly::CreateRepositoryFromBundleRequest), Gitaly::CreateRepositoryFromBundleResponse
47
+ rpc :FetchBundle, stream(::Gitaly::FetchBundleRequest), ::Gitaly::FetchBundleResponse
48
+ rpc :CreateRepositoryFromBundle, stream(::Gitaly::CreateRepositoryFromBundleRequest), ::Gitaly::CreateRepositoryFromBundleResponse
49
49
  # GetConfig reads the target repository's gitconfig and streams its contents
50
50
  # back. Returns a NotFound error in case no gitconfig was found.
51
- rpc :GetConfig, Gitaly::GetConfigRequest, stream(Gitaly::GetConfigResponse)
52
- rpc :FindLicense, Gitaly::FindLicenseRequest, Gitaly::FindLicenseResponse
53
- rpc :GetInfoAttributes, Gitaly::GetInfoAttributesRequest, stream(Gitaly::GetInfoAttributesResponse)
54
- rpc :CalculateChecksum, Gitaly::CalculateChecksumRequest, Gitaly::CalculateChecksumResponse
55
- rpc :Cleanup, Gitaly::CleanupRequest, Gitaly::CleanupResponse
56
- rpc :GetSnapshot, Gitaly::GetSnapshotRequest, stream(Gitaly::GetSnapshotResponse)
57
- rpc :CreateRepositoryFromSnapshot, Gitaly::CreateRepositoryFromSnapshotRequest, Gitaly::CreateRepositoryFromSnapshotResponse
58
- rpc :GetRawChanges, Gitaly::GetRawChangesRequest, stream(Gitaly::GetRawChangesResponse)
59
- rpc :SearchFilesByContent, Gitaly::SearchFilesByContentRequest, stream(Gitaly::SearchFilesByContentResponse)
60
- rpc :SearchFilesByName, Gitaly::SearchFilesByNameRequest, stream(Gitaly::SearchFilesByNameResponse)
61
- rpc :RestoreCustomHooks, stream(Gitaly::RestoreCustomHooksRequest), Gitaly::RestoreCustomHooksResponse
62
- rpc :BackupCustomHooks, Gitaly::BackupCustomHooksRequest, stream(Gitaly::BackupCustomHooksResponse)
63
- rpc :GetObjectDirectorySize, Gitaly::GetObjectDirectorySizeRequest, Gitaly::GetObjectDirectorySizeResponse
64
- rpc :CloneFromPool, Gitaly::CloneFromPoolRequest, Gitaly::CloneFromPoolResponse
65
- rpc :CloneFromPoolInternal, Gitaly::CloneFromPoolInternalRequest, Gitaly::CloneFromPoolInternalResponse
51
+ rpc :GetConfig, ::Gitaly::GetConfigRequest, stream(::Gitaly::GetConfigResponse)
52
+ rpc :FindLicense, ::Gitaly::FindLicenseRequest, ::Gitaly::FindLicenseResponse
53
+ rpc :GetInfoAttributes, ::Gitaly::GetInfoAttributesRequest, stream(::Gitaly::GetInfoAttributesResponse)
54
+ rpc :CalculateChecksum, ::Gitaly::CalculateChecksumRequest, ::Gitaly::CalculateChecksumResponse
55
+ rpc :Cleanup, ::Gitaly::CleanupRequest, ::Gitaly::CleanupResponse
56
+ rpc :GetSnapshot, ::Gitaly::GetSnapshotRequest, stream(::Gitaly::GetSnapshotResponse)
57
+ rpc :CreateRepositoryFromSnapshot, ::Gitaly::CreateRepositoryFromSnapshotRequest, ::Gitaly::CreateRepositoryFromSnapshotResponse
58
+ rpc :GetRawChanges, ::Gitaly::GetRawChangesRequest, stream(::Gitaly::GetRawChangesResponse)
59
+ rpc :SearchFilesByContent, ::Gitaly::SearchFilesByContentRequest, stream(::Gitaly::SearchFilesByContentResponse)
60
+ rpc :SearchFilesByName, ::Gitaly::SearchFilesByNameRequest, stream(::Gitaly::SearchFilesByNameResponse)
61
+ rpc :RestoreCustomHooks, stream(::Gitaly::RestoreCustomHooksRequest), ::Gitaly::RestoreCustomHooksResponse
62
+ rpc :BackupCustomHooks, ::Gitaly::BackupCustomHooksRequest, stream(::Gitaly::BackupCustomHooksResponse)
63
+ rpc :GetObjectDirectorySize, ::Gitaly::GetObjectDirectorySizeRequest, ::Gitaly::GetObjectDirectorySizeResponse
66
64
  # RemoveRepository will move the repository to `+gitaly/tmp/<relative_path>_removed` and
67
65
  # eventually remove it. This ensures that even on networked filesystems the
68
66
  # data is actually removed even if there's someone still handling the data.
69
- rpc :RemoveRepository, Gitaly::RemoveRepositoryRequest, Gitaly::RemoveRepositoryResponse
70
- rpc :RenameRepository, Gitaly::RenameRepositoryRequest, Gitaly::RenameRepositoryResponse
71
- rpc :ReplicateRepository, Gitaly::ReplicateRepositoryRequest, Gitaly::ReplicateRepositoryResponse
72
- rpc :OptimizeRepository, Gitaly::OptimizeRepositoryRequest, Gitaly::OptimizeRepositoryResponse
67
+ rpc :RemoveRepository, ::Gitaly::RemoveRepositoryRequest, ::Gitaly::RemoveRepositoryResponse
68
+ rpc :RenameRepository, ::Gitaly::RenameRepositoryRequest, ::Gitaly::RenameRepositoryResponse
69
+ rpc :ReplicateRepository, ::Gitaly::ReplicateRepositoryRequest, ::Gitaly::ReplicateRepositoryResponse
70
+ rpc :OptimizeRepository, ::Gitaly::OptimizeRepositoryRequest, ::Gitaly::OptimizeRepositoryResponse
73
71
  # SetFullPath writes the "gitlab.fullpath" configuration into the
74
72
  # repository's gitconfig. This is mainly to help debugging purposes in case
75
73
  # an admin inspects the repository's gitconfig such that he can easily see
76
74
  # what the repository name is.
77
- rpc :SetFullPath, Gitaly::SetFullPathRequest, Gitaly::SetFullPathResponse
75
+ rpc :SetFullPath, ::Gitaly::SetFullPathRequest, ::Gitaly::SetFullPathResponse
78
76
  end
79
77
 
80
78
  Stub = Service.rpc_stub_class
@@ -1,9 +1,9 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: server.proto
3
3
 
4
+ require 'lint_pb'
4
5
  require 'google/protobuf'
5
6
 
6
- require 'lint_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  add_file("server.proto", :syntax => :proto3) do
9
9
  add_message "gitaly.ServerInfoRequest" do
@@ -8,14 +8,14 @@ module Gitaly
8
8
  module ServerService
9
9
  class Service
10
10
 
11
- include GRPC::GenericService
11
+ include ::GRPC::GenericService
12
12
 
13
13
  self.marshal_class_method = :encode
14
14
  self.unmarshal_class_method = :decode
15
15
  self.service_name = 'gitaly.ServerService'
16
16
 
17
- rpc :ServerInfo, Gitaly::ServerInfoRequest, Gitaly::ServerInfoResponse
18
- rpc :DiskStatistics, Gitaly::DiskStatisticsRequest, Gitaly::DiskStatisticsResponse
17
+ rpc :ServerInfo, ::Gitaly::ServerInfoRequest, ::Gitaly::ServerInfoResponse
18
+ rpc :DiskStatistics, ::Gitaly::DiskStatisticsRequest, ::Gitaly::DiskStatisticsResponse
19
19
  end
20
20
 
21
21
  Stub = Service.rpc_stub_class
@@ -1,10 +1,10 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: shared.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'google/protobuf/timestamp_pb'
7
5
  require 'lint_pb'
6
+ require 'google/protobuf'
7
+
8
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
9
9
  add_file("shared.proto", :syntax => :proto3) do
10
10
  add_message "gitaly.Repository" do
@@ -1,10 +1,10 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: smarthttp.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'lint_pb'
7
5
  require 'shared_pb'
6
+ require 'google/protobuf'
7
+
8
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
9
9
  add_file("smarthttp.proto", :syntax => :proto3) do
10
10
  add_message "gitaly.InfoRefsRequest" do
@@ -8,7 +8,7 @@ module Gitaly
8
8
  module SmartHTTPService
9
9
  class Service
10
10
 
11
- include GRPC::GenericService
11
+ include ::GRPC::GenericService
12
12
 
13
13
  self.marshal_class_method = :encode
14
14
  self.unmarshal_class_method = :decode
@@ -17,17 +17,17 @@ module Gitaly
17
17
  # The response body for GET /info/refs?service=git-upload-pack
18
18
  # Will be invoked when the user executes a `git fetch`, meaning the server
19
19
  # will upload the packs to that user. The user doesn't upload new objects.
20
- rpc :InfoRefsUploadPack, Gitaly::InfoRefsRequest, stream(Gitaly::InfoRefsResponse)
20
+ rpc :InfoRefsUploadPack, ::Gitaly::InfoRefsRequest, stream(::Gitaly::InfoRefsResponse)
21
21
  # The response body for GET /info/refs?service=git-receive-pack
22
22
  # Will be invoked when the user executes a `git push`, but only advertises
23
23
  # references to the user.
24
- rpc :InfoRefsReceivePack, Gitaly::InfoRefsRequest, stream(Gitaly::InfoRefsResponse)
24
+ rpc :InfoRefsReceivePack, ::Gitaly::InfoRefsRequest, stream(::Gitaly::InfoRefsResponse)
25
25
  # Request and response body for POST /upload-pack
26
- rpc :PostUploadPack, stream(Gitaly::PostUploadPackRequest), stream(Gitaly::PostUploadPackResponse)
26
+ rpc :PostUploadPack, stream(::Gitaly::PostUploadPackRequest), stream(::Gitaly::PostUploadPackResponse)
27
27
  # Request and response body for POST /upload-pack using sidechannel protocol
28
- rpc :PostUploadPackWithSidechannel, Gitaly::PostUploadPackWithSidechannelRequest, Gitaly::PostUploadPackWithSidechannelResponse
28
+ rpc :PostUploadPackWithSidechannel, ::Gitaly::PostUploadPackWithSidechannelRequest, ::Gitaly::PostUploadPackWithSidechannelResponse
29
29
  # Request and response body for POST /receive-pack
30
- rpc :PostReceivePack, stream(Gitaly::PostReceivePackRequest), stream(Gitaly::PostReceivePackResponse)
30
+ rpc :PostReceivePack, stream(::Gitaly::PostReceivePackRequest), stream(::Gitaly::PostReceivePackResponse)
31
31
  end
32
32
 
33
33
  Stub = Service.rpc_stub_class
@@ -1,10 +1,10 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: ssh.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'lint_pb'
7
5
  require 'shared_pb'
6
+ require 'google/protobuf'
7
+
8
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
9
9
  add_file("ssh.proto", :syntax => :proto3) do
10
10
  add_message "gitaly.SSHUploadPackRequest" do
@@ -8,18 +8,18 @@ module Gitaly
8
8
  module SSHService
9
9
  class Service
10
10
 
11
- include GRPC::GenericService
11
+ include ::GRPC::GenericService
12
12
 
13
13
  self.marshal_class_method = :encode
14
14
  self.unmarshal_class_method = :decode
15
15
  self.service_name = 'gitaly.SSHService'
16
16
 
17
17
  # To forward 'git upload-pack' to Gitaly for SSH sessions
18
- rpc :SSHUploadPack, stream(Gitaly::SSHUploadPackRequest), stream(Gitaly::SSHUploadPackResponse)
18
+ rpc :SSHUploadPack, stream(::Gitaly::SSHUploadPackRequest), stream(::Gitaly::SSHUploadPackResponse)
19
19
  # To forward 'git receive-pack' to Gitaly for SSH sessions
20
- rpc :SSHReceivePack, stream(Gitaly::SSHReceivePackRequest), stream(Gitaly::SSHReceivePackResponse)
20
+ rpc :SSHReceivePack, stream(::Gitaly::SSHReceivePackRequest), stream(::Gitaly::SSHReceivePackResponse)
21
21
  # To forward 'git upload-archive' to Gitaly for SSH sessions
22
- rpc :SSHUploadArchive, stream(Gitaly::SSHUploadArchiveRequest), stream(Gitaly::SSHUploadArchiveResponse)
22
+ rpc :SSHUploadArchive, stream(::Gitaly::SSHUploadArchiveRequest), stream(::Gitaly::SSHUploadArchiveResponse)
23
23
  end
24
24
 
25
25
  Stub = Service.rpc_stub_class
@@ -1,10 +1,10 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: transaction.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'lint_pb'
7
5
  require 'shared_pb'
6
+ require 'google/protobuf'
7
+
8
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
9
9
  add_file("transaction.proto", :syntax => :proto3) do
10
10
  add_message "gitaly.VoteTransactionRequest" do
@@ -8,14 +8,14 @@ module Gitaly
8
8
  module RefTransaction
9
9
  class Service
10
10
 
11
- include GRPC::GenericService
11
+ include ::GRPC::GenericService
12
12
 
13
13
  self.marshal_class_method = :encode
14
14
  self.unmarshal_class_method = :decode
15
15
  self.service_name = 'gitaly.RefTransaction'
16
16
 
17
- rpc :VoteTransaction, Gitaly::VoteTransactionRequest, Gitaly::VoteTransactionResponse
18
- rpc :StopTransaction, Gitaly::StopTransactionRequest, Gitaly::StopTransactionResponse
17
+ rpc :VoteTransaction, ::Gitaly::VoteTransactionRequest, ::Gitaly::VoteTransactionResponse
18
+ rpc :StopTransaction, ::Gitaly::StopTransactionRequest, ::Gitaly::StopTransactionResponse
19
19
  end
20
20
 
21
21
  Stub = Service.rpc_stub_class
@@ -2,5 +2,5 @@
2
2
  # (https://gitlab.com/gitlab-org/release-tools/), and should not be
3
3
  # modified.
4
4
  module Gitaly
5
- VERSION = '14.4.0-rc43'
5
+ VERSION = '14.6.0-rc1'
6
6
  end
@@ -1,10 +1,10 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: wiki.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'lint_pb'
7
5
  require 'shared_pb'
6
+ require 'google/protobuf'
7
+
8
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
9
9
  add_file("wiki.proto", :syntax => :proto3) do
10
10
  add_message "gitaly.WikiCommitDetails" do
@@ -8,18 +8,18 @@ module Gitaly
8
8
  module WikiService
9
9
  class Service
10
10
 
11
- include GRPC::GenericService
11
+ include ::GRPC::GenericService
12
12
 
13
13
  self.marshal_class_method = :encode
14
14
  self.unmarshal_class_method = :decode
15
15
  self.service_name = 'gitaly.WikiService'
16
16
 
17
- rpc :WikiWritePage, stream(Gitaly::WikiWritePageRequest), Gitaly::WikiWritePageResponse
18
- rpc :WikiUpdatePage, stream(Gitaly::WikiUpdatePageRequest), Gitaly::WikiUpdatePageResponse
17
+ rpc :WikiWritePage, stream(::Gitaly::WikiWritePageRequest), ::Gitaly::WikiWritePageResponse
18
+ rpc :WikiUpdatePage, stream(::Gitaly::WikiUpdatePageRequest), ::Gitaly::WikiUpdatePageResponse
19
19
  # WikiFindPage returns a stream because the page's raw_data field may be arbitrarily large.
20
- rpc :WikiFindPage, Gitaly::WikiFindPageRequest, stream(Gitaly::WikiFindPageResponse)
21
- rpc :WikiGetAllPages, Gitaly::WikiGetAllPagesRequest, stream(Gitaly::WikiGetAllPagesResponse)
22
- rpc :WikiListPages, Gitaly::WikiListPagesRequest, stream(Gitaly::WikiListPagesResponse)
20
+ rpc :WikiFindPage, ::Gitaly::WikiFindPageRequest, stream(::Gitaly::WikiFindPageResponse)
21
+ rpc :WikiGetAllPages, ::Gitaly::WikiGetAllPagesRequest, stream(::Gitaly::WikiGetAllPagesResponse)
22
+ rpc :WikiListPages, ::Gitaly::WikiListPagesRequest, stream(::Gitaly::WikiListPagesResponse)
23
23
  end
24
24
 
25
25
  Stub = Service.rpc_stub_class
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitaly
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.4.0.pre.rc43
4
+ version: 14.6.0.pre.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Vosmaer
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-20 00:00:00.000000000 Z
11
+ date: 2021-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc
@@ -79,7 +79,7 @@ homepage: https://gitlab.com/gitlab-org/gitaly
79
79
  licenses:
80
80
  - MIT
81
81
  metadata: {}
82
- post_install_message:
82
+ post_install_message:
83
83
  rdoc_options: []
84
84
  require_paths:
85
85
  - ruby/proto
@@ -94,8 +94,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  - !ruby/object:Gem::Version
95
95
  version: 1.3.1
96
96
  requirements: []
97
- rubygems_version: 3.2.28
98
- signing_key:
97
+ rubygems_version: 3.1.6
98
+ signing_key:
99
99
  specification_version: 4
100
100
  summary: Auto-generated gRPC client for gitaly
101
101
  test_files: []