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 +4 -4
- data/ruby/proto/gitaly.rb +2 -0
- data/ruby/proto/gitaly/blob_pb.rb +1 -0
- data/ruby/proto/gitaly/cleanup_pb.rb +1 -0
- data/ruby/proto/gitaly/commit_pb.rb +1 -0
- data/ruby/proto/gitaly/conflicts_pb.rb +1 -0
- data/ruby/proto/gitaly/diff_pb.rb +1 -0
- data/ruby/proto/gitaly/hook_pb.rb +1 -0
- data/ruby/proto/gitaly/internal_pb.rb +20 -0
- data/ruby/proto/gitaly/internal_services_pb.rb +26 -0
- data/ruby/proto/gitaly/lint_pb.rb +27 -0
- data/ruby/proto/gitaly/namespace_pb.rb +1 -0
- data/ruby/proto/gitaly/objectpool_pb.rb +1 -0
- data/ruby/proto/gitaly/operations_pb.rb +1 -17
- data/ruby/proto/gitaly/operations_services_pb.rb +0 -1
- data/ruby/proto/gitaly/praefect_pb.rb +10 -8
- data/ruby/proto/gitaly/praefect_services_pb.rb +3 -3
- data/ruby/proto/gitaly/ref_pb.rb +2 -1
- data/ruby/proto/gitaly/ref_services_pb.rb +0 -2
- data/ruby/proto/gitaly/remote_pb.rb +2 -0
- data/ruby/proto/gitaly/repository-service_pb.rb +1 -0
- data/ruby/proto/gitaly/server_pb.rb +1 -0
- data/ruby/proto/gitaly/shared_pb.rb +1 -17
- data/ruby/proto/gitaly/smarthttp_pb.rb +1 -0
- data/ruby/proto/gitaly/ssh_pb.rb +1 -0
- data/ruby/proto/gitaly/version.rb +3 -2
- data/ruby/proto/gitaly/wiki_pb.rb +1 -0
- metadata +8 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e03673d4dd88b3b2749c5c66b16a95963e2b58a1d9233f580a5ab5e268e908d1
|
4
|
+
data.tar.gz: 4e5ffae7656997d931f26b3b6a9abda4a450dd4ec187a6b5ffe9b8b0d05ac987
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27ad953ce66801330fbb333d5863dae6237aad6292c6b88343cb14e100b65ed716322ebccf595041654aaa44f58f4b055b3ddd3a8b963eaddabf253d90387084
|
7
|
+
data.tar.gz: 62c5b18ecac6f427cdd9854c2c67d693a4ff7618cec6779567b3df68ec818dcf2d7e0c5edb487325c78180525ead13ea29aaa5dab07c18514fc361342d0d83b7
|
data/ruby/proto/gitaly.rb
CHANGED
@@ -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.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.
|
9
|
+
add_message "gitaly.RepositoryReplicasRequest" do
|
10
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
9
11
|
end
|
10
|
-
add_message "gitaly.
|
11
|
-
optional :primary, :message, 1, "gitaly.
|
12
|
-
repeated :replicas, :message, 2, "gitaly.
|
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.
|
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
|
-
|
22
|
-
|
23
|
-
|
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
|
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.
|
15
|
+
self.service_name = 'gitaly.PraefectInfoService'
|
16
16
|
|
17
|
-
rpc :
|
17
|
+
rpc :RepositoryReplicas, RepositoryReplicasRequest, RepositoryReplicasResponse
|
18
18
|
end
|
19
19
|
|
20
20
|
Stub = Service.rpc_stub_class
|
data/ruby/proto/gitaly/ref_pb.rb
CHANGED
@@ -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
|
@@ -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
|
data/ruby/proto/gitaly/ssh_pb.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
# This file was auto-generated by
|
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 = '
|
4
|
+
VERSION = '12.9.0-rc4'
|
4
5
|
end
|
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:
|
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-
|
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:
|
92
|
+
version: 1.3.1
|
90
93
|
requirements: []
|
91
|
-
rubygems_version: 3.0.
|
94
|
+
rubygems_version: 3.0.3
|
92
95
|
signing_key:
|
93
96
|
specification_version: 4
|
94
97
|
summary: Auto-generated gRPC client for gitaly
|