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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8f632636a6d960cc989d42a82c2e59cc69e1b15f
4
- data.tar.gz: 2e1b4fd307358febeecad95ab1c02eee1e806656
3
+ metadata.gz: cd38821bcbbba0243d3b9b8d16c7236d23dd951a
4
+ data.tar.gz: 1a25ecb113ca5966ac14b445dec9f8e70d2eddb8
5
5
  SHA512:
6
- metadata.gz: d5042ac2417afee8e7f1b76d13a899ac2442975f1fb3d11cb95458caf574e0283dd668ef0084186cdb4fd921014ac26723578d916dbe312380c03c0c8d6ffcc1
7
- data.tar.gz: 40514b5dbbff90920c052f2aedd33d14863984e3c7417791236f02a8497970c629e5029e6574efef40a07f2a118da7cf6ec625c6b4e12902a5c1ca3f7e4aa987
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
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.17.0"
3
+ VERSION = "0.18.0"
4
4
  end
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.17.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-14 00:00:00.000000000 Z
11
+ date: 2017-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf