gitaly 1.59.2 → 1.60.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 +4 -4
- data/ruby/proto/gitaly/ref_pb.rb +9 -0
- data/ruby/proto/gitaly/ref_services_pb.rb +1 -0
- data/ruby/proto/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: 87f71d3dd8d39e0fa6f66cac27a4a11559d3767f74bf57e58ddab180c9d431ed
|
4
|
+
data.tar.gz: 9c57c2a2932ce520987e067aa2509005c24b10bc2d54e0517e7d1dba5e6e36aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6870c5ffcd58065cf501069eee30aa4cb9de16384d770cc07ff927cab407c593bb92eeb2fceb77e89f1490d461c2155eb0e8041e8cdb1f0a66688dd9ba73eb9
|
7
|
+
data.tar.gz: 39074dd7f0bd9f2947fbe85dd1ff8d585bb3cec6dc3633fd2fd8d50eb23143b4f883b46f9798b4eac2b549b7863e2d3c698fe8a52f437202af32a58591c08d6f
|
data/ruby/proto/gitaly/ref_pb.rb
CHANGED
@@ -77,6 +77,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
77
77
|
optional :name, :bytes, 1
|
78
78
|
optional :target, :message, 2, "gitaly.GitCommit"
|
79
79
|
end
|
80
|
+
add_message "gitaly.FindTagRequest" do
|
81
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
82
|
+
optional :tag_name, :bytes, 2
|
83
|
+
end
|
84
|
+
add_message "gitaly.FindTagResponse" do
|
85
|
+
optional :tag, :message, 1, "gitaly.Tag"
|
86
|
+
end
|
80
87
|
add_message "gitaly.FindAllTagsRequest" do
|
81
88
|
optional :repository, :message, 1, "gitaly.Repository"
|
82
89
|
end
|
@@ -191,6 +198,8 @@ module Gitaly
|
|
191
198
|
FindAllBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesRequest").msgclass
|
192
199
|
FindAllBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse").msgclass
|
193
200
|
FindAllBranchesResponse::Branch = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse.Branch").msgclass
|
201
|
+
FindTagRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagRequest").msgclass
|
202
|
+
FindTagResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagResponse").msgclass
|
194
203
|
FindAllTagsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest").msgclass
|
195
204
|
FindAllTagsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsResponse").msgclass
|
196
205
|
RefExistsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsRequest").msgclass
|
@@ -23,6 +23,7 @@ module Gitaly
|
|
23
23
|
rpc :FindLocalBranches, FindLocalBranchesRequest, stream(FindLocalBranchesResponse)
|
24
24
|
rpc :FindAllBranches, FindAllBranchesRequest, stream(FindAllBranchesResponse)
|
25
25
|
rpc :FindAllTags, FindAllTagsRequest, stream(FindAllTagsResponse)
|
26
|
+
rpc :FindTag, FindTagRequest, FindTagResponse
|
26
27
|
rpc :FindAllRemoteBranches, FindAllRemoteBranchesRequest, stream(FindAllRemoteBranchesResponse)
|
27
28
|
rpc :RefExists, RefExistsRequest, RefExistsResponse
|
28
29
|
rpc :CreateBranch, CreateBranchRequest, CreateBranchResponse
|
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: 1.
|
4
|
+
version: 1.60.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-08-
|
11
|
+
date: 2019-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|