gitaly-proto 0.69.0 → 0.70.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
2
  SHA1:
3
- metadata.gz: 9272cb4e8f95590ba54d42c7b8ecb4e119adc5e8
4
- data.tar.gz: fdf4e62e053b16b9ccb014a5efe986fc90413fa0
3
+ metadata.gz: 73e90a073e184bad49d713f0b079ccbc0130ac18
4
+ data.tar.gz: eec8500a9a80c07b8824784df3e86402a46a1d18
5
5
  SHA512:
6
- metadata.gz: 2420289e2eea2de9245b5700876b01fa633bb188754b79847f718aad065cb256caaaea178b7b87962ee0ced9f1c27360389f4a99c848515086965ad11f6c408b
7
- data.tar.gz: 48455a75b0f010b58dedcdcda3163ac1c5bb3d0224a7b731b07c5abd79e8fdf9c6b36faaa1bb9cce37c203ef9ce1ef2bb4a1b35950e7d3117ef3fca753f331e0
6
+ metadata.gz: b95af3cefb5db2576a116c465ad7966a02202518f27f6a090d4b16a35b3462be3c3dec1b91b769ea706f9f9b994e4a98071dd1689f05246bbf19c91d06e6cec7
7
+ data.tar.gz: db79a3c090fc025b3c92d596971833090cc56c872a706c597392935dfde53aee1ef8938766de612e9e7efe23d14e59f41e7a8dab2bb9082adbca93374152b1db
@@ -180,6 +180,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
180
180
  add_message "gitaly.FilterShasWithSignaturesResponse" do
181
181
  repeated :shas, :bytes, 1
182
182
  end
183
+ add_message "gitaly.ExtractCommitSignatureRequest" do
184
+ optional :repository, :message, 1, "gitaly.Repository"
185
+ optional :commit_id, :string, 2
186
+ end
187
+ add_message "gitaly.ExtractCommitSignatureResponse" do
188
+ optional :signature, :bytes, 1
189
+ optional :signed_text, :bytes, 2
190
+ end
183
191
  end
184
192
 
185
193
  module Gitaly
@@ -220,4 +228,6 @@ module Gitaly
220
228
  CommitsByMessageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsByMessageResponse").msgclass
221
229
  FilterShasWithSignaturesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FilterShasWithSignaturesRequest").msgclass
222
230
  FilterShasWithSignaturesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FilterShasWithSignaturesResponse").msgclass
231
+ ExtractCommitSignatureRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ExtractCommitSignatureRequest").msgclass
232
+ ExtractCommitSignatureResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ExtractCommitSignatureResponse").msgclass
223
233
  end
@@ -31,6 +31,10 @@ module Gitaly
31
31
  rpc :CommitsByMessage, CommitsByMessageRequest, stream(CommitsByMessageResponse)
32
32
  rpc :ListCommitsByOid, ListCommitsByOidRequest, stream(ListCommitsByOidResponse)
33
33
  rpc :FilterShasWithSignatures, stream(FilterShasWithSignaturesRequest), stream(FilterShasWithSignaturesResponse)
34
+ # ExtractCommitSignature returns a stream because the signed text may be
35
+ # arbitrarily large and signature verification is impossible without the
36
+ # full text.
37
+ rpc :ExtractCommitSignature, ExtractCommitSignatureRequest, stream(ExtractCommitSignatureResponse)
34
38
  end
35
39
 
36
40
  Stub = Service.rpc_stub_class
@@ -137,6 +137,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
137
137
  end
138
138
  add_message "gitaly.UserCommitFilesResponse" do
139
139
  optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
140
+ optional :index_error, :string, 2
140
141
  end
141
142
  add_message "gitaly.UserRebaseRequest" do
142
143
  optional :repository, :message, 1, "gitaly.Repository"
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.69.0"
3
+ VERSION = "0.70.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.69.0
4
+ version: 0.70.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-01-09 00:00:00.000000000 Z
11
+ date: 2018-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
99
  version: '0'
100
100
  requirements: []
101
101
  rubyforge_project:
102
- rubygems_version: 2.5.1
102
+ rubygems_version: 2.5.2
103
103
  signing_key:
104
104
  specification_version: 4
105
105
  summary: Auto-generated gRPC client for gitaly