gitaly 14.9.0.pre.rc3 → 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: fc1cef4aa11ae58532423a633aeedb6b6637bcebb564ce94a73bd4fbda1ee9d4
4
- data.tar.gz: 5dba9ccc9680856018093bbfab334fd7001ab7bb33324b978446623e661ee48f
3
+ metadata.gz: cc86bd3f4b9d80f96d65e4e4696a9ac510f78aabc53f9ed28e97e5f902f1c6dd
4
+ data.tar.gz: 588fdc7901e9161509f05b5231b8417fdfcb84016dc6c67b132e0e131ba02bfd
5
5
  SHA512:
6
- metadata.gz: 2d77bb48de22f01f09d7e7b7ba81a1a79bd0987a603b3c80e26a449ec1b6b3e801d25fcd0e445c340c3840266d0c0244ed8e631e7048f1ffaed7722f85ce1482
7
- data.tar.gz: e8496922c6501b90149720a07b0753c5eaf000206efcae6d755bffa415b1da6a8ed0063a87727348d877790410efdc8ed94be1f22850c5c6a3c02ecc80ebdb87
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
@@ -238,6 +238,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
238
238
  optional :squash_sha, :string, 1
239
239
  optional :git_error, :string, 3
240
240
  end
241
+ add_message "gitaly.UserRebaseConfirmableError" do
242
+ oneof :error do
243
+ optional :rebase_conflict, :message, 1, "gitaly.MergeConflictError"
244
+ optional :access_check, :message, 2, "gitaly.AccessCheckError"
245
+ end
246
+ end
241
247
  add_message "gitaly.UserSquashError" do
242
248
  oneof :error do
243
249
  optional :resolve_revision, :message, 1, "gitaly.ResolveRevisionError"
@@ -312,6 +318,7 @@ module Gitaly
312
318
  UserRebaseConfirmableResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableResponse").msgclass
313
319
  UserSquashRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserSquashRequest").msgclass
314
320
  UserSquashResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserSquashResponse").msgclass
321
+ UserRebaseConfirmableError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableError").msgclass
315
322
  UserSquashError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserSquashError").msgclass
316
323
  UserApplyPatchRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserApplyPatchRequest").msgclass
317
324
  UserApplyPatchRequest::Header = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserApplyPatchRequest.Header").msgclass
@@ -156,6 +156,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
156
156
  optional :url, :string, 2
157
157
  optional :http_host, :string, 3
158
158
  optional :http_authorization_header, :string, 4
159
+ optional :mirror, :bool, 5
159
160
  end
160
161
  add_message "gitaly.CreateRepositoryFromURLResponse" do
161
162
  end
@@ -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-rc3'
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.rc3
4
+ version: 14.10.0.pre.rc1
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-03-09 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