gitaly 15.4.0.pre.rc1 → 15.5.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ccf26dc90b45e5875dc8425167f483098b0e9c560a4e57da9cb17a5382149ddb
|
4
|
+
data.tar.gz: a00a6619034d0cdba2c616ec00136194d63eb661c2cb34e340a6810938d5acaa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 784b20d55c971e74f5fc9d8c2410a7f756b75df014666a6ee4c5a04998fc23f05d960c801cab690f9f957ba9f2abc6a599c611a9d35dbb8d8dcb4651628f0a91
|
7
|
+
data.tar.gz: 286ae26346f458b4f237d00ea8417e960b2f45c6b51aa49be1d6fe53d472a06db9ca89212e0483514c67768524638e032b34156b98c9c49df22c045c667227b4
|
@@ -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
|
@@ -19,6 +19,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
19
19
|
optional :branch, :message, 1, "gitaly.Branch"
|
20
20
|
optional :pre_receive_error, :string, 2
|
21
21
|
end
|
22
|
+
add_message "gitaly.UserCreateBranchError" do
|
23
|
+
oneof :error do
|
24
|
+
optional :custom_hook, :message, 1, "gitaly.CustomHookError"
|
25
|
+
end
|
26
|
+
end
|
22
27
|
add_message "gitaly.UserUpdateBranchRequest" do
|
23
28
|
optional :repository, :message, 1, "gitaly.Repository"
|
24
29
|
optional :branch_name, :bytes, 2
|
@@ -223,6 +228,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
223
228
|
optional :index_error, :string, 2
|
224
229
|
optional :pre_receive_error, :string, 3
|
225
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
|
226
238
|
add_message "gitaly.UserRebaseConfirmableRequest" do
|
227
239
|
oneof :user_rebase_confirmable_request_payload do
|
228
240
|
optional :header, :message, 1, "gitaly.UserRebaseConfirmableRequest.Header"
|
@@ -307,6 +319,7 @@ end
|
|
307
319
|
module Gitaly
|
308
320
|
UserCreateBranchRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCreateBranchRequest").msgclass
|
309
321
|
UserCreateBranchResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCreateBranchResponse").msgclass
|
322
|
+
UserCreateBranchError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCreateBranchError").msgclass
|
310
323
|
UserUpdateBranchRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserUpdateBranchRequest").msgclass
|
311
324
|
UserUpdateBranchResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserUpdateBranchResponse").msgclass
|
312
325
|
UserDeleteBranchRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserDeleteBranchRequest").msgclass
|
@@ -338,6 +351,7 @@ module Gitaly
|
|
338
351
|
UserCommitFilesRequestHeader = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesRequestHeader").msgclass
|
339
352
|
UserCommitFilesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesRequest").msgclass
|
340
353
|
UserCommitFilesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesResponse").msgclass
|
354
|
+
UserCommitFilesError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesError").msgclass
|
341
355
|
UserRebaseConfirmableRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableRequest").msgclass
|
342
356
|
UserRebaseConfirmableRequest::Header = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableRequest.Header").msgclass
|
343
357
|
UserRebaseConfirmableResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRebaseConfirmableResponse").msgclass
|
data/ruby/proto/gitaly/ref_pb.rb
CHANGED
@@ -39,6 +39,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
39
39
|
end
|
40
40
|
add_message "gitaly.FindLocalBranchesResponse" do
|
41
41
|
repeated :branches, :message, 1, "gitaly.FindLocalBranchResponse"
|
42
|
+
repeated :local_branches, :message, 2, "gitaly.Branch"
|
42
43
|
end
|
43
44
|
add_message "gitaly.FindLocalBranchResponse" do
|
44
45
|
optional :name, :bytes, 1
|
@@ -265,6 +265,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
265
265
|
optional :query, :string, 2
|
266
266
|
optional :ref, :bytes, 3
|
267
267
|
optional :filter, :string, 4
|
268
|
+
optional :limit, :uint32, 5
|
269
|
+
optional :offset, :uint32, 6
|
268
270
|
end
|
269
271
|
add_message "gitaly.SearchFilesByNameResponse" do
|
270
272
|
repeated :files, :bytes, 1
|
@@ -34,7 +34,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
34
34
|
end
|
35
35
|
add_message "gitaly.ClockSyncedRequest" do
|
36
36
|
optional :ntp_host, :string, 1
|
37
|
-
optional :drift_threshold_millis, :int64, 2
|
38
37
|
optional :drift_threshold, :message, 3, "google.protobuf.Duration"
|
39
38
|
end
|
40
39
|
add_message "gitaly.ClockSyncedResponse" do
|
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.
|
4
|
+
version: 15.5.0
|
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-
|
11
|
+
date: 2022-10-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -90,9 +90,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
90
90
|
version: '0'
|
91
91
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
92
|
requirements:
|
93
|
-
- - "
|
93
|
+
- - ">="
|
94
94
|
- !ruby/object:Gem::Version
|
95
|
-
version:
|
95
|
+
version: '0'
|
96
96
|
requirements: []
|
97
97
|
rubygems_version: 3.1.6
|
98
98
|
signing_key:
|