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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 505b682ed327bb84510ae5266a665859f6a94dbf73b9a94d6252a0c4e589b01a
4
- data.tar.gz: c320ca05c570ed8c362691955d7fbd3a78cc076e3848906577515cff5d866a0b
3
+ metadata.gz: 7b4c3e82ea7a334e41b15723cc169037a898bd676175f9ab577828899784152a
4
+ data.tar.gz: 54195d5b4b3df592548bb4a025a95734331ae0a0a5997ded95004093079e0555
5
5
  SHA512:
6
- metadata.gz: e15024d2fcc46f1e9251b2430bfed199a33a4519dc990e5d5ca0e0cd15e47a30ac001ef524430f030e6c554c5a64e3b2dba6f6ff9af4031b4467147173ee5b54
7
- data.tar.gz: b60712edc486a92e23b182e457ac37528a7b8a7f492789f1f123101f37e44853c3f9044b14cb972e65280a8634bbd40473e31c4cc650b912fbcaf3cfd36818bd
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
@@ -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
- # This comment is left unintentionally blank.
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)
@@ -2,5 +2,5 @@
2
2
  # (https://gitlab.com/gitlab-org/release-tools/), and should not be
3
3
  # modified.
4
4
  module Gitaly
5
- VERSION = '15.3.0-rc1'
5
+ VERSION = '15.3.0-rc2'
6
6
  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: 15.3.0.pre.rc1
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-07-27 00:00:00.000000000 Z
11
+ date: 2022-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc