gitaly 1.87.0 → 12.9.0.pre.rc4

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of gitaly might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1171e67a7a04a8cf81ccc89de8620396684f5457f1fc59f93d9bff9213f051ff
4
- data.tar.gz: eecf1fc68164ca59e384ad5410ac09abba7bc23fc4608eb7f87e52b05221e7a8
3
+ metadata.gz: e03673d4dd88b3b2749c5c66b16a95963e2b58a1d9233f580a5ab5e268e908d1
4
+ data.tar.gz: 4e5ffae7656997d931f26b3b6a9abda4a450dd4ec187a6b5ffe9b8b0d05ac987
5
5
  SHA512:
6
- metadata.gz: f09400a2290df247283b43207049c83a4497aa722ee2a2409af6df957d8b3c3de648af61e3bfccdbb88fdf4f9631526b78e0f857ae2417833dc3a2188398042d
7
- data.tar.gz: 71eeebeaefcec1892a26f7a63c0b2fb225d21f0daedb05c325017f60de1285c582c1e3ef7fdbd844b7dacd1f5b5137d6a313c907c8e472f6a4cd4844d69b9c78
6
+ metadata.gz: 27ad953ce66801330fbb333d5863dae6237aad6292c6b88343cb14e100b65ed716322ebccf595041654aaa44f58f4b055b3ddd3a8b963eaddabf253d90387084
7
+ data.tar.gz: 62c5b18ecac6f427cdd9854c2c67d693a4ff7618cec6779567b3df68ec818dcf2d7e0c5edb487325c78180525ead13ea29aaa5dab07c18514fc361342d0d83b7
data/ruby/proto/gitaly.rb CHANGED
@@ -15,6 +15,8 @@ require 'gitaly/diff_services_pb'
15
15
 
16
16
  require 'gitaly/hook_services_pb'
17
17
 
18
+ require 'gitaly/internal_services_pb'
19
+
18
20
  require 'gitaly/namespace_services_pb'
19
21
 
20
22
  require 'gitaly/objectpool_services_pb'
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.GetBlobRequest" do
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.ApplyBfgObjectMapStreamRequest" do
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  require 'google/protobuf/timestamp_pb'
8
9
  Google::Protobuf::DescriptorPool.generated_pool.build do
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.ListConflictFilesRequest" do
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.CommitDiffRequest" do
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.PreReceiveHookRequest" do
@@ -0,0 +1,20 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: internal.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'lint_pb'
7
+ require 'shared_pb'
8
+ Google::Protobuf::DescriptorPool.generated_pool.build do
9
+ add_message "gitaly.WalkReposRequest" do
10
+ optional :storage_name, :string, 1
11
+ end
12
+ add_message "gitaly.WalkReposResponse" do
13
+ optional :relative_path, :string, 1
14
+ end
15
+ end
16
+
17
+ module Gitaly
18
+ WalkReposRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WalkReposRequest").msgclass
19
+ WalkReposResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WalkReposResponse").msgclass
20
+ end
@@ -0,0 +1,26 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: internal.proto for package 'gitaly'
3
+
4
+ require 'grpc'
5
+ require 'internal_pb'
6
+
7
+ module Gitaly
8
+ module InternalGitaly
9
+ # InternalGitaly is a gRPC service meant to be served by a Gitaly node, but
10
+ # only reachable by Praefect or other Gitalies
11
+ class Service
12
+
13
+ include GRPC::GenericService
14
+
15
+ self.marshal_class_method = :encode
16
+ self.unmarshal_class_method = :decode
17
+ self.service_name = 'gitaly.InternalGitaly'
18
+
19
+ # WalkRepos walks the storage and streams back all known git repos on the
20
+ # requested storage
21
+ rpc :WalkRepos, WalkReposRequest, stream(WalkReposResponse)
22
+ end
23
+
24
+ Stub = Service.rpc_stub_class
25
+ end
26
+ end
@@ -0,0 +1,27 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: lint.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_message "gitaly.OperationMsg" do
8
+ optional :op, :enum, 1, "gitaly.OperationMsg.Operation"
9
+ optional :scope_level, :enum, 2, "gitaly.OperationMsg.Scope"
10
+ end
11
+ add_enum "gitaly.OperationMsg.Operation" do
12
+ value :UNKNOWN, 0
13
+ value :MUTATOR, 1
14
+ value :ACCESSOR, 2
15
+ end
16
+ add_enum "gitaly.OperationMsg.Scope" do
17
+ value :REPOSITORY, 0
18
+ value :SERVER, 1
19
+ value :STORAGE, 2
20
+ end
21
+ end
22
+
23
+ module Gitaly
24
+ OperationMsg = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OperationMsg").msgclass
25
+ OperationMsg::Operation = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OperationMsg.Operation").enummodule
26
+ OperationMsg::Scope = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OperationMsg.Scope").enummodule
27
+ end
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.AddNamespaceRequest" do
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.CreateObjectPoolRequest" do
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.UserCreateBranchRequest" do
@@ -181,20 +182,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
181
182
  optional :index_error, :string, 2
182
183
  optional :pre_receive_error, :string, 3
183
184
  end
184
- add_message "gitaly.UserRebaseRequest" do
185
- optional :repository, :message, 1, "gitaly.Repository"
186
- optional :user, :message, 2, "gitaly.User"
187
- optional :rebase_id, :string, 3
188
- optional :branch, :bytes, 4
189
- optional :branch_sha, :string, 5
190
- optional :remote_repository, :message, 6, "gitaly.Repository"
191
- optional :remote_branch, :bytes, 7
192
- end
193
- add_message "gitaly.UserRebaseResponse" do
194
- optional :rebase_sha, :string, 1
195
- optional :pre_receive_error, :string, 2
196
- optional :git_error, :string, 3
197
- end
198
185
  add_message "gitaly.UserRebaseConfirmableRequest" do
199
186
  oneof :user_rebase_confirmable_request_payload do
200
187
  optional :header, :message, 1, "gitaly.UserRebaseConfirmableRequest.Header"
@@ -223,7 +210,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
223
210
  optional :repository, :message, 1, "gitaly.Repository"
224
211
  optional :user, :message, 2, "gitaly.User"
225
212
  optional :squash_id, :string, 3
226
- optional :branch, :bytes, 4
227
213
  optional :start_sha, :string, 5
228
214
  optional :end_sha, :string, 6
229
215
  optional :author, :message, 7, "gitaly.User"
@@ -292,8 +278,6 @@ module Gitaly
292
278
  UserCommitFilesRequestHeader = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesRequestHeader").msgclass
293
279
  UserCommitFilesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesRequest").msgclass
294
280
  UserCommitFilesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesResponse").msgclass
295
- UserRebaseRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseRequest").msgclass
296
- UserRebaseResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseResponse").msgclass
297
281
  UserRebaseConfirmableRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableRequest").msgclass
298
282
  UserRebaseConfirmableRequest::Header = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableRequest.Header").msgclass
299
283
  UserRebaseConfirmableResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableResponse").msgclass
@@ -24,7 +24,6 @@ module Gitaly
24
24
  rpc :UserFFBranch, UserFFBranchRequest, UserFFBranchResponse
25
25
  rpc :UserCherryPick, UserCherryPickRequest, UserCherryPickResponse
26
26
  rpc :UserCommitFiles, stream(UserCommitFilesRequest), UserCommitFilesResponse
27
- rpc :UserRebase, UserRebaseRequest, UserRebaseResponse
28
27
  rpc :UserRebaseConfirmable, stream(UserRebaseConfirmableRequest), stream(UserRebaseConfirmableResponse)
29
28
  rpc :UserRevert, UserRevertRequest, UserRevertResponse
30
29
  rpc :UserSquash, UserSquashRequest, UserSquashResponse
@@ -3,22 +3,24 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
- add_message "gitaly.ListRepositoriesRequest" do
9
+ add_message "gitaly.RepositoryReplicasRequest" do
10
+ optional :repository, :message, 1, "gitaly.Repository"
9
11
  end
10
- add_message "gitaly.ListRepositoriesResponse" do
11
- optional :primary, :message, 1, "gitaly.ListRepositoriesResponse.RepositoryDetails"
12
- repeated :replicas, :message, 2, "gitaly.ListRepositoriesResponse.RepositoryDetails"
12
+ add_message "gitaly.RepositoryReplicasResponse" do
13
+ optional :primary, :message, 1, "gitaly.RepositoryReplicasResponse.RepositoryDetails"
14
+ repeated :replicas, :message, 2, "gitaly.RepositoryReplicasResponse.RepositoryDetails"
13
15
  end
14
- add_message "gitaly.ListRepositoriesResponse.RepositoryDetails" do
16
+ add_message "gitaly.RepositoryReplicasResponse.RepositoryDetails" do
15
17
  optional :repository, :message, 1, "gitaly.Repository"
16
18
  optional :checksum, :string, 2
17
19
  end
18
20
  end
19
21
 
20
22
  module Gitaly
21
- ListRepositoriesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRepositoriesRequest").msgclass
22
- ListRepositoriesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRepositoriesResponse").msgclass
23
- ListRepositoriesResponse::RepositoryDetails = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRepositoriesResponse.RepositoryDetails").msgclass
23
+ RepositoryReplicasRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasRequest").msgclass
24
+ RepositoryReplicasResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse").msgclass
25
+ RepositoryReplicasResponse::RepositoryDetails = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse.RepositoryDetails").msgclass
24
26
  end
@@ -5,16 +5,16 @@ require 'grpc'
5
5
  require 'praefect_pb'
6
6
 
7
7
  module Gitaly
8
- module InfoService
8
+ module PraefectInfoService
9
9
  class Service
10
10
 
11
11
  include GRPC::GenericService
12
12
 
13
13
  self.marshal_class_method = :encode
14
14
  self.unmarshal_class_method = :decode
15
- self.service_name = 'gitaly.InfoService'
15
+ self.service_name = 'gitaly.PraefectInfoService'
16
16
 
17
- rpc :ListRepositories, ListRepositoriesRequest, stream(ListRepositoriesResponse)
17
+ rpc :RepositoryReplicas, RepositoryReplicasRequest, RepositoryReplicasResponse
18
18
  end
19
19
 
20
20
  Stub = Service.rpc_stub_class
@@ -3,8 +3,9 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'blob_pb'
6
+ require 'lint_pb'
7
7
  require 'shared_pb'
8
+ require 'blob_pb'
8
9
  require 'google/protobuf/timestamp_pb'
9
10
  Google::Protobuf::DescriptorPool.generated_pool.build do
10
11
  add_message "gitaly.ListNewBlobsRequest" do
@@ -26,8 +26,6 @@ module Gitaly
26
26
  rpc :FindTag, FindTagRequest, FindTagResponse
27
27
  rpc :FindAllRemoteBranches, FindAllRemoteBranchesRequest, stream(FindAllRemoteBranchesResponse)
28
28
  rpc :RefExists, RefExistsRequest, RefExistsResponse
29
- rpc :CreateBranch, CreateBranchRequest, CreateBranchResponse
30
- rpc :DeleteBranch, DeleteBranchRequest, DeleteBranchResponse
31
29
  rpc :FindBranch, FindBranchRequest, FindBranchResponse
32
30
  rpc :DeleteRefs, DeleteRefsRequest, DeleteRefsResponse
33
31
  rpc :ListBranchNamesContainingCommit, ListBranchNamesContainingCommitRequest, stream(ListBranchNamesContainingCommitResponse)
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.AddRemoteRequest" do
@@ -33,6 +34,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
33
34
  repeated :only_branches_matching, :bytes, 3
34
35
  optional :ssh_key, :string, 4
35
36
  optional :known_hosts, :string, 5
37
+ optional :keep_divergent_refs, :bool, 6
36
38
  end
37
39
  add_message "gitaly.UpdateRemoteMirrorResponse" do
38
40
  end
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.RepositoryExistsRequest" do
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.ServerInfoRequest" do
@@ -4,21 +4,8 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  require 'google/protobuf/timestamp_pb'
7
+ require 'lint_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
- add_message "gitaly.OperationMsg" do
9
- optional :op, :enum, 1, "gitaly.OperationMsg.Operation"
10
- optional :scope_level, :enum, 2, "gitaly.OperationMsg.Scope"
11
- end
12
- add_enum "gitaly.OperationMsg.Operation" do
13
- value :UNKNOWN, 0
14
- value :MUTATOR, 1
15
- value :ACCESSOR, 2
16
- end
17
- add_enum "gitaly.OperationMsg.Scope" do
18
- value :REPOSITORY, 0
19
- value :SERVER, 1
20
- value :STORAGE, 2
21
- end
22
9
  add_message "gitaly.Repository" do
23
10
  optional :storage_name, :string, 2
24
11
  optional :relative_path, :string, 3
@@ -83,9 +70,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
83
70
  end
84
71
 
85
72
  module Gitaly
86
- OperationMsg = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OperationMsg").msgclass
87
- OperationMsg::Operation = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OperationMsg.Operation").enummodule
88
- OperationMsg::Scope = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OperationMsg.Scope").enummodule
89
73
  Repository = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Repository").msgclass
90
74
  GitCommit = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GitCommit").msgclass
91
75
  CommitAuthor = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitAuthor").msgclass
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.InfoRefsRequest" do
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.SSHUploadPackRequest" do
@@ -1,4 +1,5 @@
1
- # This file was auto-generated by _support/release
1
+ # This file was auto-generated by release-tools
2
+ # https://gitlab.com/gitlab-org/release-tools/-/blob/master/lib/release_tools/release/gitaly_release.rb
2
3
  module Gitaly
3
- VERSION = '1.87.0'
4
+ VERSION = '12.9.0-rc4'
4
5
  end
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'lint_pb'
6
7
  require 'shared_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.WikiCommitDetails" do
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: 1.87.0
4
+ version: 12.9.0.pre.rc4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Vosmaer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-17 00:00:00.000000000 Z
11
+ date: 2020-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc
@@ -45,6 +45,9 @@ files:
45
45
  - ruby/proto/gitaly/diff_services_pb.rb
46
46
  - ruby/proto/gitaly/hook_pb.rb
47
47
  - ruby/proto/gitaly/hook_services_pb.rb
48
+ - ruby/proto/gitaly/internal_pb.rb
49
+ - ruby/proto/gitaly/internal_services_pb.rb
50
+ - ruby/proto/gitaly/lint_pb.rb
48
51
  - ruby/proto/gitaly/namespace_pb.rb
49
52
  - ruby/proto/gitaly/namespace_services_pb.rb
50
53
  - ruby/proto/gitaly/objectpool_pb.rb
@@ -84,11 +87,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
84
87
  version: '0'
85
88
  required_rubygems_version: !ruby/object:Gem::Requirement
86
89
  requirements:
87
- - - ">="
90
+ - - ">"
88
91
  - !ruby/object:Gem::Version
89
- version: '0'
92
+ version: 1.3.1
90
93
  requirements: []
91
- rubygems_version: 3.0.6
94
+ rubygems_version: 3.0.3
92
95
  signing_key:
93
96
  specification_version: 4
94
97
  summary: Auto-generated gRPC client for gitaly