gitaly 15.4.4 → 15.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/errors_pb.rb +15 -0
- data/ruby/proto/gitaly/operations_pb.rb +8 -0
- data/ruby/proto/gitaly/repository_pb.rb +2 -0
- data/ruby/proto/gitaly/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 073a19664a94837f3c2170b0515fa6b7729ef590bcef921a504b8391396a2b8e
|
4
|
+
data.tar.gz: 7170df3ab36f7c65abb8feafe984d7f865bb3d66cc499d7f32c39b084523c1f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|