gitaly 15.3.0.pre.rc1 → 15.3.0.pre.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/errors_pb.rb +4 -0
- data/ruby/proto/gitaly/ref_pb.rb +4 -0
- data/ruby/proto/gitaly/ref_services_pb.rb +3 -1
- 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: 7b4c3e82ea7a334e41b15723cc169037a898bd676175f9ab577828899784152a
|
4
|
+
data.tar.gz: 54195d5b4b3df592548bb4a025a95734331ae0a0a5997ded95004093079e0555
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3825e846335c18403a478b0ece906053fd30bfec655f46b6ae839d737c64b08a5272f060913492db0adbf61aa7c844d797a6385be44a9858b48e77939a8dc34
|
7
|
+
data.tar.gz: 631aefe270f7c69ec9bc89dd6e7d78cc924004967482d8c28f67c16803048db13fd225e0e0331e6050221292063ed1951e02be6256f0335ab73af534aae08b91
|
@@ -31,6 +31,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
31
31
|
optional :reference_name, :bytes, 1
|
32
32
|
optional :oid, :string, 2
|
33
33
|
end
|
34
|
+
add_message "gitaly.ReferenceNotFoundError" do
|
35
|
+
optional :reference_name, :bytes, 1
|
36
|
+
end
|
34
37
|
add_message "gitaly.ReferenceUpdateError" do
|
35
38
|
optional :reference_name, :bytes, 1
|
36
39
|
optional :old_oid, :string, 2
|
@@ -65,6 +68,7 @@ module Gitaly
|
|
65
68
|
MergeConflictError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.MergeConflictError").msgclass
|
66
69
|
ReferencesLockedError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferencesLockedError").msgclass
|
67
70
|
ReferenceExistsError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceExistsError").msgclass
|
71
|
+
ReferenceNotFoundError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceNotFoundError").msgclass
|
68
72
|
ReferenceUpdateError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceUpdateError").msgclass
|
69
73
|
ResolveRevisionError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ResolveRevisionError").msgclass
|
70
74
|
LimitError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LimitError").msgclass
|
data/ruby/proto/gitaly/ref_pb.rb
CHANGED
@@ -73,6 +73,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
73
73
|
add_message "gitaly.FindTagResponse" do
|
74
74
|
optional :tag, :message, 1, "gitaly.Tag"
|
75
75
|
end
|
76
|
+
add_message "gitaly.FindTagError" do
|
77
|
+
optional :tag_not_found, :message, 1, "gitaly.ReferenceNotFoundError"
|
78
|
+
end
|
76
79
|
add_message "gitaly.FindAllTagsRequest" do
|
77
80
|
optional :repository, :message, 1, "gitaly.Repository"
|
78
81
|
optional :sort_by, :message, 2, "gitaly.FindAllTagsRequest.SortBy"
|
@@ -239,6 +242,7 @@ module Gitaly
|
|
239
242
|
FindAllBranchesResponse::Branch = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse.Branch").msgclass
|
240
243
|
FindTagRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagRequest").msgclass
|
241
244
|
FindTagResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagResponse").msgclass
|
245
|
+
FindTagError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagError").msgclass
|
242
246
|
FindAllTagsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest").msgclass
|
243
247
|
FindAllTagsRequest::SortBy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest.SortBy").msgclass
|
244
248
|
FindAllTagsRequest::SortBy::Key = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest.SortBy.Key").enummodule
|
@@ -27,7 +27,9 @@ module Gitaly
|
|
27
27
|
rpc :FindAllBranches, ::Gitaly::FindAllBranchesRequest, stream(::Gitaly::FindAllBranchesResponse)
|
28
28
|
# Returns a stream of tags repository has.
|
29
29
|
rpc :FindAllTags, ::Gitaly::FindAllTagsRequest, stream(::Gitaly::FindAllTagsResponse)
|
30
|
-
#
|
30
|
+
# FindTag looks up a tag by its name and returns it to the caller if it exists. This RPC supports
|
31
|
+
# both lightweight and annotated tags. Note: this RPC returns an `Internal` error if the tag was
|
32
|
+
# not found.
|
31
33
|
rpc :FindTag, ::Gitaly::FindTagRequest, ::Gitaly::FindTagResponse
|
32
34
|
# This comment is left unintentionally blank.
|
33
35
|
rpc :FindAllRemoteBranches, ::Gitaly::FindAllRemoteBranchesRequest, stream(::Gitaly::FindAllRemoteBranchesResponse)
|
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: 15.3.0.pre.
|
4
|
+
version: 15.3.0.pre.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|