gitaly-proto 1.36.0 → 1.37.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/lib/gitaly/commit_pb.rb +9 -0
- data/ruby/lib/gitaly/commit_services_pb.rb +1 -0
- data/ruby/lib/gitaly/version.rb +2 -2
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '04458dfb8eb51cfc44b37e5798492facf86afdcb240e02994d32b12dc8dac305'
|
4
|
+
data.tar.gz: 9fbe331688ff15be3ee4df5c7b7e1531c29cadce03fa8c09b8bb7b34c0ca0029
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ee2fe68607c5a233e4a21363e5c4fe829002537685302aebcc00784328f586ee9eb38e2b7bb74f4a5a43547dd7156c92d9b5bfca242c3c0956b8703df8823fc
|
7
|
+
data.tar.gz: 3ae1b215f7fd0e241627fcc94bdd000ec0c55a05dd9f67d5268b6a9cf31ddb8839514efe32837e8146098a77f0ea922f981e94e8cff9ae271bd7964e126a2b10
|
@@ -116,6 +116,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
116
116
|
add_message "gitaly.ListCommitsByOidResponse" do
|
117
117
|
repeated :commits, :message, 1, "gitaly.GitCommit"
|
118
118
|
end
|
119
|
+
add_message "gitaly.ListCommitsByRefNameRequest" do
|
120
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
121
|
+
repeated :ref_names, :bytes, 2
|
122
|
+
end
|
123
|
+
add_message "gitaly.ListCommitsByRefNameResponse" do
|
124
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
125
|
+
end
|
119
126
|
add_message "gitaly.FindAllCommitsRequest" do
|
120
127
|
optional :repository, :message, 1, "gitaly.Repository"
|
121
128
|
optional :revision, :bytes, 2
|
@@ -258,6 +265,8 @@ module Gitaly
|
|
258
265
|
FindCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitResponse").msgclass
|
259
266
|
ListCommitsByOidRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByOidRequest").msgclass
|
260
267
|
ListCommitsByOidResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByOidResponse").msgclass
|
268
|
+
ListCommitsByRefNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByRefNameRequest").msgclass
|
269
|
+
ListCommitsByRefNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByRefNameResponse").msgclass
|
261
270
|
FindAllCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsRequest").msgclass
|
262
271
|
FindAllCommitsRequest::Order = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsRequest.Order").enummodule
|
263
272
|
FindAllCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsResponse").msgclass
|
@@ -32,6 +32,7 @@ module Gitaly
|
|
32
32
|
rpc :ListLastCommitsForTree, ListLastCommitsForTreeRequest, stream(ListLastCommitsForTreeResponse)
|
33
33
|
rpc :CommitsByMessage, CommitsByMessageRequest, stream(CommitsByMessageResponse)
|
34
34
|
rpc :ListCommitsByOid, ListCommitsByOidRequest, stream(ListCommitsByOidResponse)
|
35
|
+
rpc :ListCommitsByRefName, ListCommitsByRefNameRequest, stream(ListCommitsByRefNameResponse)
|
35
36
|
rpc :FilterShasWithSignatures, stream(FilterShasWithSignaturesRequest), stream(FilterShasWithSignaturesResponse)
|
36
37
|
# ExtractCommitSignature returns a stream because the signed text may be
|
37
38
|
# arbitrarily large and signature verification is impossible without the
|
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: 1.
|
4
|
+
version: 1.37.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: 2019-
|
11
|
+
date: 2019-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -90,7 +90,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
90
|
- !ruby/object:Gem::Version
|
91
91
|
version: '0'
|
92
92
|
requirements: []
|
93
|
-
|
93
|
+
rubyforge_project:
|
94
|
+
rubygems_version: 2.7.6
|
94
95
|
signing_key:
|
95
96
|
specification_version: 4
|
96
97
|
summary: Auto-generated gRPC client for gitaly
|