gitaly 0.12.1 → 0.13.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
  SHA1:
3
- metadata.gz: 1268a541077b7584a2af1c54e95b822472355b60
4
- data.tar.gz: 463dd6de7f01677069185cc653dc3319a1d09826
3
+ metadata.gz: 9df2903d1621dd73cc68b98f2c6d31e66bab4876
4
+ data.tar.gz: 55e4e2a13be32ec5d6214f09f037e7738e4a4904
5
5
  SHA512:
6
- metadata.gz: 2bd9a1e4e848172742c2bdd5cfa5379dd556eca14961d8fae6a2494938946e40b753755f45e427c72339d9f3322e1e1614ed411c1190be5b9bab29568207e513
7
- data.tar.gz: dbf47e87c253557428c23bc6f1108b7f897767596c35b24b39c8f30c429134e3aab3a07a559ea6f81d9af6377de368ef92b4c71455ac55af8ff7fd72182d7852
6
+ metadata.gz: fcd1e03bac6db91413c1ece141db4791a7155c7411228379b2fe5c968b0fa42b76834fd68e75078e64f19912ade208dbe69767ff69248eadfd57011754614147
7
+ data.tar.gz: df8e45f20b41d47aa68a0c4aac3ae9329639c9a179e9bbe4bc47533b57136261fc4bc78822ea24339da9811b87aba4ff538a52622d2c51cbab84c8c40423c7fe
@@ -12,6 +12,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
12
12
  add_message "gitaly.GetBlobResponse" do
13
13
  optional :size, :int64, 1
14
14
  optional :data, :bytes, 2
15
+ optional :oid, :string, 3
15
16
  end
16
17
  end
17
18
 
@@ -40,6 +40,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
40
40
  add_message "gitaly.CommitsBetweenResponse" do
41
41
  repeated :commits, :message, 1, "gitaly.GitCommit"
42
42
  end
43
+ add_message "gitaly.CountCommitsRequest" do
44
+ optional :repository, :message, 1, "gitaly.Repository"
45
+ optional :revision, :bytes, 2
46
+ end
47
+ add_message "gitaly.CountCommitsResponse" do
48
+ optional :count, :int32, 1
49
+ end
43
50
  end
44
51
 
45
52
  module Gitaly
@@ -50,4 +57,6 @@ module Gitaly
50
57
  TreeEntryResponse::ObjectType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryResponse.ObjectType").enummodule
51
58
  CommitsBetweenRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsBetweenRequest").msgclass
52
59
  CommitsBetweenResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsBetweenResponse").msgclass
60
+ CountCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountCommitsRequest").msgclass
61
+ CountCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountCommitsResponse").msgclass
53
62
  end
@@ -17,6 +17,7 @@ module Gitaly
17
17
  rpc :CommitIsAncestor, CommitIsAncestorRequest, CommitIsAncestorResponse
18
18
  rpc :TreeEntry, TreeEntryRequest, stream(TreeEntryResponse)
19
19
  rpc :CommitsBetween, CommitsBetweenRequest, stream(CommitsBetweenResponse)
20
+ rpc :CountCommits, CountCommitsRequest, CountCommitsResponse
20
21
  end
21
22
 
22
23
  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.12.1"
3
+ VERSION = "0.13.0"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitaly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.1
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Vosmaer
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
118
  version: '0'
119
119
  requirements: []
120
120
  rubyforge_project:
121
- rubygems_version: 2.6.10
121
+ rubygems_version: 2.5.1
122
122
  signing_key:
123
123
  specification_version: 4
124
124
  summary: Auto-generated gRPC client for gitaly