gitaly-proto 0.121.0 → 0.122.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/ruby/lib/gitaly/operations_pb.rb +16 -0
- data/ruby/lib/gitaly/operations_services_pb.rb +1 -0
- data/ruby/lib/gitaly/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b9eaec47a75567b92f9c2d6a1b8632cf8b72523a
|
4
|
+
data.tar.gz: 9a7b958c68208bcb7cf573960f01a0cece8a2149
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3be19e045a48a59af7c3168ead1744cfa208416cecb4b5ea2fc24b3504dcaa7f1196809845e5032c2b9ba20daa754fc42af4a4fdb73543c7edf03ea5e5cde5d
|
7
|
+
data.tar.gz: 565e22e31a02038e0b759ad7bdb7c742c3c4035a287c47e02299c96446e70039857a38ff36e399cb43823900d7935a6c2cf2c94eb9f431dc2b45a50bf7ceca48
|
@@ -195,6 +195,20 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
195
195
|
add_message "gitaly.UserApplyPatchResponse" do
|
196
196
|
optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
|
197
197
|
end
|
198
|
+
add_message "gitaly.UserUpdateSubmoduleRequest" do
|
199
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
200
|
+
optional :user, :message, 2, "gitaly.User"
|
201
|
+
optional :commit_sha, :string, 3
|
202
|
+
optional :branch, :bytes, 4
|
203
|
+
optional :submodule, :bytes, 5
|
204
|
+
optional :commit_message, :bytes, 6
|
205
|
+
end
|
206
|
+
add_message "gitaly.UserUpdateSubmoduleResponse" do
|
207
|
+
optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
|
208
|
+
optional :pre_receive_error, :string, 2
|
209
|
+
optional :create_tree_error, :string, 3
|
210
|
+
optional :commit_error, :string, 4
|
211
|
+
end
|
198
212
|
end
|
199
213
|
|
200
214
|
module Gitaly
|
@@ -230,4 +244,6 @@ module Gitaly
|
|
230
244
|
UserApplyPatchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserApplyPatchRequest").msgclass
|
231
245
|
UserApplyPatchRequest::Header = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserApplyPatchRequest.Header").msgclass
|
232
246
|
UserApplyPatchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserApplyPatchResponse").msgclass
|
247
|
+
UserUpdateSubmoduleRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserUpdateSubmoduleRequest").msgclass
|
248
|
+
UserUpdateSubmoduleResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserUpdateSubmoduleResponse").msgclass
|
233
249
|
end
|
@@ -27,6 +27,7 @@ module Gitaly
|
|
27
27
|
rpc :UserRebase, UserRebaseRequest, UserRebaseResponse
|
28
28
|
rpc :UserSquash, UserSquashRequest, UserSquashResponse
|
29
29
|
rpc :UserApplyPatch, stream(UserApplyPatchRequest), UserApplyPatchResponse
|
30
|
+
rpc :UserUpdateSubmodule, UserUpdateSubmoduleRequest, UserUpdateSubmoduleResponse
|
30
31
|
end
|
31
32
|
|
32
33
|
Stub = Service.rpc_stub_class
|
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: 0.
|
4
|
+
version: 0.122.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: 2018-10-
|
11
|
+
date: 2018-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -87,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
87
|
version: '0'
|
88
88
|
requirements: []
|
89
89
|
rubyforge_project:
|
90
|
-
rubygems_version: 2.
|
90
|
+
rubygems_version: 2.6.14.3
|
91
91
|
signing_key:
|
92
92
|
specification_version: 4
|
93
93
|
summary: Auto-generated gRPC client for gitaly
|