gitaly 0.17.0 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ruby/lib/gitaly/commit_pb.rb +18 -0
- data/ruby/lib/gitaly/commit_services_pb.rb +2 -0
- data/ruby/lib/gitaly/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd38821bcbbba0243d3b9b8d16c7236d23dd951a
|
4
|
+
data.tar.gz: 1a25ecb113ca5966ac14b445dec9f8e70d2eddb8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e4db12a5b1dff2e59e34df084b0d0271d9166d394c0960313f7ed28d16936cb199a465fb7c60941b4dbca4a33954ec871d338e6bebecf925f227c77414a1362
|
7
|
+
data.tar.gz: e4f7328e91cd70562e11cee942aeb579dc2ae1ff7aa89d4b7606feb41b33ad0fa4b553b27031dec79a72f1242091e821751154ebc3e8d31d27e82cde045f0804
|
@@ -91,6 +91,21 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
91
91
|
add_message "gitaly.FindCommitResponse" do
|
92
92
|
optional :commit, :message, 1, "gitaly.GitCommit"
|
93
93
|
end
|
94
|
+
add_message "gitaly.FindAllCommitsRequest" do
|
95
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
96
|
+
optional :revision, :bytes, 2
|
97
|
+
optional :max_count, :int32, 3
|
98
|
+
optional :skip, :int32, 4
|
99
|
+
optional :order, :enum, 5, "gitaly.FindAllCommitsRequest.Order"
|
100
|
+
end
|
101
|
+
add_enum "gitaly.FindAllCommitsRequest.Order" do
|
102
|
+
value :NONE, 0
|
103
|
+
value :TOPO, 1
|
104
|
+
value :DATE, 2
|
105
|
+
end
|
106
|
+
add_message "gitaly.FindAllCommitsResponse" do
|
107
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
108
|
+
end
|
94
109
|
end
|
95
110
|
|
96
111
|
module Gitaly
|
@@ -113,4 +128,7 @@ module Gitaly
|
|
113
128
|
ListFilesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListFilesResponse").msgclass
|
114
129
|
FindCommitRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitRequest").msgclass
|
115
130
|
FindCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitResponse").msgclass
|
131
|
+
FindAllCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsRequest").msgclass
|
132
|
+
FindAllCommitsRequest::Order = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsRequest.Order").enummodule
|
133
|
+
FindAllCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsResponse").msgclass
|
116
134
|
end
|
@@ -22,6 +22,8 @@ module Gitaly
|
|
22
22
|
rpc :ListFiles, ListFilesRequest, stream(ListFilesResponse)
|
23
23
|
rpc :FindCommit, FindCommitRequest, FindCommitResponse
|
24
24
|
rpc :CommitStats, CommitStatsRequest, CommitStatsResponse
|
25
|
+
# Use a stream to paginate the result set
|
26
|
+
rpc :FindAllCommits, FindAllCommitsRequest, stream(FindAllCommitsResponse)
|
25
27
|
end
|
26
28
|
|
27
29
|
Stub = Service.rpc_stub_class
|
data/ruby/lib/gitaly/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitaly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.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: 2017-07-
|
11
|
+
date: 2017-07-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|