gitaly 14.2.0.pre.rc2 → 14.3.0.pre.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/blob_pb.rb +2 -0
- data/ruby/proto/gitaly/hook_pb.rb +8 -0
- data/ruby/proto/gitaly/hook_services_pb.rb +3 -0
- data/ruby/proto/gitaly/ref_pb.rb +26 -10
- data/ruby/proto/gitaly/ref_services_pb.rb +5 -2
- data/ruby/proto/gitaly/remote_pb.rb +0 -35
- data/ruby/proto/gitaly/remote_services_pb.rb +0 -2
- data/ruby/proto/gitaly/repository-service_pb.rb +9 -10
- data/ruby/proto/gitaly/repository-service_services_pb.rb +12 -1
- data/ruby/proto/gitaly/shared_pb.rb +5 -0
- data/ruby/proto/gitaly/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34a4de9c5004bab6828ee75326807ecb5d3b08e1b6f77640afeb1a92128f637d
|
4
|
+
data.tar.gz: 3a9bbb3fa87a2a09e3fd717281f046848802b233d905a7caecc6f2dd14a4f858
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 407613bf5ee4e0516de250e527a9f90dab538ed731f417d6e6c3492eb9a6a19c734af3fa434200f60c0e8827e325a6cdfbd32a3f917e20ca0238332639d82eae
|
7
|
+
data.tar.gz: 3cc9f6bb65c395c24552b4bc6485ac7a8945bea73894916dfd056d81f63f8de70f32ef598de3f9db1be943b5cc32a8f13b8edf50f9d9390e9c35a7c85241cca6
|
@@ -41,6 +41,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
41
41
|
repeated :revisions, :string, 2
|
42
42
|
optional :limit, :uint32, 3
|
43
43
|
optional :bytes_limit, :int64, 4
|
44
|
+
optional :with_paths, :bool, 5
|
44
45
|
end
|
45
46
|
add_message "gitaly.ListBlobsResponse" do
|
46
47
|
repeated :blobs, :message, 1, "gitaly.ListBlobsResponse.Blob"
|
@@ -49,6 +50,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
49
50
|
optional :oid, :string, 1
|
50
51
|
optional :size, :int64, 2
|
51
52
|
optional :data, :bytes, 3
|
53
|
+
optional :path, :bytes, 4
|
52
54
|
end
|
53
55
|
add_message "gitaly.ListAllBlobsRequest" do
|
54
56
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -66,6 +66,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
66
66
|
optional :stdout, :bytes, 1
|
67
67
|
optional :stderr, :bytes, 2
|
68
68
|
end
|
69
|
+
add_message "gitaly.PackObjectsHookWithSidechannelRequest" do
|
70
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
71
|
+
repeated :args, :string, 2
|
72
|
+
end
|
73
|
+
add_message "gitaly.PackObjectsHookWithSidechannelResponse" do
|
74
|
+
end
|
69
75
|
end
|
70
76
|
end
|
71
77
|
|
@@ -81,4 +87,6 @@ module Gitaly
|
|
81
87
|
ReferenceTransactionHookResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookResponse").msgclass
|
82
88
|
PackObjectsHookRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackObjectsHookRequest").msgclass
|
83
89
|
PackObjectsHookResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackObjectsHookResponse").msgclass
|
90
|
+
PackObjectsHookWithSidechannelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackObjectsHookWithSidechannelRequest").msgclass
|
91
|
+
PackObjectsHookWithSidechannelResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackObjectsHookWithSidechannelResponse").msgclass
|
84
92
|
end
|
@@ -22,6 +22,9 @@ module Gitaly
|
|
22
22
|
# uploadpack.packObjectsHook mechanism. It generates a stream of packed
|
23
23
|
# Git objects.
|
24
24
|
rpc :PackObjectsHook, stream(::Gitaly::PackObjectsHookRequest), stream(::Gitaly::PackObjectsHookResponse)
|
25
|
+
# PackObjectsHookWithSidechannel is an optimized version of PackObjectsHook that uses
|
26
|
+
# a unix socket side channel.
|
27
|
+
rpc :PackObjectsHookWithSidechannel, ::Gitaly::PackObjectsHookWithSidechannelRequest, ::Gitaly::PackObjectsHookWithSidechannelResponse
|
25
28
|
end
|
26
29
|
|
27
30
|
Stub = Service.rpc_stub_class
|
data/ruby/proto/gitaly/ref_pb.rb
CHANGED
@@ -35,14 +35,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
35
35
|
add_message "gitaly.FindAllTagNamesResponse" do
|
36
36
|
repeated :names, :bytes, 1
|
37
37
|
end
|
38
|
-
add_message "gitaly.FindRefNameRequest" do
|
39
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
40
|
-
optional :commit_id, :string, 2
|
41
|
-
optional :prefix, :bytes, 3
|
42
|
-
end
|
43
|
-
add_message "gitaly.FindRefNameResponse" do
|
44
|
-
optional :name, :bytes, 1
|
45
|
-
end
|
46
38
|
add_message "gitaly.FindLocalBranchesRequest" do
|
47
39
|
optional :repository, :message, 1, "gitaly.Repository"
|
48
40
|
optional :sort_by, :enum, 2, "gitaly.FindLocalBranchesRequest.SortBy"
|
@@ -91,6 +83,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
91
83
|
end
|
92
84
|
add_message "gitaly.FindAllTagsRequest" do
|
93
85
|
optional :repository, :message, 1, "gitaly.Repository"
|
86
|
+
optional :sort_by, :message, 2, "gitaly.FindAllTagsRequest.SortBy"
|
87
|
+
end
|
88
|
+
add_message "gitaly.FindAllTagsRequest.SortBy" do
|
89
|
+
optional :key, :enum, 1, "gitaly.FindAllTagsRequest.SortBy.Key"
|
90
|
+
optional :direction, :enum, 2, "gitaly.SortDirection"
|
91
|
+
end
|
92
|
+
add_enum "gitaly.FindAllTagsRequest.SortBy.Key" do
|
93
|
+
value :REFNAME, 0
|
94
|
+
value :CREATORDATE, 1
|
94
95
|
end
|
95
96
|
add_message "gitaly.FindAllTagsResponse" do
|
96
97
|
repeated :tags, :message, 1, "gitaly.Tag"
|
@@ -194,6 +195,18 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
194
195
|
end
|
195
196
|
add_message "gitaly.PackRefsResponse" do
|
196
197
|
end
|
198
|
+
add_message "gitaly.ListRefsRequest" do
|
199
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
200
|
+
repeated :patterns, :bytes, 2
|
201
|
+
optional :head, :bool, 3
|
202
|
+
end
|
203
|
+
add_message "gitaly.ListRefsResponse" do
|
204
|
+
repeated :references, :message, 1, "gitaly.ListRefsResponse.Reference"
|
205
|
+
end
|
206
|
+
add_message "gitaly.ListRefsResponse.Reference" do
|
207
|
+
optional :name, :bytes, 1
|
208
|
+
optional :target, :string, 2
|
209
|
+
end
|
197
210
|
end
|
198
211
|
end
|
199
212
|
|
@@ -206,8 +219,6 @@ module Gitaly
|
|
206
219
|
FindAllBranchNamesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchNamesResponse").msgclass
|
207
220
|
FindAllTagNamesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagNamesRequest").msgclass
|
208
221
|
FindAllTagNamesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagNamesResponse").msgclass
|
209
|
-
FindRefNameRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRefNameRequest").msgclass
|
210
|
-
FindRefNameResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRefNameResponse").msgclass
|
211
222
|
FindLocalBranchesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesRequest").msgclass
|
212
223
|
FindLocalBranchesRequest::SortBy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesRequest.SortBy").enummodule
|
213
224
|
FindLocalBranchesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesResponse").msgclass
|
@@ -219,6 +230,8 @@ module Gitaly
|
|
219
230
|
FindTagRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagRequest").msgclass
|
220
231
|
FindTagResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagResponse").msgclass
|
221
232
|
FindAllTagsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest").msgclass
|
233
|
+
FindAllTagsRequest::SortBy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest.SortBy").msgclass
|
234
|
+
FindAllTagsRequest::SortBy::Key = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest.SortBy.Key").enummodule
|
222
235
|
FindAllTagsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsResponse").msgclass
|
223
236
|
RefExistsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsRequest").msgclass
|
224
237
|
RefExistsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsResponse").msgclass
|
@@ -246,4 +259,7 @@ module Gitaly
|
|
246
259
|
FindAllRemoteBranchesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllRemoteBranchesResponse").msgclass
|
247
260
|
PackRefsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackRefsRequest").msgclass
|
248
261
|
PackRefsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackRefsResponse").msgclass
|
262
|
+
ListRefsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRefsRequest").msgclass
|
263
|
+
ListRefsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRefsResponse").msgclass
|
264
|
+
ListRefsResponse::Reference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRefsResponse.Reference").msgclass
|
249
265
|
end
|
@@ -17,11 +17,10 @@ module Gitaly
|
|
17
17
|
rpc :FindDefaultBranchName, ::Gitaly::FindDefaultBranchNameRequest, ::Gitaly::FindDefaultBranchNameResponse
|
18
18
|
rpc :FindAllBranchNames, ::Gitaly::FindAllBranchNamesRequest, stream(::Gitaly::FindAllBranchNamesResponse)
|
19
19
|
rpc :FindAllTagNames, ::Gitaly::FindAllTagNamesRequest, stream(::Gitaly::FindAllTagNamesResponse)
|
20
|
-
# Find a Ref matching the given constraints. Response may be empty.
|
21
|
-
rpc :FindRefName, ::Gitaly::FindRefNameRequest, ::Gitaly::FindRefNameResponse
|
22
20
|
# Return a stream so we can divide the response in chunks of branches
|
23
21
|
rpc :FindLocalBranches, ::Gitaly::FindLocalBranchesRequest, stream(::Gitaly::FindLocalBranchesResponse)
|
24
22
|
rpc :FindAllBranches, ::Gitaly::FindAllBranchesRequest, stream(::Gitaly::FindAllBranchesResponse)
|
23
|
+
# Returns a stream of tags repository has.
|
25
24
|
rpc :FindAllTags, ::Gitaly::FindAllTagsRequest, stream(::Gitaly::FindAllTagsResponse)
|
26
25
|
rpc :FindTag, ::Gitaly::FindTagRequest, ::Gitaly::FindTagResponse
|
27
26
|
rpc :FindAllRemoteBranches, ::Gitaly::FindAllRemoteBranchesRequest, stream(::Gitaly::FindAllRemoteBranchesResponse)
|
@@ -42,6 +41,10 @@ module Gitaly
|
|
42
41
|
rpc :ListNewCommits, ::Gitaly::ListNewCommitsRequest, stream(::Gitaly::ListNewCommitsResponse)
|
43
42
|
rpc :ListNewBlobs, ::Gitaly::ListNewBlobsRequest, stream(::Gitaly::ListNewBlobsResponse)
|
44
43
|
rpc :PackRefs, ::Gitaly::PackRefsRequest, ::Gitaly::PackRefsResponse
|
44
|
+
# ListRefs returns a stream of all references in the repository. By default, pseudo-revisions like HEAD
|
45
|
+
# will not be returned by this RPC. Any symbolic references will be resolved to the object ID it is
|
46
|
+
# pointing at.
|
47
|
+
rpc :ListRefs, ::Gitaly::ListRefsRequest, stream(::Gitaly::ListRefsResponse)
|
45
48
|
end
|
46
49
|
|
47
50
|
Stub = Service.rpc_stub_class
|
@@ -7,21 +7,6 @@ require 'lint_pb'
|
|
7
7
|
require 'shared_pb'
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
9
|
add_file("remote.proto", :syntax => :proto3) do
|
10
|
-
add_message "gitaly.AddRemoteRequest" do
|
11
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
12
|
-
optional :name, :string, 2
|
13
|
-
optional :url, :string, 3
|
14
|
-
repeated :mirror_refmaps, :string, 5
|
15
|
-
end
|
16
|
-
add_message "gitaly.AddRemoteResponse" do
|
17
|
-
end
|
18
|
-
add_message "gitaly.RemoveRemoteRequest" do
|
19
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
20
|
-
optional :name, :string, 2
|
21
|
-
end
|
22
|
-
add_message "gitaly.RemoveRemoteResponse" do
|
23
|
-
optional :result, :bool, 1
|
24
|
-
end
|
25
10
|
add_message "gitaly.FetchInternalRemoteRequest" do
|
26
11
|
optional :repository, :message, 1, "gitaly.Repository"
|
27
12
|
optional :remote_repository, :message, 2, "gitaly.Repository"
|
@@ -31,7 +16,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
31
16
|
end
|
32
17
|
add_message "gitaly.UpdateRemoteMirrorRequest" do
|
33
18
|
optional :repository, :message, 1, "gitaly.Repository"
|
34
|
-
optional :ref_name, :string, 2
|
35
19
|
optional :remote, :message, 7, "gitaly.UpdateRemoteMirrorRequest.Remote"
|
36
20
|
repeated :only_branches_matching, :bytes, 3
|
37
21
|
optional :ssh_key, :string, 4
|
@@ -54,32 +38,16 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
54
38
|
end
|
55
39
|
add_message "gitaly.FindRemoteRootRefRequest" do
|
56
40
|
optional :repository, :message, 1, "gitaly.Repository"
|
57
|
-
optional :remote, :string, 2
|
58
41
|
optional :remote_url, :string, 3
|
59
42
|
optional :http_authorization_header, :string, 4
|
60
43
|
end
|
61
44
|
add_message "gitaly.FindRemoteRootRefResponse" do
|
62
45
|
optional :ref, :string, 1
|
63
46
|
end
|
64
|
-
add_message "gitaly.ListRemotesRequest" do
|
65
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
66
|
-
end
|
67
|
-
add_message "gitaly.ListRemotesResponse" do
|
68
|
-
repeated :remotes, :message, 1, "gitaly.ListRemotesResponse.Remote"
|
69
|
-
end
|
70
|
-
add_message "gitaly.ListRemotesResponse.Remote" do
|
71
|
-
optional :name, :string, 1
|
72
|
-
optional :fetch_url, :string, 2
|
73
|
-
optional :push_url, :string, 3
|
74
|
-
end
|
75
47
|
end
|
76
48
|
end
|
77
49
|
|
78
50
|
module Gitaly
|
79
|
-
AddRemoteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AddRemoteRequest").msgclass
|
80
|
-
AddRemoteResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AddRemoteResponse").msgclass
|
81
|
-
RemoveRemoteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRemoteRequest").msgclass
|
82
|
-
RemoveRemoteResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRemoteResponse").msgclass
|
83
51
|
FetchInternalRemoteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteRequest").msgclass
|
84
52
|
FetchInternalRemoteResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteResponse").msgclass
|
85
53
|
UpdateRemoteMirrorRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorRequest").msgclass
|
@@ -89,7 +57,4 @@ module Gitaly
|
|
89
57
|
FindRemoteRepositoryResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRepositoryResponse").msgclass
|
90
58
|
FindRemoteRootRefRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRootRefRequest").msgclass
|
91
59
|
FindRemoteRootRefResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRootRefResponse").msgclass
|
92
|
-
ListRemotesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRemotesRequest").msgclass
|
93
|
-
ListRemotesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRemotesResponse").msgclass
|
94
|
-
ListRemotesResponse::Remote = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRemotesResponse.Remote").msgclass
|
95
60
|
end
|
@@ -14,9 +14,7 @@ module Gitaly
|
|
14
14
|
self.unmarshal_class_method = :decode
|
15
15
|
self.service_name = 'gitaly.RemoteService'
|
16
16
|
|
17
|
-
rpc :AddRemote, ::Gitaly::AddRemoteRequest, ::Gitaly::AddRemoteResponse
|
18
17
|
rpc :FetchInternalRemote, ::Gitaly::FetchInternalRemoteRequest, ::Gitaly::FetchInternalRemoteResponse
|
19
|
-
rpc :RemoveRemote, ::Gitaly::RemoveRemoteRequest, ::Gitaly::RemoveRemoteResponse
|
20
18
|
# UpdateRemoteMirror compares the references in the target repository and its remote mirror
|
21
19
|
# repository. Any differences in the references are then addressed by pushing the differing
|
22
20
|
# references to the mirror. Created and modified references are updated, removed references are
|
@@ -64,7 +64,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
64
64
|
end
|
65
65
|
add_message "gitaly.FetchRemoteRequest" do
|
66
66
|
optional :repository, :message, 1, "gitaly.Repository"
|
67
|
-
optional :remote, :string, 2
|
68
67
|
optional :force, :bool, 3
|
69
68
|
optional :no_tags, :bool, 4
|
70
69
|
optional :timeout, :int32, 5
|
@@ -144,13 +143,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
144
143
|
end
|
145
144
|
add_message "gitaly.CreateForkResponse" do
|
146
145
|
end
|
147
|
-
add_message "gitaly.IsRebaseInProgressRequest" do
|
148
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
149
|
-
optional :rebase_id, :string, 2
|
150
|
-
end
|
151
|
-
add_message "gitaly.IsRebaseInProgressResponse" do
|
152
|
-
optional :in_progress, :bool, 1
|
153
|
-
end
|
154
146
|
add_message "gitaly.IsSquashInProgressRequest" do
|
155
147
|
optional :repository, :message, 1, "gitaly.Repository"
|
156
148
|
optional :squash_id, :string, 2
|
@@ -170,6 +162,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
170
162
|
add_message "gitaly.CreateBundleResponse" do
|
171
163
|
optional :data, :bytes, 1
|
172
164
|
end
|
165
|
+
add_message "gitaly.CreateBundleFromRefListRequest" do
|
166
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
167
|
+
repeated :patterns, :bytes, 2
|
168
|
+
end
|
169
|
+
add_message "gitaly.CreateBundleFromRefListResponse" do
|
170
|
+
optional :data, :bytes, 1
|
171
|
+
end
|
173
172
|
add_message "gitaly.GetConfigRequest" do
|
174
173
|
optional :repository, :message, 1, "gitaly.Repository"
|
175
174
|
end
|
@@ -389,14 +388,14 @@ module Gitaly
|
|
389
388
|
FindMergeBaseResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindMergeBaseResponse").msgclass
|
390
389
|
CreateForkRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateForkRequest").msgclass
|
391
390
|
CreateForkResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateForkResponse").msgclass
|
392
|
-
IsRebaseInProgressRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IsRebaseInProgressRequest").msgclass
|
393
|
-
IsRebaseInProgressResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IsRebaseInProgressResponse").msgclass
|
394
391
|
IsSquashInProgressRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IsSquashInProgressRequest").msgclass
|
395
392
|
IsSquashInProgressResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IsSquashInProgressResponse").msgclass
|
396
393
|
CreateRepositoryFromURLRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromURLRequest").msgclass
|
397
394
|
CreateRepositoryFromURLResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromURLResponse").msgclass
|
398
395
|
CreateBundleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleRequest").msgclass
|
399
396
|
CreateBundleResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleResponse").msgclass
|
397
|
+
CreateBundleFromRefListRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleFromRefListRequest").msgclass
|
398
|
+
CreateBundleFromRefListResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleFromRefListResponse").msgclass
|
400
399
|
GetConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetConfigRequest").msgclass
|
401
400
|
GetConfigResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetConfigResponse").msgclass
|
402
401
|
SetConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest").msgclass
|
@@ -35,15 +35,26 @@ module Gitaly
|
|
35
35
|
rpc :WriteRef, ::Gitaly::WriteRefRequest, ::Gitaly::WriteRefResponse
|
36
36
|
rpc :FindMergeBase, ::Gitaly::FindMergeBaseRequest, ::Gitaly::FindMergeBaseResponse
|
37
37
|
rpc :CreateFork, ::Gitaly::CreateForkRequest, ::Gitaly::CreateForkResponse
|
38
|
-
|
38
|
+
# IsSquashInProgress is deprecated and will always return false.
|
39
39
|
rpc :IsSquashInProgress, ::Gitaly::IsSquashInProgressRequest, ::Gitaly::IsSquashInProgressResponse
|
40
40
|
rpc :CreateRepositoryFromURL, ::Gitaly::CreateRepositoryFromURLRequest, ::Gitaly::CreateRepositoryFromURLResponse
|
41
|
+
# CreateBundle creates a bundle from all refs
|
41
42
|
rpc :CreateBundle, ::Gitaly::CreateBundleRequest, stream(::Gitaly::CreateBundleResponse)
|
43
|
+
# CreateBundleFromRefList creates a bundle from a stream of ref patterns
|
44
|
+
rpc :CreateBundleFromRefList, stream(::Gitaly::CreateBundleFromRefListRequest), stream(::Gitaly::CreateBundleFromRefListResponse)
|
42
45
|
rpc :CreateRepositoryFromBundle, stream(::Gitaly::CreateRepositoryFromBundleRequest), ::Gitaly::CreateRepositoryFromBundleResponse
|
43
46
|
# GetConfig reads the target repository's gitconfig and streams its contents
|
44
47
|
# back. Returns a NotFound error in case no gitconfig was found.
|
45
48
|
rpc :GetConfig, ::Gitaly::GetConfigRequest, stream(::Gitaly::GetConfigResponse)
|
49
|
+
# SetConfig writes a set of config entries into the target repository's
|
50
|
+
# gitconfig. This RPC is deprecated with no general replacement: modifying
|
51
|
+
# the on-disk gitconfig is not supported anymore. The only usecase that is
|
52
|
+
# still supported is writing "gitlab.fullpath" via the new `SetFullPath()`
|
53
|
+
# RPC.
|
46
54
|
rpc :SetConfig, ::Gitaly::SetConfigRequest, ::Gitaly::SetConfigResponse
|
55
|
+
# DeleteConfig deletes a set of config entries from the target repository's
|
56
|
+
# gitconfig. This RPC is deprecated with no replacement: modifying the
|
57
|
+
# on-disk gitconfig is not supported anymore.
|
47
58
|
rpc :DeleteConfig, ::Gitaly::DeleteConfigRequest, ::Gitaly::DeleteConfigResponse
|
48
59
|
rpc :FindLicense, ::Gitaly::FindLicenseRequest, ::Gitaly::FindLicenseResponse
|
49
60
|
rpc :GetInfoAttributes, ::Gitaly::GetInfoAttributesRequest, stream(::Gitaly::GetInfoAttributesResponse)
|
@@ -85,6 +85,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
85
85
|
value :PGP, 1
|
86
86
|
value :X509, 2
|
87
87
|
end
|
88
|
+
add_enum "gitaly.SortDirection" do
|
89
|
+
value :ASCENDING, 0
|
90
|
+
value :DESCENDING, 1
|
91
|
+
end
|
88
92
|
end
|
89
93
|
end
|
90
94
|
|
@@ -103,4 +107,5 @@ module Gitaly
|
|
103
107
|
GlobalOptions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GlobalOptions").msgclass
|
104
108
|
ObjectType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectType").enummodule
|
105
109
|
SignatureType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SignatureType").enummodule
|
110
|
+
SortDirection = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SortDirection").enummodule
|
106
111
|
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: 14.
|
4
|
+
version: 14.3.0.pre.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|