gitaly 13.8.0.pre.rc2 → 14.0.0.pre.rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/blob_pb.rb +10 -11
- data/ruby/proto/gitaly/blob_services_pb.rb +13 -2
- data/ruby/proto/gitaly/commit_pb.rb +3 -0
- data/ruby/proto/gitaly/conflicts_pb.rb +2 -0
- data/ruby/proto/gitaly/conflicts_services_pb.rb +3 -0
- data/ruby/proto/gitaly/diff_pb.rb +6 -0
- data/ruby/proto/gitaly/hook_pb.rb +11 -0
- data/ruby/proto/gitaly/hook_services_pb.rb +4 -0
- data/ruby/proto/gitaly/lint_pb.rb +0 -1
- data/ruby/proto/gitaly/operations_pb.rb +11 -0
- data/ruby/proto/gitaly/operations_services_pb.rb +38 -2
- data/ruby/proto/gitaly/praefect_pb.rb +1 -0
- data/ruby/proto/gitaly/ref_services_pb.rb +2 -0
- data/ruby/proto/gitaly/remote_pb.rb +8 -0
- data/ruby/proto/gitaly/remote_services_pb.rb +10 -1
- data/ruby/proto/gitaly/repository-service_pb.rb +13 -1
- data/ruby/proto/gitaly/repository-service_services_pb.rb +8 -0
- data/ruby/proto/gitaly/version.rb +1 -1
- data/ruby/proto/gitaly/wiki_pb.rb +0 -33
- data/ruby/proto/gitaly/wiki_services_pb.rb +0 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5e966139d8e93b8f41fb3ce97964e1b2e386cecfbf914cb32db2b68d2ac7a22
|
4
|
+
data.tar.gz: c1b5d81ead08bc3d1357c6b72b73c0c2d0d8454e6aba93b6e594220e94233a18
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eab6f4e9ae69c14bb619b6ec2aa94540b4ddb93e6eb38226828771e66d565f5619298e27dcf87aea05e82de73b7b0da9ccb8dae33b5dbfe0399d2724b46f7cb3
|
7
|
+
data.tar.gz: 6810dc1d4e0aa226b3da3bbbf6241c24673b58e5097edef1fa9e1aaf5c2b1caf6f7369c5fc90dd1136e9a62895b591536383098c62b2305cbeafc6e1d3c5477d
|
@@ -53,20 +53,19 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
53
53
|
add_message "gitaly.GetLFSPointersResponse" do
|
54
54
|
repeated :lfs_pointers, :message, 1, "gitaly.LFSPointer"
|
55
55
|
end
|
56
|
-
add_message "gitaly.
|
56
|
+
add_message "gitaly.ListLFSPointersRequest" do
|
57
57
|
optional :repository, :message, 1, "gitaly.Repository"
|
58
|
-
|
58
|
+
repeated :revisions, :string, 2
|
59
59
|
optional :limit, :int32, 3
|
60
|
-
optional :not_in_all, :bool, 4
|
61
|
-
repeated :not_in_refs, :bytes, 5
|
62
60
|
end
|
63
|
-
add_message "gitaly.
|
61
|
+
add_message "gitaly.ListLFSPointersResponse" do
|
64
62
|
repeated :lfs_pointers, :message, 1, "gitaly.LFSPointer"
|
65
63
|
end
|
66
|
-
add_message "gitaly.
|
64
|
+
add_message "gitaly.ListAllLFSPointersRequest" do
|
67
65
|
optional :repository, :message, 1, "gitaly.Repository"
|
66
|
+
optional :limit, :int32, 3
|
68
67
|
end
|
69
|
-
add_message "gitaly.
|
68
|
+
add_message "gitaly.ListAllLFSPointersResponse" do
|
70
69
|
repeated :lfs_pointers, :message, 1, "gitaly.LFSPointer"
|
71
70
|
end
|
72
71
|
end
|
@@ -82,8 +81,8 @@ module Gitaly
|
|
82
81
|
NewBlobObject = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.NewBlobObject").msgclass
|
83
82
|
GetLFSPointersRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetLFSPointersRequest").msgclass
|
84
83
|
GetLFSPointersResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetLFSPointersResponse").msgclass
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
84
|
+
ListLFSPointersRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListLFSPointersRequest").msgclass
|
85
|
+
ListLFSPointersResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListLFSPointersResponse").msgclass
|
86
|
+
ListAllLFSPointersRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListAllLFSPointersRequest").msgclass
|
87
|
+
ListAllLFSPointersResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListAllLFSPointersResponse").msgclass
|
89
88
|
end
|
@@ -19,9 +19,20 @@ module Gitaly
|
|
19
19
|
# response
|
20
20
|
rpc :GetBlob, Gitaly::GetBlobRequest, stream(Gitaly::GetBlobResponse)
|
21
21
|
rpc :GetBlobs, Gitaly::GetBlobsRequest, stream(Gitaly::GetBlobsResponse)
|
22
|
+
# GetLFSPointers retrieves LFS pointers from a given set of object IDs.
|
23
|
+
# This RPC filters all requested objects and only returns those which refer
|
24
|
+
# to a valid LFS pointer.
|
22
25
|
rpc :GetLFSPointers, Gitaly::GetLFSPointersRequest, stream(Gitaly::GetLFSPointersResponse)
|
23
|
-
|
24
|
-
|
26
|
+
# ListLFSPointers retrieves LFS pointers reachable from a given set of
|
27
|
+
# revisions by doing a graph walk. This includes both normal revisions like
|
28
|
+
# an object ID or branch, but also the pseudo-revisions "--all" and "--not"
|
29
|
+
# as documented in git-rev-parse(1). Revisions which don't directly or
|
30
|
+
# transitively reference any LFS pointers are ignored. It is not valid to
|
31
|
+
# pass revisions which do not resolve to an existing object.
|
32
|
+
rpc :ListLFSPointers, Gitaly::ListLFSPointersRequest, stream(Gitaly::ListLFSPointersResponse)
|
33
|
+
# ListAllLFSPointers retrieves all LFS pointers in the repository, including
|
34
|
+
# those not reachable by any reference.
|
35
|
+
rpc :ListAllLFSPointers, Gitaly::ListAllLFSPointersRequest, stream(Gitaly::ListAllLFSPointersResponse)
|
25
36
|
end
|
26
37
|
|
27
38
|
Stub = Service.rpc_stub_class
|
@@ -49,6 +49,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
49
49
|
optional :repository, :message, 1, "gitaly.Repository"
|
50
50
|
optional :from, :bytes, 2
|
51
51
|
optional :to, :bytes, 3
|
52
|
+
optional :pagination_params, :message, 4, "gitaly.PaginationParameter"
|
52
53
|
end
|
53
54
|
add_message "gitaly.CommitsBetweenResponse" do
|
54
55
|
repeated :commits, :message, 1, "gitaly.GitCommit"
|
@@ -110,6 +111,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
110
111
|
add_message "gitaly.FindCommitRequest" do
|
111
112
|
optional :repository, :message, 1, "gitaly.Repository"
|
112
113
|
optional :revision, :bytes, 2
|
114
|
+
optional :trailers, :bool, 3
|
113
115
|
end
|
114
116
|
add_message "gitaly.FindCommitResponse" do
|
115
117
|
optional :commit, :message, 1, "gitaly.GitCommit"
|
@@ -163,6 +165,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
163
165
|
optional :author, :bytes, 13
|
164
166
|
optional :order, :enum, 14, "gitaly.FindCommitsRequest.Order"
|
165
167
|
optional :global_options, :message, 15, "gitaly.GlobalOptions"
|
168
|
+
optional :trailers, :bool, 16
|
166
169
|
end
|
167
170
|
add_enum "gitaly.FindCommitsRequest.Order" do
|
168
171
|
value :NONE, 0
|
@@ -5,6 +5,7 @@ require 'google/protobuf'
|
|
5
5
|
|
6
6
|
require 'lint_pb'
|
7
7
|
require 'shared_pb'
|
8
|
+
require 'google/protobuf/timestamp_pb'
|
8
9
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
10
|
add_file("conflicts.proto", :syntax => :proto3) do
|
10
11
|
add_message "gitaly.ListConflictFilesRequest" do
|
@@ -37,6 +38,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
37
38
|
optional :target_branch, :bytes, 6
|
38
39
|
optional :commit_message, :bytes, 7
|
39
40
|
optional :user, :message, 8, "gitaly.User"
|
41
|
+
optional :timestamp, :message, 9, "google.protobuf.Timestamp"
|
40
42
|
end
|
41
43
|
add_message "gitaly.ResolveConflictsRequest" do
|
42
44
|
oneof :resolve_conflicts_request_payload do
|
@@ -15,6 +15,9 @@ module Gitaly
|
|
15
15
|
self.service_name = 'gitaly.ConflictsService'
|
16
16
|
|
17
17
|
rpc :ListConflictFiles, Gitaly::ListConflictFilesRequest, stream(Gitaly::ListConflictFilesResponse)
|
18
|
+
# ResolveConflicts tries to resolve a conflicting merge with a set of
|
19
|
+
# user-provided merge resolutions. If resolving the conflict succeeds, the
|
20
|
+
# result will be a new merge commit.
|
18
21
|
rpc :ResolveConflicts, stream(Gitaly::ResolveConflictsRequest), Gitaly::ResolveConflictsResponse
|
19
22
|
end
|
20
23
|
|
@@ -22,6 +22,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
22
22
|
optional :safe_max_files, :int32, 11
|
23
23
|
optional :safe_max_lines, :int32, 12
|
24
24
|
optional :safe_max_bytes, :int32, 13
|
25
|
+
optional :diff_mode, :enum, 15, "gitaly.CommitDiffRequest.DiffMode"
|
26
|
+
end
|
27
|
+
add_enum "gitaly.CommitDiffRequest.DiffMode" do
|
28
|
+
value :DEFAULT, 0
|
29
|
+
value :WORDDIFF, 1
|
25
30
|
end
|
26
31
|
add_message "gitaly.CommitDiffResponse" do
|
27
32
|
optional :from_path, :bytes, 1
|
@@ -107,6 +112,7 @@ end
|
|
107
112
|
|
108
113
|
module Gitaly
|
109
114
|
CommitDiffRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffRequest").msgclass
|
115
|
+
CommitDiffRequest::DiffMode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffRequest.DiffMode").enummodule
|
110
116
|
CommitDiffResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffResponse").msgclass
|
111
117
|
CommitDeltaRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDeltaRequest").msgclass
|
112
118
|
CommitDelta = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDelta").msgclass
|
@@ -57,6 +57,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
57
57
|
optional :stderr, :bytes, 2
|
58
58
|
optional :exit_status, :message, 3, "gitaly.ExitStatus"
|
59
59
|
end
|
60
|
+
add_message "gitaly.PackObjectsHookRequest" do
|
61
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
62
|
+
repeated :args, :string, 2
|
63
|
+
optional :stdin, :bytes, 3
|
64
|
+
end
|
65
|
+
add_message "gitaly.PackObjectsHookResponse" do
|
66
|
+
optional :stdout, :bytes, 1
|
67
|
+
optional :stderr, :bytes, 2
|
68
|
+
end
|
60
69
|
end
|
61
70
|
end
|
62
71
|
|
@@ -70,4 +79,6 @@ module Gitaly
|
|
70
79
|
ReferenceTransactionHookRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookRequest").msgclass
|
71
80
|
ReferenceTransactionHookRequest::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookRequest.State").enummodule
|
72
81
|
ReferenceTransactionHookResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookResponse").msgclass
|
82
|
+
PackObjectsHookRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackObjectsHookRequest").msgclass
|
83
|
+
PackObjectsHookResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackObjectsHookResponse").msgclass
|
73
84
|
end
|
@@ -18,6 +18,10 @@ module Gitaly
|
|
18
18
|
rpc :PostReceiveHook, stream(Gitaly::PostReceiveHookRequest), stream(Gitaly::PostReceiveHookResponse)
|
19
19
|
rpc :UpdateHook, Gitaly::UpdateHookRequest, stream(Gitaly::UpdateHookResponse)
|
20
20
|
rpc :ReferenceTransactionHook, stream(Gitaly::ReferenceTransactionHookRequest), stream(Gitaly::ReferenceTransactionHookResponse)
|
21
|
+
# PackObjectsHook is meant to be called by git-upload-pack via the
|
22
|
+
# uploadpack.packObjectsHook mechanism. It generates a stream of packed
|
23
|
+
# Git objects.
|
24
|
+
rpc :PackObjectsHook, stream(Gitaly::PackObjectsHookRequest), stream(Gitaly::PackObjectsHookResponse)
|
21
25
|
end
|
22
26
|
|
23
27
|
Stub = Service.rpc_stub_class
|
@@ -5,6 +5,7 @@ require 'google/protobuf'
|
|
5
5
|
|
6
6
|
require 'lint_pb'
|
7
7
|
require 'shared_pb'
|
8
|
+
require 'google/protobuf/timestamp_pb'
|
8
9
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
10
|
add_file("operations.proto", :syntax => :proto3) do
|
10
11
|
add_message "gitaly.UserCreateBranchRequest" do
|
@@ -49,6 +50,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
49
50
|
optional :user, :message, 3, "gitaly.User"
|
50
51
|
optional :target_revision, :bytes, 4
|
51
52
|
optional :message, :bytes, 5
|
53
|
+
optional :timestamp, :message, 7, "google.protobuf.Timestamp"
|
52
54
|
end
|
53
55
|
add_message "gitaly.UserCreateTagResponse" do
|
54
56
|
optional :tag, :message, 1, "gitaly.Tag"
|
@@ -61,6 +63,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
61
63
|
optional :commit_id, :string, 3
|
62
64
|
optional :branch, :bytes, 4
|
63
65
|
optional :message, :bytes, 5
|
66
|
+
optional :timestamp, :message, 7, "google.protobuf.Timestamp"
|
64
67
|
optional :apply, :bool, 6
|
65
68
|
end
|
66
69
|
add_message "gitaly.UserMergeBranchResponse" do
|
@@ -77,6 +80,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
77
80
|
optional :message, :bytes, 6
|
78
81
|
optional :first_parent_ref, :bytes, 7
|
79
82
|
optional :allow_conflicts, :bool, 8
|
83
|
+
optional :timestamp, :message, 9, "google.protobuf.Timestamp"
|
80
84
|
end
|
81
85
|
add_message "gitaly.UserMergeToRefResponse" do
|
82
86
|
optional :commit_id, :string, 1
|
@@ -106,6 +110,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
106
110
|
optional :start_branch_name, :bytes, 6
|
107
111
|
optional :start_repository, :message, 7, "gitaly.Repository"
|
108
112
|
optional :dry_run, :bool, 8
|
113
|
+
optional :timestamp, :message, 9, "google.protobuf.Timestamp"
|
109
114
|
end
|
110
115
|
add_message "gitaly.UserCherryPickResponse" do
|
111
116
|
optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
|
@@ -128,6 +133,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
128
133
|
optional :start_branch_name, :bytes, 6
|
129
134
|
optional :start_repository, :message, 7, "gitaly.Repository"
|
130
135
|
optional :dry_run, :bool, 8
|
136
|
+
optional :timestamp, :message, 9, "google.protobuf.Timestamp"
|
131
137
|
end
|
132
138
|
add_message "gitaly.UserRevertResponse" do
|
133
139
|
optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
|
@@ -174,6 +180,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
174
180
|
optional :start_repository, :message, 8, "gitaly.Repository"
|
175
181
|
optional :force, :bool, 9
|
176
182
|
optional :start_sha, :string, 10
|
183
|
+
optional :timestamp, :message, 11, "google.protobuf.Timestamp"
|
177
184
|
end
|
178
185
|
add_message "gitaly.UserCommitFilesRequest" do
|
179
186
|
oneof :user_commit_files_request_payload do
|
@@ -201,6 +208,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
201
208
|
optional :remote_repository, :message, 6, "gitaly.Repository"
|
202
209
|
optional :remote_branch, :bytes, 7
|
203
210
|
repeated :git_push_options, :string, 8
|
211
|
+
optional :timestamp, :message, 9, "google.protobuf.Timestamp"
|
204
212
|
end
|
205
213
|
add_message "gitaly.UserRebaseConfirmableResponse" do
|
206
214
|
optional :pre_receive_error, :string, 3
|
@@ -218,6 +226,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
218
226
|
optional :end_sha, :string, 6
|
219
227
|
optional :author, :message, 7, "gitaly.User"
|
220
228
|
optional :commit_message, :bytes, 8
|
229
|
+
optional :timestamp, :message, 9, "google.protobuf.Timestamp"
|
221
230
|
end
|
222
231
|
add_message "gitaly.UserSquashResponse" do
|
223
232
|
optional :squash_sha, :string, 1
|
@@ -233,6 +242,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
233
242
|
optional :repository, :message, 1, "gitaly.Repository"
|
234
243
|
optional :user, :message, 2, "gitaly.User"
|
235
244
|
optional :target_branch, :bytes, 3
|
245
|
+
optional :timestamp, :message, 4, "google.protobuf.Timestamp"
|
236
246
|
end
|
237
247
|
add_message "gitaly.UserApplyPatchResponse" do
|
238
248
|
optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
|
@@ -244,6 +254,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
244
254
|
optional :branch, :bytes, 4
|
245
255
|
optional :submodule, :bytes, 5
|
246
256
|
optional :commit_message, :bytes, 6
|
257
|
+
optional :timestamp, :message, 7, "google.protobuf.Timestamp"
|
247
258
|
end
|
248
259
|
add_message "gitaly.UserUpdateSubmoduleResponse" do
|
249
260
|
optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
|
@@ -6,6 +6,10 @@ require 'operations_pb'
|
|
6
6
|
|
7
7
|
module Gitaly
|
8
8
|
module OperationService
|
9
|
+
# OperationService provides an interface for performing mutating git
|
10
|
+
# operations on a repository on behalf of a user. The user's operation is
|
11
|
+
# treated as untrusted. Any reference update is thus checked against GitLab's
|
12
|
+
# '/allowed' endpoint.
|
9
13
|
class Service
|
10
14
|
|
11
15
|
include GRPC::GenericService
|
@@ -17,21 +21,53 @@ module Gitaly
|
|
17
21
|
rpc :UserCreateBranch, Gitaly::UserCreateBranchRequest, Gitaly::UserCreateBranchResponse
|
18
22
|
rpc :UserUpdateBranch, Gitaly::UserUpdateBranchRequest, Gitaly::UserUpdateBranchResponse
|
19
23
|
rpc :UserDeleteBranch, Gitaly::UserDeleteBranchRequest, Gitaly::UserDeleteBranchResponse
|
24
|
+
# UserCreateTag creates a new tag.
|
20
25
|
rpc :UserCreateTag, Gitaly::UserCreateTagRequest, Gitaly::UserCreateTagResponse
|
21
26
|
rpc :UserDeleteTag, Gitaly::UserDeleteTagRequest, Gitaly::UserDeleteTagResponse
|
27
|
+
# UserMergeRef creates a merge commit and updates target_ref to point to that
|
28
|
+
# new commit. The first parent of the merge commit (the main line) is taken
|
29
|
+
# from first_parent_ref. The second parent is specified by its commit ID in source_sha.
|
30
|
+
# If target_ref already exists it will be overwritten.
|
22
31
|
rpc :UserMergeToRef, Gitaly::UserMergeToRefRequest, Gitaly::UserMergeToRefResponse
|
32
|
+
# UserMergeBranch tries to merge the given commit into the target branch.
|
33
|
+
# The merge commit is created with the given user as author/committer and
|
34
|
+
# the given message.
|
35
|
+
#
|
36
|
+
# This RPC requires confirmation to make any user-visible changes to the
|
37
|
+
# repository. The first request sent shall contain details about the
|
38
|
+
# requested merge, which will result in a response with the created merge
|
39
|
+
# commit ID. Only if a second message with `apply = true` is sent will the
|
40
|
+
# merge be applied.
|
23
41
|
rpc :UserMergeBranch, stream(Gitaly::UserMergeBranchRequest), stream(Gitaly::UserMergeBranchResponse)
|
42
|
+
# UserFFBranch tries to perform a fast-forward merge of the given branch to
|
43
|
+
# the given commit. If the merge is not a fast-forward merge, the request
|
44
|
+
# will fail. The RPC will return an empty response in case updating the
|
45
|
+
# reference fails e.g. because of a race.
|
24
46
|
rpc :UserFFBranch, Gitaly::UserFFBranchRequest, Gitaly::UserFFBranchResponse
|
47
|
+
# UserCherryPick tries to perform a cherry-pick of a given commit onto a
|
48
|
+
# branch.
|
25
49
|
rpc :UserCherryPick, Gitaly::UserCherryPickRequest, Gitaly::UserCherryPickResponse
|
26
50
|
# UserCommitFiles builds a commit from a stream of actions and updates the target branch to point to it.
|
27
51
|
# UserCommitFilesRequest with a UserCommitFilesRequestHeader must be sent as the first message of the stream.
|
28
|
-
# Following that, a variable number of actions can be sent to build a new commit. Each action consists of
|
29
|
-
# a header followed by content if used by the action.
|
52
|
+
# Following that, a variable number of actions can be sent to build a new commit. Each action consists of
|
53
|
+
# a header followed by content if used by the action.
|
30
54
|
rpc :UserCommitFiles, stream(Gitaly::UserCommitFilesRequest), Gitaly::UserCommitFilesResponse
|
55
|
+
# UserRebaseConfirmable rebases the given remote branch onto a target
|
56
|
+
# branch. The remote branch may be part of another repository.
|
57
|
+
#
|
58
|
+
# This RPC requires confirmation to make any user-visible changes to the
|
59
|
+
# repository. The first request sent shall contains details about the
|
60
|
+
# requested rebase, which will result in a response with the created rebase
|
61
|
+
# commit ID. Only if a second message with `apply = true` is sent will the
|
62
|
+
# rebase be applied.
|
31
63
|
rpc :UserRebaseConfirmable, stream(Gitaly::UserRebaseConfirmableRequest), stream(Gitaly::UserRebaseConfirmableResponse)
|
64
|
+
# UserRevert tries to perform a revert of a given commit onto a branch.
|
32
65
|
rpc :UserRevert, Gitaly::UserRevertRequest, Gitaly::UserRevertResponse
|
66
|
+
# UserSquash squashes a range of commits into a single commit.
|
33
67
|
rpc :UserSquash, Gitaly::UserSquashRequest, Gitaly::UserSquashResponse
|
68
|
+
# UserApplyPatch applies patches to a given branch.
|
34
69
|
rpc :UserApplyPatch, stream(Gitaly::UserApplyPatchRequest), Gitaly::UserApplyPatchResponse
|
70
|
+
# UserUpdateSubmodule updates a submodule to point to a new commit.
|
35
71
|
rpc :UserUpdateSubmodule, Gitaly::UserUpdateSubmoduleRequest, Gitaly::UserUpdateSubmoduleResponse
|
36
72
|
end
|
37
73
|
|
@@ -26,6 +26,8 @@ module Gitaly
|
|
26
26
|
rpc :FindTag, Gitaly::FindTagRequest, Gitaly::FindTagResponse
|
27
27
|
rpc :FindAllRemoteBranches, Gitaly::FindAllRemoteBranchesRequest, stream(Gitaly::FindAllRemoteBranchesResponse)
|
28
28
|
rpc :RefExists, Gitaly::RefExistsRequest, Gitaly::RefExistsResponse
|
29
|
+
# FindBranch finds a branch by its unqualified name (like "master") and
|
30
|
+
# returns the commit it currently points to.
|
29
31
|
rpc :FindBranch, Gitaly::FindBranchRequest, Gitaly::FindBranchResponse
|
30
32
|
rpc :DeleteRefs, Gitaly::DeleteRefsRequest, Gitaly::DeleteRefsResponse
|
31
33
|
rpc :ListBranchNamesContainingCommit, Gitaly::ListBranchNamesContainingCommitRequest, stream(Gitaly::ListBranchNamesContainingCommitResponse)
|
@@ -32,11 +32,16 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
32
32
|
add_message "gitaly.UpdateRemoteMirrorRequest" do
|
33
33
|
optional :repository, :message, 1, "gitaly.Repository"
|
34
34
|
optional :ref_name, :string, 2
|
35
|
+
optional :remote, :message, 7, "gitaly.UpdateRemoteMirrorRequest.Remote"
|
35
36
|
repeated :only_branches_matching, :bytes, 3
|
36
37
|
optional :ssh_key, :string, 4
|
37
38
|
optional :known_hosts, :string, 5
|
38
39
|
optional :keep_divergent_refs, :bool, 6
|
39
40
|
end
|
41
|
+
add_message "gitaly.UpdateRemoteMirrorRequest.Remote" do
|
42
|
+
optional :url, :string, 1
|
43
|
+
optional :http_authorization_header, :string, 2
|
44
|
+
end
|
40
45
|
add_message "gitaly.UpdateRemoteMirrorResponse" do
|
41
46
|
repeated :divergent_refs, :bytes, 1
|
42
47
|
end
|
@@ -50,6 +55,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
50
55
|
add_message "gitaly.FindRemoteRootRefRequest" do
|
51
56
|
optional :repository, :message, 1, "gitaly.Repository"
|
52
57
|
optional :remote, :string, 2
|
58
|
+
optional :remote_url, :string, 3
|
59
|
+
optional :http_authorization_header, :string, 4
|
53
60
|
end
|
54
61
|
add_message "gitaly.FindRemoteRootRefResponse" do
|
55
62
|
optional :ref, :string, 1
|
@@ -76,6 +83,7 @@ module Gitaly
|
|
76
83
|
FetchInternalRemoteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteRequest").msgclass
|
77
84
|
FetchInternalRemoteResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteResponse").msgclass
|
78
85
|
UpdateRemoteMirrorRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorRequest").msgclass
|
86
|
+
UpdateRemoteMirrorRequest::Remote = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorRequest.Remote").msgclass
|
79
87
|
UpdateRemoteMirrorResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorResponse").msgclass
|
80
88
|
FindRemoteRepositoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRepositoryRequest").msgclass
|
81
89
|
FindRemoteRepositoryResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRepositoryResponse").msgclass
|
@@ -17,10 +17,19 @@ module Gitaly
|
|
17
17
|
rpc :AddRemote, Gitaly::AddRemoteRequest, Gitaly::AddRemoteResponse
|
18
18
|
rpc :FetchInternalRemote, Gitaly::FetchInternalRemoteRequest, Gitaly::FetchInternalRemoteResponse
|
19
19
|
rpc :RemoveRemote, Gitaly::RemoveRemoteRequest, Gitaly::RemoveRemoteResponse
|
20
|
+
# UpdateRemoteMirror compares the references in the target repository and its remote mirror
|
21
|
+
# repository. Any differences in the references are then addressed by pushing the differing
|
22
|
+
# references to the mirror. Created and modified references are updated, removed references are
|
23
|
+
# deleted from the mirror. UpdateRemoteMirror updates all tags. Branches are updated if they match
|
24
|
+
# the patterns specified in the requests.
|
20
25
|
rpc :UpdateRemoteMirror, stream(Gitaly::UpdateRemoteMirrorRequest), Gitaly::UpdateRemoteMirrorResponse
|
21
26
|
rpc :FindRemoteRepository, Gitaly::FindRemoteRepositoryRequest, Gitaly::FindRemoteRepositoryResponse
|
27
|
+
# FindRemoteRootRef tries to find the root reference of a remote
|
28
|
+
# repository. The root reference is the default branch as pointed to by
|
29
|
+
# the remotes HEAD reference. Returns an InvalidArgument error if the
|
30
|
+
# specified remote does not exist and a NotFound error in case no HEAD
|
31
|
+
# branch was found.
|
22
32
|
rpc :FindRemoteRootRef, Gitaly::FindRemoteRootRefRequest, Gitaly::FindRemoteRootRefResponse
|
23
|
-
rpc :ListRemotes, Gitaly::ListRemotesRequest, stream(Gitaly::ListRemotesResponse)
|
24
33
|
end
|
25
34
|
|
26
35
|
Stub = Service.rpc_stub_class
|
@@ -38,6 +38,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
38
38
|
end
|
39
39
|
add_message "gitaly.WriteCommitGraphRequest" do
|
40
40
|
optional :repository, :message, 1, "gitaly.Repository"
|
41
|
+
optional :splitStrategy, :enum, 2, "gitaly.WriteCommitGraphRequest.SplitStrategy"
|
42
|
+
end
|
43
|
+
add_enum "gitaly.WriteCommitGraphRequest.SplitStrategy" do
|
44
|
+
value :SizeMultiple, 0
|
41
45
|
end
|
42
46
|
add_message "gitaly.WriteCommitGraphResponse" do
|
43
47
|
end
|
@@ -166,6 +170,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
166
170
|
add_message "gitaly.CreateBundleResponse" do
|
167
171
|
optional :data, :bytes, 1
|
168
172
|
end
|
173
|
+
add_message "gitaly.GetConfigRequest" do
|
174
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
175
|
+
end
|
176
|
+
add_message "gitaly.GetConfigResponse" do
|
177
|
+
optional :data, :bytes, 1
|
178
|
+
end
|
169
179
|
add_message "gitaly.SetConfigRequest" do
|
170
180
|
optional :repository, :message, 1, "gitaly.Repository"
|
171
181
|
repeated :entries, :message, 2, "gitaly.SetConfigRequest.Entry"
|
@@ -286,7 +296,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
286
296
|
end
|
287
297
|
add_message "gitaly.Remote" do
|
288
298
|
optional :url, :string, 1
|
289
|
-
optional :name, :string, 2
|
290
299
|
optional :http_authorization_header, :string, 3
|
291
300
|
repeated :mirror_refmaps, :string, 4
|
292
301
|
end
|
@@ -347,6 +356,7 @@ module Gitaly
|
|
347
356
|
GarbageCollectRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectRequest").msgclass
|
348
357
|
GarbageCollectResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectResponse").msgclass
|
349
358
|
WriteCommitGraphRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphRequest").msgclass
|
359
|
+
WriteCommitGraphRequest::SplitStrategy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphRequest.SplitStrategy").enummodule
|
350
360
|
WriteCommitGraphResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphResponse").msgclass
|
351
361
|
CleanupRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupRequest").msgclass
|
352
362
|
CleanupResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupResponse").msgclass
|
@@ -381,6 +391,8 @@ module Gitaly
|
|
381
391
|
CreateRepositoryFromURLResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromURLResponse").msgclass
|
382
392
|
CreateBundleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleRequest").msgclass
|
383
393
|
CreateBundleResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleResponse").msgclass
|
394
|
+
GetConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetConfigRequest").msgclass
|
395
|
+
GetConfigResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetConfigResponse").msgclass
|
384
396
|
SetConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest").msgclass
|
385
397
|
SetConfigRequest::Entry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest.Entry").msgclass
|
386
398
|
SetConfigResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigResponse").msgclass
|
@@ -22,6 +22,8 @@ module Gitaly
|
|
22
22
|
rpc :WriteCommitGraph, Gitaly::WriteCommitGraphRequest, Gitaly::WriteCommitGraphResponse
|
23
23
|
rpc :RepositorySize, Gitaly::RepositorySizeRequest, Gitaly::RepositorySizeResponse
|
24
24
|
rpc :ApplyGitattributes, Gitaly::ApplyGitattributesRequest, Gitaly::ApplyGitattributesResponse
|
25
|
+
# FetchRemote fetches references from a remote repository into the local
|
26
|
+
# repository.
|
25
27
|
rpc :FetchRemote, Gitaly::FetchRemoteRequest, Gitaly::FetchRemoteResponse
|
26
28
|
rpc :CreateRepository, Gitaly::CreateRepositoryRequest, Gitaly::CreateRepositoryResponse
|
27
29
|
rpc :GetArchive, Gitaly::GetArchiveRequest, stream(Gitaly::GetArchiveResponse)
|
@@ -38,6 +40,9 @@ module Gitaly
|
|
38
40
|
rpc :CreateRepositoryFromURL, Gitaly::CreateRepositoryFromURLRequest, Gitaly::CreateRepositoryFromURLResponse
|
39
41
|
rpc :CreateBundle, Gitaly::CreateBundleRequest, stream(Gitaly::CreateBundleResponse)
|
40
42
|
rpc :CreateRepositoryFromBundle, stream(Gitaly::CreateRepositoryFromBundleRequest), Gitaly::CreateRepositoryFromBundleResponse
|
43
|
+
# GetConfig reads the target repository's gitconfig and streams its contents
|
44
|
+
# back. Returns a NotFound error in case no gitconfig was found.
|
45
|
+
rpc :GetConfig, Gitaly::GetConfigRequest, stream(Gitaly::GetConfigResponse)
|
41
46
|
rpc :SetConfig, Gitaly::SetConfigRequest, Gitaly::SetConfigResponse
|
42
47
|
rpc :DeleteConfig, Gitaly::DeleteConfigRequest, Gitaly::DeleteConfigResponse
|
43
48
|
rpc :FindLicense, Gitaly::FindLicenseRequest, Gitaly::FindLicenseResponse
|
@@ -54,6 +59,9 @@ module Gitaly
|
|
54
59
|
rpc :GetObjectDirectorySize, Gitaly::GetObjectDirectorySizeRequest, Gitaly::GetObjectDirectorySizeResponse
|
55
60
|
rpc :CloneFromPool, Gitaly::CloneFromPoolRequest, Gitaly::CloneFromPoolResponse
|
56
61
|
rpc :CloneFromPoolInternal, Gitaly::CloneFromPoolInternalRequest, Gitaly::CloneFromPoolInternalResponse
|
62
|
+
# RemoveRepository will move the repository to `+gitaly/tmp/<relative_path>_removed` and
|
63
|
+
# eventually remove it. This ensures that even on networked filesystems the
|
64
|
+
# data is actually removed even if there's someone still handling the data.
|
57
65
|
rpc :RemoveRepository, Gitaly::RemoveRepositoryRequest, Gitaly::RemoveRepositoryResponse
|
58
66
|
rpc :RenameRepository, Gitaly::RenameRepositoryRequest, Gitaly::RenameRepositoryResponse
|
59
67
|
rpc :ReplicateRepository, Gitaly::ReplicateRepositoryRequest, Gitaly::ReplicateRepositoryResponse
|
@@ -28,15 +28,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
28
28
|
optional :historical, :bool, 7
|
29
29
|
optional :raw_data, :bytes, 8
|
30
30
|
end
|
31
|
-
add_message "gitaly.WikiGetPageVersionsRequest" do
|
32
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
33
|
-
optional :page_path, :bytes, 2
|
34
|
-
optional :page, :int32, 3
|
35
|
-
optional :per_page, :int32, 4
|
36
|
-
end
|
37
|
-
add_message "gitaly.WikiGetPageVersionsResponse" do
|
38
|
-
repeated :versions, :message, 1, "gitaly.WikiPageVersion"
|
39
|
-
end
|
40
31
|
add_message "gitaly.WikiWritePageRequest" do
|
41
32
|
optional :repository, :message, 1, "gitaly.Repository"
|
42
33
|
optional :name, :bytes, 2
|
@@ -58,13 +49,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
58
49
|
add_message "gitaly.WikiUpdatePageResponse" do
|
59
50
|
optional :error, :bytes, 1
|
60
51
|
end
|
61
|
-
add_message "gitaly.WikiDeletePageRequest" do
|
62
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
63
|
-
optional :page_path, :bytes, 2
|
64
|
-
optional :commit_details, :message, 3, "gitaly.WikiCommitDetails"
|
65
|
-
end
|
66
|
-
add_message "gitaly.WikiDeletePageResponse" do
|
67
|
-
end
|
68
52
|
add_message "gitaly.WikiFindPageRequest" do
|
69
53
|
optional :repository, :message, 1, "gitaly.Repository"
|
70
54
|
optional :title, :bytes, 2
|
@@ -74,17 +58,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
74
58
|
add_message "gitaly.WikiFindPageResponse" do
|
75
59
|
optional :page, :message, 1, "gitaly.WikiPage"
|
76
60
|
end
|
77
|
-
add_message "gitaly.WikiFindFileRequest" do
|
78
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
79
|
-
optional :name, :bytes, 2
|
80
|
-
optional :revision, :bytes, 3
|
81
|
-
end
|
82
|
-
add_message "gitaly.WikiFindFileResponse" do
|
83
|
-
optional :name, :bytes, 1
|
84
|
-
optional :mime_type, :string, 2
|
85
|
-
optional :raw_data, :bytes, 3
|
86
|
-
optional :path, :bytes, 4
|
87
|
-
end
|
88
61
|
add_message "gitaly.WikiGetAllPagesRequest" do
|
89
62
|
optional :repository, :message, 1, "gitaly.Repository"
|
90
63
|
optional :limit, :uint32, 2
|
@@ -120,18 +93,12 @@ module Gitaly
|
|
120
93
|
WikiCommitDetails = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiCommitDetails").msgclass
|
121
94
|
WikiPageVersion = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiPageVersion").msgclass
|
122
95
|
WikiPage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiPage").msgclass
|
123
|
-
WikiGetPageVersionsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiGetPageVersionsRequest").msgclass
|
124
|
-
WikiGetPageVersionsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiGetPageVersionsResponse").msgclass
|
125
96
|
WikiWritePageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiWritePageRequest").msgclass
|
126
97
|
WikiWritePageResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiWritePageResponse").msgclass
|
127
98
|
WikiUpdatePageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiUpdatePageRequest").msgclass
|
128
99
|
WikiUpdatePageResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiUpdatePageResponse").msgclass
|
129
|
-
WikiDeletePageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiDeletePageRequest").msgclass
|
130
|
-
WikiDeletePageResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiDeletePageResponse").msgclass
|
131
100
|
WikiFindPageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiFindPageRequest").msgclass
|
132
101
|
WikiFindPageResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiFindPageResponse").msgclass
|
133
|
-
WikiFindFileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiFindFileRequest").msgclass
|
134
|
-
WikiFindFileResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiFindFileResponse").msgclass
|
135
102
|
WikiGetAllPagesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiGetAllPagesRequest").msgclass
|
136
103
|
WikiGetAllPagesRequest::SortBy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiGetAllPagesRequest.SortBy").enummodule
|
137
104
|
WikiGetAllPagesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiGetAllPagesResponse").msgclass
|
@@ -14,13 +14,10 @@ module Gitaly
|
|
14
14
|
self.unmarshal_class_method = :decode
|
15
15
|
self.service_name = 'gitaly.WikiService'
|
16
16
|
|
17
|
-
rpc :WikiGetPageVersions, Gitaly::WikiGetPageVersionsRequest, stream(Gitaly::WikiGetPageVersionsResponse)
|
18
17
|
rpc :WikiWritePage, stream(Gitaly::WikiWritePageRequest), Gitaly::WikiWritePageResponse
|
19
18
|
rpc :WikiUpdatePage, stream(Gitaly::WikiUpdatePageRequest), Gitaly::WikiUpdatePageResponse
|
20
|
-
rpc :WikiDeletePage, Gitaly::WikiDeletePageRequest, Gitaly::WikiDeletePageResponse
|
21
19
|
# WikiFindPage returns a stream because the page's raw_data field may be arbitrarily large.
|
22
20
|
rpc :WikiFindPage, Gitaly::WikiFindPageRequest, stream(Gitaly::WikiFindPageResponse)
|
23
|
-
rpc :WikiFindFile, Gitaly::WikiFindFileRequest, stream(Gitaly::WikiFindFileResponse)
|
24
21
|
rpc :WikiGetAllPages, Gitaly::WikiGetAllPagesRequest, stream(Gitaly::WikiGetAllPagesResponse)
|
25
22
|
rpc :WikiListPages, Gitaly::WikiListPagesRequest, stream(Gitaly::WikiListPagesResponse)
|
26
23
|
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: 14.0.0.pre.rc2
|
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-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
93
|
- !ruby/object:Gem::Version
|
94
94
|
version: 1.3.1
|
95
95
|
requirements: []
|
96
|
-
rubygems_version: 3.
|
96
|
+
rubygems_version: 3.2.18
|
97
97
|
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: Auto-generated gRPC client for gitaly
|