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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f2cf0df33cff6c2347f174b06106f95cd9937ad1c56e1b65d7f1dcdac25b4641
4
- data.tar.gz: 6267a2266e0ceb4b020a3c8fa5949196dfe9d9b0e4b9d92c57909c155af63b52
3
+ metadata.gz: 23a9a193d6d2894dbb37da41a6685cf13468aa7534d946147797972c26e1cce3
4
+ data.tar.gz: 0dff203c9ddf5b22b11e0783bf3ded4cd68c64004febf53bd009b2287e5b26de
5
5
  SHA512:
6
- metadata.gz: 745ef5c4849dd542e3dd28aa7541d546c07c3d435565d8e0084fa02870aad72033a51f4139bcdc75e8bd4a7aea841becae57a6cf7a160975d967df964118149a
7
- data.tar.gz: 9c73a5460ec42b69d517558d05428b52a707b0717c7af64051ac665a2a09cfafecfb3d8b0cfcb1997641c571e7059323d5fad278f436bc1343aa01b6c50b822a
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
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "1.7.0"
3
+ VERSION = "1.8.0"
4
4
  end
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.7.0
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-02 00:00:00.000000000 Z
11
+ date: 2019-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc