gitaly-proto 0.90.0 → 0.91.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
- SHA256:
3
- metadata.gz: 96cef66fd496b8384e91ebbb63fd0fb4e792bdbcd2060d20935fe04de4be38a3
4
- data.tar.gz: 71fe74a87376c8bc6e4f7287ebdf18e7844ca5a23c1b04730b919a84da894cb4
2
+ SHA1:
3
+ metadata.gz: cb4244aa4c94f52407dc2b13c2e6bd3e20dc2099
4
+ data.tar.gz: 1f600db5f94b1ce4ec748b79487c08bdf9fc760c
5
5
  SHA512:
6
- metadata.gz: e2462d63007139bb3f15bb1c6416424ff2d5162efad7c1144414b27dadbbea966e4f6abbbccd2649ded51814c392d0672a31ba75ea0257d889911a3695ab56bd
7
- data.tar.gz: 262cfa8f2cd74a69a0292d73cc8ed7e170012c7cef564c286f6decbb903fb86a3dd7557bed2b59adfadb5c832b5671ae72ec6d3d55d20afd4f1d2762d4389b9e
6
+ metadata.gz: 87075bc915bf48697a06b88d0807ee775e5c8ac7c882ed17e4b260cc65c7357def3245b42290648d9d9f09d069cd010d33e3bd8e64e7c75d777ccba96f1bdc9a
7
+ data.tar.gz: dd72219fa7f6fd6da95b201c0291b9193aa209557222e9d0606dacce07e9aa026fd28c2d21fe19d991d80e7fe649aeddf8bfbe78be3e48271845898696c0d360
@@ -200,6 +200,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
200
200
  optional :signature, :bytes, 2
201
201
  optional :signed_text, :bytes, 3
202
202
  end
203
+ add_message "gitaly.GetCommitMessagesRequest" do
204
+ optional :repository, :message, 1, "gitaly.Repository"
205
+ repeated :commit_ids, :string, 2
206
+ end
207
+ add_message "gitaly.GetCommitMessagesResponse" do
208
+ optional :commit_id, :string, 1
209
+ optional :message, :bytes, 2
210
+ end
203
211
  end
204
212
 
205
213
  module Gitaly
@@ -244,4 +252,6 @@ module Gitaly
244
252
  ExtractCommitSignatureResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ExtractCommitSignatureResponse").msgclass
245
253
  GetCommitSignaturesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCommitSignaturesRequest").msgclass
246
254
  GetCommitSignaturesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCommitSignaturesResponse").msgclass
255
+ GetCommitMessagesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCommitMessagesRequest").msgclass
256
+ GetCommitMessagesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCommitMessagesResponse").msgclass
247
257
  end
@@ -36,6 +36,7 @@ module Gitaly
36
36
  # full text.
37
37
  rpc :ExtractCommitSignature, ExtractCommitSignatureRequest, stream(ExtractCommitSignatureResponse)
38
38
  rpc :GetCommitSignatures, GetCommitSignaturesRequest, stream(GetCommitSignaturesResponse)
39
+ rpc :GetCommitMessages, GetCommitMessagesRequest, stream(GetCommitMessagesResponse)
39
40
  end
40
41
 
41
42
  Stub = Service.rpc_stub_class
@@ -133,6 +133,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
133
133
  add_message "gitaly.ListTagNamesContainingCommitResponse" do
134
134
  repeated :tag_names, :bytes, 2
135
135
  end
136
+ add_message "gitaly.GetTagMessagesRequest" do
137
+ optional :repository, :message, 1, "gitaly.Repository"
138
+ repeated :tag_names, :bytes, 2
139
+ end
140
+ add_message "gitaly.GetTagMessagesResponse" do
141
+ optional :tag_name, :bytes, 1
142
+ optional :message, :bytes, 2
143
+ end
136
144
  end
137
145
 
138
146
  module Gitaly
@@ -169,4 +177,6 @@ module Gitaly
169
177
  ListBranchNamesContainingCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBranchNamesContainingCommitResponse").msgclass
170
178
  ListTagNamesContainingCommitRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTagNamesContainingCommitRequest").msgclass
171
179
  ListTagNamesContainingCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTagNamesContainingCommitResponse").msgclass
180
+ GetTagMessagesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTagMessagesRequest").msgclass
181
+ GetTagMessagesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTagMessagesResponse").msgclass
172
182
  end
@@ -30,6 +30,7 @@ module Gitaly
30
30
  rpc :DeleteRefs, DeleteRefsRequest, DeleteRefsResponse
31
31
  rpc :ListBranchNamesContainingCommit, ListBranchNamesContainingCommitRequest, stream(ListBranchNamesContainingCommitResponse)
32
32
  rpc :ListTagNamesContainingCommit, ListTagNamesContainingCommitRequest, stream(ListTagNamesContainingCommitResponse)
33
+ rpc :GetTagMessages, GetTagMessagesRequest, stream(GetTagMessagesResponse)
33
34
  end
34
35
 
35
36
  Stub = Service.rpc_stub_class
@@ -19,6 +19,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
19
19
  optional :author, :message, 4, "gitaly.CommitAuthor"
20
20
  optional :committer, :message, 5, "gitaly.CommitAuthor"
21
21
  repeated :parent_ids, :string, 6
22
+ optional :body_size, :int64, 7
22
23
  end
23
24
  add_message "gitaly.CommitAuthor" do
24
25
  optional :name, :bytes, 1
@@ -37,6 +38,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
37
38
  optional :id, :string, 2
38
39
  optional :target_commit, :message, 3, "gitaly.GitCommit"
39
40
  optional :message, :bytes, 4
41
+ optional :message_size, :int64, 5
40
42
  end
41
43
  add_message "gitaly.User" do
42
44
  optional :gl_id, :string, 1
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.90.0"
3
+ VERSION = "0.91.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.90.0
4
+ version: 0.91.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-03-19 00:00:00.000000000 Z
11
+ date: 2018-03-20 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.7.6
104
+ rubygems_version: 2.5.1
105
105
  signing_key:
106
106
  specification_version: 4
107
107
  summary: Auto-generated gRPC client for gitaly