gitaly 0.20.0 → 0.21.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: 5bb808339e364fc1f4c9c627aad0bd4b906d800e
4
- data.tar.gz: 589f4fe6588fd00e50c4abcab8766404cbdc47dd
3
+ metadata.gz: 62b8b817a5ff01df6741625df9d2aecb11b39aa5
4
+ data.tar.gz: 3d3ec4e0e8717e1769205cdec43975f49382dafe
5
5
  SHA512:
6
- metadata.gz: dfabe880441d5aaccfbeb82d3652d859c0406ed83f78e8ae496eb78903febb3ec5325043da3aab1b492791837c9beb81c6edbb6a480d5d43eca5ff9fc9bef1e9
7
- data.tar.gz: 46d79e9e3a254aac98fddc89d986d99476cbe00257e9ead775498a33116a3c68f16b37f0f2e434a47423a5b6e0a80147294977d811b1e1cacee78bd20ea8381f
6
+ metadata.gz: 06153ece4f6cc01e4dca3fd6e46c1a76782c2ca2882f59c8c8efb9386363e6c9699f624309013d5c08f7f71a522a528b0fea7fc1a3dfe2869b2cd1226d29740c
7
+ data.tar.gz: 9c7a9fb00f635d707939669aacce65e527d081b2be64d11a02a90843b9c99702be020b1930a33a813a702ad7a2ec1a2c7be52bad644423c42ef0280bc5763c8b
@@ -66,6 +66,18 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
66
66
  optional :name, :bytes, 1
67
67
  optional :target, :message, 2, "gitaly.GitCommit"
68
68
  end
69
+ add_message "gitaly.FindAllTagsRequest" do
70
+ optional :repository, :message, 1, "gitaly.Repository"
71
+ end
72
+ add_message "gitaly.FindAllTagsResponse" do
73
+ repeated :tags, :message, 1, "gitaly.FindAllTagsResponse.Tag"
74
+ end
75
+ add_message "gitaly.FindAllTagsResponse.Tag" do
76
+ optional :name, :bytes, 1
77
+ optional :id, :string, 2
78
+ optional :target_commit, :message, 3, "gitaly.GitCommit"
79
+ optional :message, :bytes, 4
80
+ end
69
81
  end
70
82
 
71
83
  module Gitaly
@@ -85,4 +97,7 @@ module Gitaly
85
97
  FindAllBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesRequest").msgclass
86
98
  FindAllBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse").msgclass
87
99
  FindAllBranchesResponse::Branch = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse.Branch").msgclass
100
+ FindAllTagsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest").msgclass
101
+ FindAllTagsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsResponse").msgclass
102
+ FindAllTagsResponse::Tag = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsResponse.Tag").msgclass
88
103
  end
@@ -22,6 +22,7 @@ module Gitaly
22
22
  # Return a stream so we can divide the response in chunks of branches
23
23
  rpc :FindLocalBranches, FindLocalBranchesRequest, stream(FindLocalBranchesResponse)
24
24
  rpc :FindAllBranches, FindAllBranchesRequest, stream(FindAllBranchesResponse)
25
+ rpc :FindAllTags, FindAllTagsRequest, stream(FindAllTagsResponse)
25
26
  end
26
27
 
27
28
  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.20.0"
3
+ VERSION = "0.21.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.20.0
4
+ version: 0.21.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-25 00:00:00.000000000 Z
11
+ date: 2017-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -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.5.2
121
+ rubygems_version: 2.5.1
122
122
  signing_key:
123
123
  specification_version: 4
124
124
  summary: Auto-generated gRPC client for gitaly