gitaly 14.9.0.pre.rc5 → 14.10.0.pre.rc1

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: bd0a503006fd395d25e1ee90b6ebbaa33e1af22be68794d76a75bf82c09301ea
4
- data.tar.gz: cc7b5fcca2ff6ad443ade46f3cace9e21f0f32647e107e95cccf8e41d911aea1
3
+ metadata.gz: cc86bd3f4b9d80f96d65e4e4696a9ac510f78aabc53f9ed28e97e5f902f1c6dd
4
+ data.tar.gz: 588fdc7901e9161509f05b5231b8417fdfcb84016dc6c67b132e0e131ba02bfd
5
5
  SHA512:
6
- metadata.gz: 8500e598167820def001038a3c8d58be5f66ed1583c3b11e1b745bb4bd207eea6c9b535bc87d4e115abd28928b0d2148b3b08cec56f3822cac8233cfbedae1d5
7
- data.tar.gz: 1c4a13636563edc210ac8ab4e5dc1b92041420f276bf227627ecac922534ff073e738cfaecd69f64c3377a5228332751a475dac864f859caa0547cada5ab82bd
6
+ metadata.gz: 5ced671c1ebf12507a6d6c09246e87a4e4362e5b1548495d2118030af6c64d37f089e542574d85f8edce04dd671a05797698ef7c3287cfd91cef264cc26643b4
7
+ data.tar.gz: 131a3bba6884a483842fb134d09d389d127ca075de0f3a7ff8e085e8afc8fb2301f11fc8db927bfbaf6abbfe4578e401ff637195f17936120276eccdda189601
@@ -218,6 +218,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
218
218
  optional :repository, :message, 1, "gitaly.Repository"
219
219
  optional :revision, :bytes, 2
220
220
  optional :path, :bytes, 3
221
+ optional :range, :bytes, 4
221
222
  end
222
223
  add_message "gitaly.RawBlameResponse" do
223
224
  optional :data, :bytes, 1
@@ -292,6 +293,17 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
292
293
  optional :commit_id, :string, 1
293
294
  optional :message, :bytes, 2
294
295
  end
296
+ add_message "gitaly.CheckObjectsExistRequest" do
297
+ optional :repository, :message, 1, "gitaly.Repository"
298
+ repeated :revisions, :bytes, 2
299
+ end
300
+ add_message "gitaly.CheckObjectsExistResponse" do
301
+ repeated :revisions, :message, 1, "gitaly.CheckObjectsExistResponse.RevisionExistence"
302
+ end
303
+ add_message "gitaly.CheckObjectsExistResponse.RevisionExistence" do
304
+ optional :name, :bytes, 1
305
+ optional :exists, :bool, 2
306
+ end
295
307
  end
296
308
  end
297
309
 
@@ -352,4 +364,7 @@ module Gitaly
352
364
  GetCommitSignaturesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCommitSignaturesResponse").msgclass
353
365
  GetCommitMessagesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCommitMessagesRequest").msgclass
354
366
  GetCommitMessagesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCommitMessagesResponse").msgclass
367
+ CheckObjectsExistRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CheckObjectsExistRequest").msgclass
368
+ CheckObjectsExistResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CheckObjectsExistResponse").msgclass
369
+ CheckObjectsExistResponse::RevisionExistence = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CheckObjectsExistResponse.RevisionExistence").msgclass
355
370
  end
@@ -42,6 +42,11 @@ module Gitaly
42
42
  rpc :FilterShasWithSignatures, stream(::Gitaly::FilterShasWithSignaturesRequest), stream(::Gitaly::FilterShasWithSignaturesResponse)
43
43
  rpc :GetCommitSignatures, ::Gitaly::GetCommitSignaturesRequest, stream(::Gitaly::GetCommitSignaturesResponse)
44
44
  rpc :GetCommitMessages, ::Gitaly::GetCommitMessagesRequest, stream(::Gitaly::GetCommitMessagesResponse)
45
+ # CheckObjectsExist will check for the existence of revisions against a
46
+ # repository. It returns two sets of data. An array containing the revisions
47
+ # fromm the input that it found on the repository, and an array that contains all
48
+ # revisions from the input it did not find on the repository.
49
+ rpc :CheckObjectsExist, stream(::Gitaly::CheckObjectsExistRequest), stream(::Gitaly::CheckObjectsExistResponse)
45
50
  end
46
51
 
47
52
  Stub = Service.rpc_stub_class
@@ -2,6 +2,7 @@
2
2
  # source: internal.proto
3
3
 
4
4
  require 'lint_pb'
5
+ require 'google/protobuf/timestamp_pb'
5
6
  require 'google/protobuf'
6
7
 
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
@@ -11,6 +12,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
11
12
  end
12
13
  add_message "gitaly.WalkReposResponse" do
13
14
  optional :relative_path, :string, 1
15
+ optional :modification_time, :message, 2, "google.protobuf.Timestamp"
14
16
  end
15
17
  end
16
18
  end
@@ -14,6 +14,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
14
14
  value :UNKNOWN, 0
15
15
  value :MUTATOR, 1
16
16
  value :ACCESSOR, 2
17
+ value :MAINTENANCE, 3
17
18
  end
18
19
  add_enum "gitaly.OperationMsg.Scope" do
19
20
  value :REPOSITORY, 0
@@ -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 = '14.9.0-rc5'
5
+ VERSION = '14.10.0-rc1'
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: 14.9.0.pre.rc5
4
+ version: 14.10.0.pre.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Vosmaer
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-16 00:00:00.000000000 Z
11
+ date: 2022-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc
@@ -79,7 +79,7 @@ homepage: https://gitlab.com/gitlab-org/gitaly
79
79
  licenses:
80
80
  - MIT
81
81
  metadata: {}
82
- post_install_message:
82
+ post_install_message:
83
83
  rdoc_options: []
84
84
  require_paths:
85
85
  - ruby/proto
@@ -94,8 +94,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  - !ruby/object:Gem::Version
95
95
  version: 1.3.1
96
96
  requirements: []
97
- rubygems_version: 3.3.5
98
- signing_key:
97
+ rubygems_version: 3.1.6
98
+ signing_key:
99
99
  specification_version: 4
100
100
  summary: Auto-generated gRPC client for gitaly
101
101
  test_files: []