gitaly-proto 0.117.0 → 0.118.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/commit_pb.rb +17 -0
- data/ruby/lib/gitaly/commit_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
|
+
SHA256:
|
3
|
+
metadata.gz: 7dd54b1f12580c1f8cbce95e23f75ccf33a66def8425dc5157bf79d3942a912f
|
4
|
+
data.tar.gz: 690af71e5f9c36334cf63dfa689c8389a213e5b77a2dbb552a62035704bdce62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bb274d3e846f75e8d1bfc49ae9913ebf22bfb7bb4471821340b267a4a33fe8fa292f1a3fd90d572d5d0b7987f17a7b00cc7b0b8251d08399dbb6ac997fc1e83
|
7
|
+
data.tar.gz: 11e6b1ccc94a791e8aa97e6f9a53b0a3f01f1d1320fc55dcb18e2754581131128b3a70d25cb7d8343cc7c4b12ef78447ce18977db0a585c610a88f8a9f0dc336
|
@@ -165,6 +165,20 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
165
165
|
add_message "gitaly.LastCommitForPathResponse" do
|
166
166
|
optional :commit, :message, 1, "gitaly.GitCommit"
|
167
167
|
end
|
168
|
+
add_message "gitaly.ListLastCommitsForTreeRequest" do
|
169
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
170
|
+
optional :revision, :string, 2
|
171
|
+
optional :path, :bytes, 3
|
172
|
+
optional :limit, :int32, 4
|
173
|
+
optional :offset, :int32, 5
|
174
|
+
end
|
175
|
+
add_message "gitaly.ListLastCommitsForTreeResponse" do
|
176
|
+
repeated :commits, :message, 1, "gitaly.ListLastCommitsForTreeResponse.CommitForTree"
|
177
|
+
end
|
178
|
+
add_message "gitaly.ListLastCommitsForTreeResponse.CommitForTree" do
|
179
|
+
optional :revision, :string, 1
|
180
|
+
optional :commit, :message, 2, "gitaly.GitCommit"
|
181
|
+
end
|
168
182
|
add_message "gitaly.CommitsByMessageRequest" do
|
169
183
|
optional :repository, :message, 1, "gitaly.Repository"
|
170
184
|
optional :revision, :bytes, 2
|
@@ -244,6 +258,9 @@ module Gitaly
|
|
244
258
|
RawBlameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawBlameResponse").msgclass
|
245
259
|
LastCommitForPathRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LastCommitForPathRequest").msgclass
|
246
260
|
LastCommitForPathResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LastCommitForPathResponse").msgclass
|
261
|
+
ListLastCommitsForTreeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListLastCommitsForTreeRequest").msgclass
|
262
|
+
ListLastCommitsForTreeResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListLastCommitsForTreeResponse").msgclass
|
263
|
+
ListLastCommitsForTreeResponse::CommitForTree = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListLastCommitsForTreeResponse.CommitForTree").msgclass
|
247
264
|
CommitsByMessageRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsByMessageRequest").msgclass
|
248
265
|
CommitsByMessageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsByMessageResponse").msgclass
|
249
266
|
FilterShasWithSignaturesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FilterShasWithSignaturesRequest").msgclass
|
@@ -28,6 +28,7 @@ module Gitaly
|
|
28
28
|
rpc :CommitLanguages, CommitLanguagesRequest, CommitLanguagesResponse
|
29
29
|
rpc :RawBlame, RawBlameRequest, stream(RawBlameResponse)
|
30
30
|
rpc :LastCommitForPath, LastCommitForPathRequest, LastCommitForPathResponse
|
31
|
+
rpc :ListLastCommitsForTree, ListLastCommitsForTreeRequest, stream(ListLastCommitsForTreeResponse)
|
31
32
|
rpc :CommitsByMessage, CommitsByMessageRequest, stream(CommitsByMessageResponse)
|
32
33
|
rpc :ListCommitsByOid, ListCommitsByOidRequest, stream(ListCommitsByOidResponse)
|
33
34
|
rpc :FilterShasWithSignatures, stream(FilterShasWithSignaturesRequest), stream(FilterShasWithSignaturesResponse)
|
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.118.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-09-
|
11
|
+
date: 2018-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -103,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
103
|
version: '0'
|
104
104
|
requirements: []
|
105
105
|
rubyforge_project:
|
106
|
-
rubygems_version: 2.
|
106
|
+
rubygems_version: 2.7.7
|
107
107
|
signing_key:
|
108
108
|
specification_version: 4
|
109
109
|
summary: Auto-generated gRPC client for gitaly
|