gitaly-proto 1.26.0 → 1.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/lib/gitaly/cleanup_pb.rb +22 -0
- data/ruby/lib/gitaly/cleanup_services_pb.rb +3 -0
- data/ruby/lib/gitaly/operations_pb.rb +26 -0
- data/ruby/lib/gitaly/operations_services_pb.rb +1 -0
- data/ruby/lib/gitaly/shared_pb.rb +8 -0
- data/ruby/lib/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: 34e033ca5647a57189bf4fe9fbb94c6949fa953c34f52daa0c055554dec5c0c9
|
4
|
+
data.tar.gz: e1870a1bd30cb79d980666c2884fa88e43f296dc0102605de436253ccb803b16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92f6406cb818e1225fc96220a33a4550d170c04e0124417258f16866bf64c8a98dc161d62de4a8458ea0e1345cfa9cbafbb98cb9d727729fd35d737ba02e6869
|
7
|
+
data.tar.gz: 1808632e2589495c001e0bd5caa0668ff8fb43749bfbe406cdbc199915c90aaed858d5994704b37e884914db2b12ec18f74f0576da984043f2e712f231b20604
|
@@ -11,9 +11,31 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
11
11
|
end
|
12
12
|
add_message "gitaly.ApplyBfgObjectMapResponse" do
|
13
13
|
end
|
14
|
+
add_message "gitaly.ApplyBfgObjectMapStreamRequest" do
|
15
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
16
|
+
optional :object_map, :bytes, 2
|
17
|
+
end
|
18
|
+
add_message "gitaly.ApplyBfgObjectMapStreamResponse" do
|
19
|
+
repeated :entries, :message, 1, "gitaly.ApplyBfgObjectMapStreamResponse.Entry"
|
20
|
+
end
|
21
|
+
add_message "gitaly.ApplyBfgObjectMapStreamResponse.Entry" do
|
22
|
+
optional :type, :enum, 1, "gitaly.ObjectType"
|
23
|
+
optional :old_oid, :string, 2
|
24
|
+
optional :new_oid, :string, 3
|
25
|
+
end
|
26
|
+
add_message "gitaly.CloseSessionRequest" do
|
27
|
+
optional :session_id, :string, 1
|
28
|
+
end
|
29
|
+
add_message "gitaly.CloseSessionResponse" do
|
30
|
+
end
|
14
31
|
end
|
15
32
|
|
16
33
|
module Gitaly
|
17
34
|
ApplyBfgObjectMapRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyBfgObjectMapRequest").msgclass
|
18
35
|
ApplyBfgObjectMapResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyBfgObjectMapResponse").msgclass
|
36
|
+
ApplyBfgObjectMapStreamRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyBfgObjectMapStreamRequest").msgclass
|
37
|
+
ApplyBfgObjectMapStreamResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyBfgObjectMapStreamResponse").msgclass
|
38
|
+
ApplyBfgObjectMapStreamResponse::Entry = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyBfgObjectMapStreamResponse.Entry").msgclass
|
39
|
+
CloseSessionRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloseSessionRequest").msgclass
|
40
|
+
CloseSessionResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloseSessionResponse").msgclass
|
19
41
|
end
|
@@ -14,7 +14,10 @@ module Gitaly
|
|
14
14
|
self.unmarshal_class_method = :decode
|
15
15
|
self.service_name = 'gitaly.CleanupService'
|
16
16
|
|
17
|
+
# Deprecated in favour of ApplyBfgObjectMapStream
|
17
18
|
rpc :ApplyBfgObjectMap, stream(ApplyBfgObjectMapRequest), ApplyBfgObjectMapResponse
|
19
|
+
rpc :ApplyBfgObjectMapStream, stream(ApplyBfgObjectMapStreamRequest), stream(ApplyBfgObjectMapStreamResponse)
|
20
|
+
rpc :CloseSession, CloseSessionRequest, CloseSessionResponse
|
18
21
|
end
|
19
22
|
|
20
23
|
Stub = Service.rpc_stub_class
|
@@ -181,6 +181,29 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
181
181
|
optional :pre_receive_error, :string, 2
|
182
182
|
optional :git_error, :string, 3
|
183
183
|
end
|
184
|
+
add_message "gitaly.UserRebaseConfirmableRequest" do
|
185
|
+
oneof :user_rebase_confirmable_request_payload do
|
186
|
+
optional :header, :message, 1, "gitaly.UserRebaseConfirmableRequest.Header"
|
187
|
+
optional :apply, :bool, 2
|
188
|
+
end
|
189
|
+
end
|
190
|
+
add_message "gitaly.UserRebaseConfirmableRequest.Header" do
|
191
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
192
|
+
optional :user, :message, 2, "gitaly.User"
|
193
|
+
optional :rebase_id, :string, 3
|
194
|
+
optional :branch, :bytes, 4
|
195
|
+
optional :branch_sha, :string, 5
|
196
|
+
optional :remote_repository, :message, 6, "gitaly.Repository"
|
197
|
+
optional :remote_branch, :bytes, 7
|
198
|
+
end
|
199
|
+
add_message "gitaly.UserRebaseConfirmableResponse" do
|
200
|
+
optional :pre_receive_error, :string, 3
|
201
|
+
optional :git_error, :string, 4
|
202
|
+
oneof :user_rebase_confirmable_response_payload do
|
203
|
+
optional :rebase_sha, :string, 1
|
204
|
+
optional :rebase_applied, :bool, 2
|
205
|
+
end
|
206
|
+
end
|
184
207
|
add_message "gitaly.UserSquashRequest" do
|
185
208
|
optional :repository, :message, 1, "gitaly.Repository"
|
186
209
|
optional :user, :message, 2, "gitaly.User"
|
@@ -254,6 +277,9 @@ module Gitaly
|
|
254
277
|
UserCommitFilesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesResponse").msgclass
|
255
278
|
UserRebaseRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseRequest").msgclass
|
256
279
|
UserRebaseResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseResponse").msgclass
|
280
|
+
UserRebaseConfirmableRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableRequest").msgclass
|
281
|
+
UserRebaseConfirmableRequest::Header = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableRequest.Header").msgclass
|
282
|
+
UserRebaseConfirmableResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableResponse").msgclass
|
257
283
|
UserSquashRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserSquashRequest").msgclass
|
258
284
|
UserSquashResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserSquashResponse").msgclass
|
259
285
|
UserApplyPatchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserApplyPatchRequest").msgclass
|
@@ -25,6 +25,7 @@ module Gitaly
|
|
25
25
|
rpc :UserCherryPick, UserCherryPickRequest, UserCherryPickResponse
|
26
26
|
rpc :UserCommitFiles, stream(UserCommitFilesRequest), UserCommitFilesResponse
|
27
27
|
rpc :UserRebase, UserRebaseRequest, UserRebaseResponse
|
28
|
+
rpc :UserRebaseConfirmable, stream(UserRebaseConfirmableRequest), stream(UserRebaseConfirmableResponse)
|
28
29
|
rpc :UserRevert, UserRevertRequest, UserRevertResponse
|
29
30
|
rpc :UserSquash, UserSquashRequest, UserSquashResponse
|
30
31
|
rpc :UserApplyPatch, stream(UserApplyPatchRequest), UserApplyPatchResponse
|
@@ -59,6 +59,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
59
59
|
add_message "gitaly.ObjectPool" do
|
60
60
|
optional :repository, :message, 1, "gitaly.Repository"
|
61
61
|
end
|
62
|
+
add_enum "gitaly.ObjectType" do
|
63
|
+
value :UNKNOWN, 0
|
64
|
+
value :COMMIT, 1
|
65
|
+
value :BLOB, 2
|
66
|
+
value :TREE, 3
|
67
|
+
value :TAG, 4
|
68
|
+
end
|
62
69
|
end
|
63
70
|
|
64
71
|
module Gitaly
|
@@ -72,4 +79,5 @@ module Gitaly
|
|
72
79
|
Tag = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Tag").msgclass
|
73
80
|
User = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.User").msgclass
|
74
81
|
ObjectPool = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectPool").msgclass
|
82
|
+
ObjectType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectType").enummodule
|
75
83
|
end
|
data/ruby/lib/gitaly/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitaly-proto
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.27.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-04-
|
11
|
+
date: 2019-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|