gitaly-proto 1.7.0 → 1.8.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 +15 -0
- data/ruby/lib/gitaly/commit_services_pb.rb +1 -0
- data/ruby/lib/gitaly/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23a9a193d6d2894dbb37da41a6685cf13468aa7534d946147797972c26e1cce3
|
4
|
+
data.tar.gz: 0dff203c9ddf5b22b11e0783bf3ded4cd68c64004febf53bd009b2287e5b26de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 866efa4aca75ff943f2d9e21e415e8d63e7811ea7c73a7048e134106e3128adbef5043c852e77e99f48be169e06a9b2298c40658611b05f48dd7bc531befce57
|
7
|
+
data.tar.gz: f42ac5b15a7a5caca9b82cdb29e0d8648df9bfb145dd496627a4a9a3a3a09e80617d8373776f00b156acdcfe73754d84a5c1b479b2240c3db9aa67fec5ecec6f
|
@@ -62,6 +62,19 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
62
62
|
add_message "gitaly.CountCommitsResponse" do
|
63
63
|
optional :count, :int32, 1
|
64
64
|
end
|
65
|
+
add_message "gitaly.CountDivergingCommitsRequest" do
|
66
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
67
|
+
optional :from, :bytes, 2
|
68
|
+
optional :to, :bytes, 3
|
69
|
+
optional :after, :message, 4, "google.protobuf.Timestamp"
|
70
|
+
optional :before, :message, 5, "google.protobuf.Timestamp"
|
71
|
+
optional :path, :bytes, 6
|
72
|
+
optional :max_count, :int32, 7
|
73
|
+
end
|
74
|
+
add_message "gitaly.CountDivergingCommitsResponse" do
|
75
|
+
optional :left_count, :int32, 1
|
76
|
+
optional :right_count, :int32, 2
|
77
|
+
end
|
65
78
|
add_message "gitaly.TreeEntry" do
|
66
79
|
optional :oid, :string, 1
|
67
80
|
optional :root_oid, :string, 2
|
@@ -236,6 +249,8 @@ module Gitaly
|
|
236
249
|
CommitsBetweenResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsBetweenResponse").msgclass
|
237
250
|
CountCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountCommitsRequest").msgclass
|
238
251
|
CountCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountCommitsResponse").msgclass
|
252
|
+
CountDivergingCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountDivergingCommitsRequest").msgclass
|
253
|
+
CountDivergingCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountDivergingCommitsResponse").msgclass
|
239
254
|
TreeEntry = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntry").msgclass
|
240
255
|
TreeEntry::EntryType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntry.EntryType").enummodule
|
241
256
|
GetTreeEntriesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTreeEntriesRequest").msgclass
|
@@ -18,6 +18,7 @@ module Gitaly
|
|
18
18
|
rpc :TreeEntry, TreeEntryRequest, stream(TreeEntryResponse)
|
19
19
|
rpc :CommitsBetween, CommitsBetweenRequest, stream(CommitsBetweenResponse)
|
20
20
|
rpc :CountCommits, CountCommitsRequest, CountCommitsResponse
|
21
|
+
rpc :CountDivergingCommits, CountDivergingCommitsRequest, CountDivergingCommitsResponse
|
21
22
|
rpc :GetTreeEntries, GetTreeEntriesRequest, stream(GetTreeEntriesResponse)
|
22
23
|
rpc :ListFiles, ListFilesRequest, stream(ListFilesResponse)
|
23
24
|
rpc :FindCommit, FindCommitRequest, FindCommitResponse
|
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.8.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-01-
|
11
|
+
date: 2019-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|