gitaly 15.0.0.pre.rc3 → 15.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/commit_pb.rb +2 -0
- data/ruby/proto/gitaly/commit_services_pb.rb +2 -1
- data/ruby/proto/gitaly/diff_pb.rb +20 -0
- data/ruby/proto/gitaly/errors_pb.rb +13 -0
- data/ruby/proto/gitaly/hook_pb.rb +3 -0
- data/ruby/proto/gitaly/operations_pb.rb +18 -3
- data/ruby/proto/gitaly/operations_services_pb.rb +16 -2
- data/ruby/proto/gitaly/ref_pb.rb +8 -0
- data/ruby/proto/gitaly/repository_pb.rb +8 -0
- data/ruby/proto/gitaly/repository_services_pb.rb +3 -0
- data/ruby/proto/gitaly/shared_pb.rb +7 -0
- data/ruby/proto/gitaly/version.rb +1 -1
- 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: 505b682ed327bb84510ae5266a665859f6a94dbf73b9a94d6252a0c4e589b01a
|
4
|
+
data.tar.gz: c320ca05c570ed8c362691955d7fbd3a78cc076e3848906577515cff5d866a0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e15024d2fcc46f1e9251b2430bfed199a33a4519dc990e5d5ca0e0cd15e47a30ac001ef524430f030e6c554c5a64e3b2dba6f6ff9af4031b4467147173ee5b54
|
7
|
+
data.tar.gz: b60712edc486a92e23b182e457ac37528a7b8a7f492789f1f123101f37e44853c3f9044b14cb972e65280a8634bbd40473e31c4cc650b912fbcaf3cfd36818bd
|
@@ -120,6 +120,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
120
120
|
optional :recursive, :bool, 4
|
121
121
|
optional :sort, :enum, 5, "gitaly.GetTreeEntriesRequest.SortBy"
|
122
122
|
optional :pagination_params, :message, 6, "gitaly.PaginationParameter"
|
123
|
+
optional :skip_flat_paths, :bool, 7
|
123
124
|
end
|
124
125
|
add_enum "gitaly.GetTreeEntriesRequest.SortBy" do
|
125
126
|
value :DEFAULT, 0
|
@@ -194,6 +195,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
194
195
|
optional :order, :enum, 14, "gitaly.FindCommitsRequest.Order"
|
195
196
|
optional :global_options, :message, 15, "gitaly.GlobalOptions"
|
196
197
|
optional :trailers, :bool, 16
|
198
|
+
optional :include_shortstat, :bool, 17
|
197
199
|
end
|
198
200
|
add_enum "gitaly.FindCommitsRequest.Order" do
|
199
201
|
value :NONE, 0
|
@@ -43,7 +43,8 @@ module Gitaly
|
|
43
43
|
rpc :FindAllCommits, ::Gitaly::FindAllCommitsRequest, stream(::Gitaly::FindAllCommitsResponse)
|
44
44
|
# This comment is left unintentionally blank.
|
45
45
|
rpc :FindCommits, ::Gitaly::FindCommitsRequest, stream(::Gitaly::FindCommitsResponse)
|
46
|
-
#
|
46
|
+
# CommitLanguages detects the source code languages of the whole tree for a
|
47
|
+
# given commit. Returns an error in case no languages could be detected.
|
47
48
|
rpc :CommitLanguages, ::Gitaly::CommitLanguagesRequest, ::Gitaly::CommitLanguagesResponse
|
48
49
|
# This comment is left unintentionally blank.
|
49
50
|
rpc :RawBlame, ::Gitaly::RawBlameRequest, stream(::Gitaly::RawBlameResponse)
|
@@ -92,6 +92,21 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
92
92
|
add_message "gitaly.FindChangedPathsRequest" do
|
93
93
|
optional :repository, :message, 1, "gitaly.Repository"
|
94
94
|
repeated :commits, :string, 2
|
95
|
+
repeated :requests, :message, 3, "gitaly.FindChangedPathsRequest.Request"
|
96
|
+
end
|
97
|
+
add_message "gitaly.FindChangedPathsRequest.Request" do
|
98
|
+
oneof :type do
|
99
|
+
optional :tree_request, :message, 1, "gitaly.FindChangedPathsRequest.Request.TreeRequest"
|
100
|
+
optional :commit_request, :message, 2, "gitaly.FindChangedPathsRequest.Request.CommitRequest"
|
101
|
+
end
|
102
|
+
end
|
103
|
+
add_message "gitaly.FindChangedPathsRequest.Request.TreeRequest" do
|
104
|
+
optional :left_tree_revision, :string, 1
|
105
|
+
optional :right_tree_revision, :string, 2
|
106
|
+
end
|
107
|
+
add_message "gitaly.FindChangedPathsRequest.Request.CommitRequest" do
|
108
|
+
optional :commit_revision, :string, 1
|
109
|
+
repeated :parent_commit_revisions, :string, 2
|
95
110
|
end
|
96
111
|
add_message "gitaly.FindChangedPathsResponse" do
|
97
112
|
repeated :paths, :message, 1, "gitaly.ChangedPaths"
|
@@ -99,6 +114,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
99
114
|
add_message "gitaly.ChangedPaths" do
|
100
115
|
optional :path, :bytes, 1
|
101
116
|
optional :status, :enum, 2, "gitaly.ChangedPaths.Status"
|
117
|
+
optional :old_mode, :int32, 3
|
118
|
+
optional :new_mode, :int32, 4
|
102
119
|
end
|
103
120
|
add_enum "gitaly.ChangedPaths.Status" do
|
104
121
|
value :ADDED, 0
|
@@ -125,6 +142,9 @@ module Gitaly
|
|
125
142
|
DiffStats = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiffStats").msgclass
|
126
143
|
DiffStatsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiffStatsResponse").msgclass
|
127
144
|
FindChangedPathsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindChangedPathsRequest").msgclass
|
145
|
+
FindChangedPathsRequest::Request = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindChangedPathsRequest.Request").msgclass
|
146
|
+
FindChangedPathsRequest::Request::TreeRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindChangedPathsRequest.Request.TreeRequest").msgclass
|
147
|
+
FindChangedPathsRequest::Request::CommitRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindChangedPathsRequest.Request.CommitRequest").msgclass
|
128
148
|
FindChangedPathsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindChangedPathsResponse").msgclass
|
129
149
|
ChangedPaths = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ChangedPaths").msgclass
|
130
150
|
ChangedPaths::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ChangedPaths.Status").enummodule
|
@@ -12,6 +12,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
12
12
|
optional :user_id, :string, 3
|
13
13
|
optional :changes, :bytes, 4
|
14
14
|
end
|
15
|
+
add_message "gitaly.InvalidRefFormatError" do
|
16
|
+
repeated :refs, :bytes, 2
|
17
|
+
end
|
15
18
|
add_message "gitaly.NotAncestorError" do
|
16
19
|
optional :parent_revision, :bytes, 1
|
17
20
|
optional :child_revision, :bytes, 2
|
@@ -20,6 +23,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
20
23
|
end
|
21
24
|
add_message "gitaly.MergeConflictError" do
|
22
25
|
repeated :conflicting_files, :bytes, 1
|
26
|
+
repeated :conflicting_commit_ids, :string, 2
|
27
|
+
end
|
28
|
+
add_message "gitaly.ReferencesLockedError" do
|
29
|
+
end
|
30
|
+
add_message "gitaly.ReferenceExistsError" do
|
31
|
+
optional :reference_name, :bytes, 1
|
32
|
+
optional :oid, :string, 2
|
23
33
|
end
|
24
34
|
add_message "gitaly.ReferenceUpdateError" do
|
25
35
|
optional :reference_name, :bytes, 1
|
@@ -49,9 +59,12 @@ end
|
|
49
59
|
|
50
60
|
module Gitaly
|
51
61
|
AccessCheckError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AccessCheckError").msgclass
|
62
|
+
InvalidRefFormatError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.InvalidRefFormatError").msgclass
|
52
63
|
NotAncestorError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.NotAncestorError").msgclass
|
53
64
|
ChangesAlreadyAppliedError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ChangesAlreadyAppliedError").msgclass
|
54
65
|
MergeConflictError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.MergeConflictError").msgclass
|
66
|
+
ReferencesLockedError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferencesLockedError").msgclass
|
67
|
+
ReferenceExistsError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceExistsError").msgclass
|
55
68
|
ReferenceUpdateError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceUpdateError").msgclass
|
56
69
|
ResolveRevisionError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ResolveRevisionError").msgclass
|
57
70
|
LimitError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LimitError").msgclass
|
@@ -60,6 +60,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
60
60
|
add_message "gitaly.PackObjectsHookWithSidechannelRequest" do
|
61
61
|
optional :repository, :message, 1, "gitaly.Repository"
|
62
62
|
repeated :args, :string, 2
|
63
|
+
optional :gl_id, :string, 3
|
64
|
+
optional :gl_username, :string, 5
|
65
|
+
optional :git_protocol, :string, 6
|
63
66
|
end
|
64
67
|
add_message "gitaly.PackObjectsHookWithSidechannelResponse" do
|
65
68
|
end
|
@@ -37,6 +37,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
37
37
|
add_message "gitaly.UserDeleteBranchResponse" do
|
38
38
|
optional :pre_receive_error, :string, 1
|
39
39
|
end
|
40
|
+
add_message "gitaly.UserDeleteBranchError" do
|
41
|
+
oneof :error do
|
42
|
+
optional :access_check, :message, 1, "gitaly.AccessCheckError"
|
43
|
+
optional :reference_update, :message, 2, "gitaly.ReferenceUpdateError"
|
44
|
+
optional :custom_hook, :message, 3, "gitaly.CustomHookError"
|
45
|
+
end
|
46
|
+
end
|
40
47
|
add_message "gitaly.UserDeleteTagRequest" do
|
41
48
|
optional :repository, :message, 1, "gitaly.Repository"
|
42
49
|
optional :tag_name, :bytes, 2
|
@@ -58,6 +65,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
58
65
|
optional :exists, :bool, 2
|
59
66
|
optional :pre_receive_error, :string, 3
|
60
67
|
end
|
68
|
+
add_message "gitaly.UserCreateTagError" do
|
69
|
+
oneof :error do
|
70
|
+
optional :access_check, :message, 1, "gitaly.AccessCheckError"
|
71
|
+
optional :reference_update, :message, 2, "gitaly.ReferenceUpdateError"
|
72
|
+
optional :custom_hook, :message, 3, "gitaly.CustomHookError"
|
73
|
+
optional :reference_exists, :message, 4, "gitaly.ReferenceExistsError"
|
74
|
+
end
|
75
|
+
end
|
61
76
|
add_message "gitaly.UserMergeBranchRequest" do
|
62
77
|
optional :repository, :message, 1, "gitaly.Repository"
|
63
78
|
optional :user, :message, 2, "gitaly.User"
|
@@ -70,13 +85,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
70
85
|
add_message "gitaly.UserMergeBranchResponse" do
|
71
86
|
optional :commit_id, :string, 1
|
72
87
|
optional :branch_update, :message, 3, "gitaly.OperationBranchUpdate"
|
73
|
-
optional :pre_receive_error, :string, 4
|
74
88
|
end
|
75
89
|
add_message "gitaly.UserMergeBranchError" do
|
76
90
|
oneof :error do
|
77
91
|
optional :access_check, :message, 1, "gitaly.AccessCheckError"
|
78
92
|
optional :reference_update, :message, 2, "gitaly.ReferenceUpdateError"
|
79
93
|
optional :custom_hook, :message, 3, "gitaly.CustomHookError"
|
94
|
+
optional :merge_conflict, :message, 4, "gitaly.MergeConflictError"
|
80
95
|
end
|
81
96
|
end
|
82
97
|
add_message "gitaly.UserMergeToRefRequest" do
|
@@ -92,7 +107,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
92
107
|
end
|
93
108
|
add_message "gitaly.UserMergeToRefResponse" do
|
94
109
|
optional :commit_id, :string, 1
|
95
|
-
optional :pre_receive_error, :string, 2
|
96
110
|
end
|
97
111
|
add_message "gitaly.OperationBranchUpdate" do
|
98
112
|
optional :commit_id, :string, 1
|
@@ -245,7 +259,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
245
259
|
end
|
246
260
|
add_message "gitaly.UserSquashResponse" do
|
247
261
|
optional :squash_sha, :string, 1
|
248
|
-
optional :git_error, :string, 3
|
249
262
|
end
|
250
263
|
add_message "gitaly.UserRebaseConfirmableError" do
|
251
264
|
oneof :error do
|
@@ -298,10 +311,12 @@ module Gitaly
|
|
298
311
|
UserUpdateBranchResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserUpdateBranchResponse").msgclass
|
299
312
|
UserDeleteBranchRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserDeleteBranchRequest").msgclass
|
300
313
|
UserDeleteBranchResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserDeleteBranchResponse").msgclass
|
314
|
+
UserDeleteBranchError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserDeleteBranchError").msgclass
|
301
315
|
UserDeleteTagRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserDeleteTagRequest").msgclass
|
302
316
|
UserDeleteTagResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserDeleteTagResponse").msgclass
|
303
317
|
UserCreateTagRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCreateTagRequest").msgclass
|
304
318
|
UserCreateTagResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCreateTagResponse").msgclass
|
319
|
+
UserCreateTagError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCreateTagError").msgclass
|
305
320
|
UserMergeBranchRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserMergeBranchRequest").msgclass
|
306
321
|
UserMergeBranchResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserMergeBranchResponse").msgclass
|
307
322
|
UserMergeBranchError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserMergeBranchError").msgclass
|
@@ -22,9 +22,23 @@ module Gitaly
|
|
22
22
|
rpc :UserCreateBranch, ::Gitaly::UserCreateBranchRequest, ::Gitaly::UserCreateBranchResponse
|
23
23
|
# This comment is left unintentionally blank.
|
24
24
|
rpc :UserUpdateBranch, ::Gitaly::UserUpdateBranchRequest, ::Gitaly::UserUpdateBranchResponse
|
25
|
-
#
|
25
|
+
# UserDeleteBranch force-deletes a single branch in the context of a specific user. It executes
|
26
|
+
# hooks and contacts Rails to verify that the user is indeed allowed to delete that branch. The
|
27
|
+
# following known error conditions may happen:
|
28
|
+
#
|
29
|
+
# - Returns `InvalidArgument` in case either the branch name or user are not set.
|
30
|
+
# - Returns `FailedPrecondition` in case the branch does not exist.
|
31
|
+
# - Returns `OK` with a `PreReceiveError` in case custom hooks refused the update. If the
|
32
|
+
# `gitaly_user_delete_branch_structured_errors` feature flag is enabled this error case will
|
33
|
+
# instead return `PermissionDenied` with either a `CustomHook` or AccessCheck` structured
|
34
|
+
# error.
|
35
|
+
# - Returns `FailedPrecondition` in case updating the reference fails because
|
36
|
+
# of a concurrent write to the same reference. If the
|
37
|
+
# `gitaly_user_delete_branch_structured_errors` feature flag is set this error case will
|
38
|
+
# instead return `FailedPrecondition` with a `ReferenceUpdate` structured error.
|
26
39
|
rpc :UserDeleteBranch, ::Gitaly::UserDeleteBranchRequest, ::Gitaly::UserDeleteBranchResponse
|
27
|
-
# UserCreateTag creates a new tag.
|
40
|
+
# UserCreateTag creates a new tag. This RPC knows to create both lightweight and annotated tags
|
41
|
+
# depending on whether a message is set.
|
28
42
|
rpc :UserCreateTag, ::Gitaly::UserCreateTagRequest, ::Gitaly::UserCreateTagResponse
|
29
43
|
# This comment is left unintentionally blank.
|
30
44
|
rpc :UserDeleteTag, ::Gitaly::UserDeleteTagRequest, ::Gitaly::UserDeleteTagResponse
|
data/ruby/proto/gitaly/ref_pb.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: ref.proto
|
3
3
|
|
4
|
+
require 'errors_pb'
|
4
5
|
require 'google/protobuf/timestamp_pb'
|
5
6
|
require 'lint_pb'
|
6
7
|
require 'shared_pb'
|
@@ -131,6 +132,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
131
132
|
add_message "gitaly.DeleteRefsResponse" do
|
132
133
|
optional :git_error, :string, 1
|
133
134
|
end
|
135
|
+
add_message "gitaly.DeleteRefsError" do
|
136
|
+
oneof :error do
|
137
|
+
optional :invalid_format, :message, 1, "gitaly.InvalidRefFormatError"
|
138
|
+
optional :references_locked, :message, 2, "gitaly.ReferencesLockedError"
|
139
|
+
end
|
140
|
+
end
|
134
141
|
add_message "gitaly.ListBranchNamesContainingCommitRequest" do
|
135
142
|
optional :repository, :message, 1, "gitaly.Repository"
|
136
143
|
optional :commit_id, :string, 2
|
@@ -247,6 +254,7 @@ module Gitaly
|
|
247
254
|
FindBranchResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindBranchResponse").msgclass
|
248
255
|
DeleteRefsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteRefsRequest").msgclass
|
249
256
|
DeleteRefsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteRefsResponse").msgclass
|
257
|
+
DeleteRefsError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteRefsError").msgclass
|
250
258
|
ListBranchNamesContainingCommitRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBranchNamesContainingCommitRequest").msgclass
|
251
259
|
ListBranchNamesContainingCommitResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBranchNamesContainingCommitResponse").msgclass
|
252
260
|
ListTagNamesContainingCommitRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTagNamesContainingCommitRequest").msgclass
|
@@ -321,6 +321,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
321
321
|
end
|
322
322
|
add_message "gitaly.SetFullPathResponse" do
|
323
323
|
end
|
324
|
+
add_message "gitaly.FullPathRequest" do
|
325
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
326
|
+
end
|
327
|
+
add_message "gitaly.FullPathResponse" do
|
328
|
+
optional :path, :string, 1
|
329
|
+
end
|
324
330
|
end
|
325
331
|
end
|
326
332
|
|
@@ -412,4 +418,6 @@ module Gitaly
|
|
412
418
|
PruneUnreachableObjectsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PruneUnreachableObjectsResponse").msgclass
|
413
419
|
SetFullPathRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetFullPathRequest").msgclass
|
414
420
|
SetFullPathResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetFullPathResponse").msgclass
|
421
|
+
FullPathRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FullPathRequest").msgclass
|
422
|
+
FullPathResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FullPathResponse").msgclass
|
415
423
|
end
|
@@ -123,6 +123,9 @@ module Gitaly
|
|
123
123
|
# an admin inspects the repository's gitconfig such that he can easily see
|
124
124
|
# what the repository name is.
|
125
125
|
rpc :SetFullPath, ::Gitaly::SetFullPathRequest, ::Gitaly::SetFullPathResponse
|
126
|
+
# FullPath reads the "gitlab.fullpath" configuration from the repository's
|
127
|
+
# gitconfig. Returns an error in case the full path has not been configured.
|
128
|
+
rpc :FullPath, ::Gitaly::FullPathRequest, ::Gitaly::FullPathResponse
|
126
129
|
end
|
127
130
|
|
128
131
|
Stub = Service.rpc_stub_class
|
@@ -19,6 +19,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
19
19
|
optional :key, :bytes, 1
|
20
20
|
optional :value, :bytes, 2
|
21
21
|
end
|
22
|
+
add_message "gitaly.CommitStatInfo" do
|
23
|
+
optional :additions, :int32, 1
|
24
|
+
optional :deletions, :int32, 2
|
25
|
+
optional :changed_files, :int32, 3
|
26
|
+
end
|
22
27
|
add_message "gitaly.GitCommit" do
|
23
28
|
optional :id, :string, 1
|
24
29
|
optional :subject, :bytes, 2
|
@@ -30,6 +35,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
30
35
|
optional :signature_type, :enum, 8, "gitaly.SignatureType"
|
31
36
|
optional :tree_id, :string, 9
|
32
37
|
repeated :trailers, :message, 10, "gitaly.CommitTrailer"
|
38
|
+
optional :short_stats, :message, 11, "gitaly.CommitStatInfo"
|
33
39
|
end
|
34
40
|
add_message "gitaly.CommitAuthor" do
|
35
41
|
optional :name, :bytes, 1
|
@@ -96,6 +102,7 @@ end
|
|
96
102
|
module Gitaly
|
97
103
|
Repository = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Repository").msgclass
|
98
104
|
CommitTrailer = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitTrailer").msgclass
|
105
|
+
CommitStatInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitStatInfo").msgclass
|
99
106
|
GitCommit = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GitCommit").msgclass
|
100
107
|
CommitAuthor = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitAuthor").msgclass
|
101
108
|
ExitStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ExitStatus").msgclass
|
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: 15.
|
4
|
+
version: 15.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: 2022-
|
11
|
+
date: 2022-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
94
|
- !ruby/object:Gem::Version
|
95
95
|
version: 1.3.1
|
96
96
|
requirements: []
|
97
|
-
rubygems_version: 3.
|
97
|
+
rubygems_version: 3.1.6
|
98
98
|
signing_key:
|
99
99
|
specification_version: 4
|
100
100
|
summary: Auto-generated gRPC client for gitaly
|