gitaly 15.4.4 → 15.5.2

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: 5bcd3996ec22f107da206424a332fbbc0131e3d3fe97e55cfa0bf85be4432e95
4
- data.tar.gz: f180cb187260674d924d2222943fef6ed4aa7e16d69f3a7a8b5c30c7cd1a31e5
3
+ metadata.gz: 073a19664a94837f3c2170b0515fa6b7729ef590bcef921a504b8391396a2b8e
4
+ data.tar.gz: 7170df3ab36f7c65abb8feafe984d7f865bb3d66cc499d7f32c39b084523c1f1
5
5
  SHA512:
6
- metadata.gz: d059560801b139372c7b96aa478f5c7ea03bca83f92b343387c0f114ffb787520c7f227641a094a96189765e139d1256a101bdd0ac603d138f8fccc4524e8343
7
- data.tar.gz: 3e1b8975afe534072a1c4b6b255958a460d9a059074f0343793276739c0bcbfbc35d923c43c016bea2c236f103665f394b19e4fc675c292d3fe15f528b155a57
6
+ metadata.gz: bca940f4beaef687a1aab00c34988b45640263117b6a4ba2118d23469bbc89ad874393f89a3fb3cfb8ad4ef7e6e7e28e6465df8c392471abcdd7f6d022f895f6
7
+ data.tar.gz: '0880492b4905cfcdcc92c564c05b79255fefc4586daa1e12535ec5e1bf74c50878823967a7335706dc059d12c3878a40e3100d2dbf6163482dee2b551d6168cb'
@@ -12,6 +12,19 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
12
12
  optional :user_id, :string, 3
13
13
  optional :changes, :bytes, 4
14
14
  end
15
+ add_message "gitaly.IndexError" do
16
+ optional :path, :bytes, 1
17
+ optional :error_type, :enum, 2, "gitaly.IndexError.ErrorType"
18
+ end
19
+ add_enum "gitaly.IndexError.ErrorType" do
20
+ value :ERROR_TYPE_UNSPECIFIED, 0
21
+ value :ERROR_TYPE_EMPTY_PATH, 1
22
+ value :ERROR_TYPE_INVALID_PATH, 2
23
+ value :ERROR_TYPE_DIRECTORY_EXISTS, 3
24
+ value :ERROR_TYPE_DIRECTORY_TRAVERSAL, 4
25
+ value :ERROR_TYPE_FILE_EXISTS, 5
26
+ value :ERROR_TYPE_FILE_NOT_FOUND, 6
27
+ end
15
28
  add_message "gitaly.InvalidRefFormatError" do
16
29
  repeated :refs, :bytes, 2
17
30
  end
@@ -63,6 +76,8 @@ end
63
76
 
64
77
  module Gitaly
65
78
  AccessCheckError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AccessCheckError").msgclass
79
+ IndexError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IndexError").msgclass
80
+ IndexError::ErrorType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IndexError.ErrorType").enummodule
66
81
  InvalidRefFormatError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.InvalidRefFormatError").msgclass
67
82
  NotAncestorError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.NotAncestorError").msgclass
68
83
  ChangesAlreadyAppliedError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ChangesAlreadyAppliedError").msgclass
@@ -228,6 +228,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
228
228
  optional :index_error, :string, 2
229
229
  optional :pre_receive_error, :string, 3
230
230
  end
231
+ add_message "gitaly.UserCommitFilesError" do
232
+ oneof :error do
233
+ optional :access_check, :message, 1, "gitaly.AccessCheckError"
234
+ optional :index_update, :message, 2, "gitaly.IndexError"
235
+ optional :custom_hook, :message, 3, "gitaly.CustomHookError"
236
+ end
237
+ end
231
238
  add_message "gitaly.UserRebaseConfirmableRequest" do
232
239
  oneof :user_rebase_confirmable_request_payload do
233
240
  optional :header, :message, 1, "gitaly.UserRebaseConfirmableRequest.Header"
@@ -344,6 +351,7 @@ module Gitaly
344
351
  UserCommitFilesRequestHeader = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesRequestHeader").msgclass
345
352
  UserCommitFilesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesRequest").msgclass
346
353
  UserCommitFilesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesResponse").msgclass
354
+ UserCommitFilesError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesError").msgclass
347
355
  UserRebaseConfirmableRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableRequest").msgclass
348
356
  UserRebaseConfirmableRequest::Header = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableRequest.Header").msgclass
349
357
  UserRebaseConfirmableResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableResponse").msgclass
@@ -267,6 +267,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
267
267
  optional :query, :string, 2
268
268
  optional :ref, :bytes, 3
269
269
  optional :filter, :string, 4
270
+ optional :limit, :uint32, 5
271
+ optional :offset, :uint32, 6
270
272
  end
271
273
  add_message "gitaly.SearchFilesByNameResponse" do
272
274
  repeated :files, :bytes, 1
@@ -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.4.4'
5
+ VERSION = '15.5.2'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitaly
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.4.4
4
+ version: 15.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Vosmaer