gitaly-proto 0.86.0 → 0.87.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: a5d3e91403fcfcbce00a0f43594ff4109d1b1bf2
4
- data.tar.gz: 78e544369557bf6a3aa8342b753b13afaceed2c8
3
+ metadata.gz: 746acb307feda6af9a1278dbd4297f761d9e1146
4
+ data.tar.gz: fa60a9dc45ba70c979a00e722b7e40d0c063d9d5
5
5
  SHA512:
6
- metadata.gz: 79b9c1b8b2ef476108ad6e358b62ef210d7b631d6409061a16c345048cf271afedb1e65a17947161039db4f1681be47285569afac1c55f14a6550e45a582e80b
7
- data.tar.gz: a5715986d50e179226790ac0cbebe93658edf106e8c1bbde3f0e1a65b0abc67b94db1e37f715c6e5308ca585ee90f5fe489912a542653b0446a1b08339a5e60b
6
+ metadata.gz: 1dc454405c6fda50d6b10dd18517b6e31b5cee8fe7fc0805ec499ca39cc1b8e2b5d3b43c209d7666e35f8503d668a9524f9192add3848cc042ede8b4fa5ad4c4
7
+ data.tar.gz: 2a848e7946fb4eb5b9df52eab997cc89b7cd47c167aaf860328a9a95d8a873299d8ac6851e6f11b2067f4a9476da2fd91123deb5bee1889d2a6923d3ff807d69
@@ -189,6 +189,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
189
189
  optional :signature, :bytes, 1
190
190
  optional :signed_text, :bytes, 2
191
191
  end
192
+ add_message "gitaly.GetCommitSignaturesRequest" do
193
+ optional :repository, :message, 1, "gitaly.Repository"
194
+ repeated :commit_ids, :string, 2
195
+ end
196
+ add_message "gitaly.GetCommitSignaturesResponse" do
197
+ optional :commit_id, :string, 1
198
+ optional :signature, :bytes, 2
199
+ optional :signed_text, :bytes, 3
200
+ end
192
201
  end
193
202
 
194
203
  module Gitaly
@@ -231,4 +240,6 @@ module Gitaly
231
240
  FilterShasWithSignaturesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FilterShasWithSignaturesResponse").msgclass
232
241
  ExtractCommitSignatureRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ExtractCommitSignatureRequest").msgclass
233
242
  ExtractCommitSignatureResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ExtractCommitSignatureResponse").msgclass
243
+ GetCommitSignaturesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCommitSignaturesRequest").msgclass
244
+ GetCommitSignaturesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCommitSignaturesResponse").msgclass
234
245
  end
@@ -35,6 +35,7 @@ module Gitaly
35
35
  # arbitrarily large and signature verification is impossible without the
36
36
  # full text.
37
37
  rpc :ExtractCommitSignature, ExtractCommitSignatureRequest, stream(ExtractCommitSignatureResponse)
38
+ rpc :GetCommitSignatures, GetCommitSignaturesRequest, stream(GetCommitSignaturesResponse)
38
39
  end
39
40
 
40
41
  Stub = Service.rpc_stub_class
@@ -48,7 +48,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
48
48
  optional :timeout, :int32, 5
49
49
  optional :ssh_key, :string, 6
50
50
  optional :known_hosts, :string, 7
51
- optional :prune, :bool, 8
51
+ optional :no_prune, :bool, 9
52
52
  end
53
53
  add_message "gitaly.FetchRemoteResponse" do
54
54
  end
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.86.0"
3
+ VERSION = "0.87.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.86.0
4
+ version: 0.87.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-02-26 00:00:00.000000000 Z
11
+ date: 2018-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -101,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
101
101
  version: '0'
102
102
  requirements: []
103
103
  rubyforge_project:
104
- rubygems_version: 2.5.2
104
+ rubygems_version: 2.5.1
105
105
  signing_key:
106
106
  specification_version: 4
107
107
  summary: Auto-generated gRPC client for gitaly