gitaly-proto 0.120.0 → 0.121.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 7838020c9d62e00b96a4ad14018e54f3ce0dbd83
4
- data.tar.gz: 6d69d6f812ad6318846e0c08748d9ecf6489c338
2
+ SHA256:
3
+ metadata.gz: 715f2d019973a6c413bf3721584844f156a51190d5e8b823b38b08ceb15386af
4
+ data.tar.gz: 487a3abd7e3b01db34ae57515db27dbc6f6abb079dbe60e9038f97c37b2688f4
5
5
  SHA512:
6
- metadata.gz: 9f62c45565cccc1c5f49ea114bf64ba46fbadc54017a88dd1bdb812fe31810b077405dd8c03ba9e42cf6ae12ebfba1eb642d3cc91c5cadca999eb5beeee29b8c
7
- data.tar.gz: 91b360563c4f64297cae5f9c719b3e918c3863474ae0774d5a7f1ae798900dba42f99170338b5168086de1405ee1305ca2d21ad0bb1a91faeebb2811305bfbbb
6
+ metadata.gz: a7b554eae9a17eec766ae097ca050b81f1922b38cf340692da911811eaa65b1d42e8b24c0a5e05d6252fce053d1caa8d5f6e7cf50da31bd6b8ea87902a6b2f1e
7
+ data.tar.gz: aa8620a3c881ad16a0410c418e081b1dc1ac0ad5a0d03bf734f5c681bf5f0806f0b3882e8b0c102bb75a3cd409a28f2e4e885e7b957cc108f995f79f29c12392
@@ -16,10 +16,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
16
16
  optional :max_files, :int32, 8
17
17
  optional :max_lines, :int32, 9
18
18
  optional :max_bytes, :int32, 10
19
+ optional :max_patch_bytes, :int32, 14
19
20
  optional :safe_max_files, :int32, 11
20
21
  optional :safe_max_lines, :int32, 12
21
22
  optional :safe_max_bytes, :int32, 13
22
- optional :max_patch_bytes, :int32, 14
23
23
  end
24
24
  add_message "gitaly.CommitDiffResponse" do
25
25
  optional :from_path, :bytes, 1
@@ -181,6 +181,20 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
181
181
  optional :squash_sha, :string, 1
182
182
  optional :git_error, :string, 3
183
183
  end
184
+ add_message "gitaly.UserApplyPatchRequest" do
185
+ oneof :user_apply_patch_request_payload do
186
+ optional :header, :message, 1, "gitaly.UserApplyPatchRequest.Header"
187
+ optional :patches, :bytes, 2
188
+ end
189
+ end
190
+ add_message "gitaly.UserApplyPatchRequest.Header" do
191
+ optional :repository, :message, 1, "gitaly.Repository"
192
+ optional :user, :message, 2, "gitaly.User"
193
+ optional :target_branch, :bytes, 3
194
+ end
195
+ add_message "gitaly.UserApplyPatchResponse" do
196
+ optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
197
+ end
184
198
  end
185
199
 
186
200
  module Gitaly
@@ -213,4 +227,7 @@ module Gitaly
213
227
  UserRebaseResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseResponse").msgclass
214
228
  UserSquashRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserSquashRequest").msgclass
215
229
  UserSquashResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserSquashResponse").msgclass
230
+ UserApplyPatchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserApplyPatchRequest").msgclass
231
+ UserApplyPatchRequest::Header = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserApplyPatchRequest.Header").msgclass
232
+ UserApplyPatchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserApplyPatchResponse").msgclass
216
233
  end
@@ -26,6 +26,7 @@ module Gitaly
26
26
  rpc :UserCommitFiles, stream(UserCommitFilesRequest), UserCommitFilesResponse
27
27
  rpc :UserRebase, UserRebaseRequest, UserRebaseResponse
28
28
  rpc :UserSquash, UserSquashRequest, UserSquashResponse
29
+ rpc :UserApplyPatch, stream(UserApplyPatchRequest), UserApplyPatchResponse
29
30
  end
30
31
 
31
32
  Stub = Service.rpc_stub_class
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.120.0"
3
+ VERSION = "0.121.0"
4
4
  end
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.120.0
4
+ version: 0.121.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-04 00:00:00.000000000 Z
11
+ date: 2018-10-22 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.6.14.1
90
+ rubygems_version: 2.7.7
91
91
  signing_key:
92
92
  specification_version: 4
93
93
  summary: Auto-generated gRPC client for gitaly