gitaly 15.4.4 → 15.5.0
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
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
|
|
@@ -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
|
|
@@ -19,7 +19,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
19
19
|
optional :url, :string, 1
|
|
20
20
|
optional :http_authorization_header, :string, 2
|
|
21
21
|
optional :http_host, :string, 3
|
|
22
|
-
optional :resolved_address, :string, 4
|
|
23
22
|
end
|
|
24
23
|
add_message "gitaly.UpdateRemoteMirrorResponse" do
|
|
25
24
|
repeated :divergent_refs, :bytes, 1
|
|
@@ -36,7 +35,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
36
35
|
optional :remote_url, :string, 3
|
|
37
36
|
optional :http_authorization_header, :string, 4
|
|
38
37
|
optional :http_host, :string, 5
|
|
39
|
-
optional :resolved_address, :string, 6
|
|
40
38
|
end
|
|
41
39
|
add_message "gitaly.FindRemoteRootRefResponse" do
|
|
42
40
|
optional :ref, :string, 1
|
|
@@ -157,7 +157,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
157
157
|
optional :http_host, :string, 3
|
|
158
158
|
optional :http_authorization_header, :string, 4
|
|
159
159
|
optional :mirror, :bool, 5
|
|
160
|
-
optional :resolved_address, :string, 6
|
|
161
160
|
end
|
|
162
161
|
add_message "gitaly.CreateRepositoryFromURLResponse" do
|
|
163
162
|
end
|
|
@@ -231,7 +230,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
231
230
|
optional :http_url, :string, 2
|
|
232
231
|
optional :http_auth, :string, 3
|
|
233
232
|
optional :http_host, :string, 4
|
|
234
|
-
optional :resolved_address, :string, 5
|
|
235
233
|
end
|
|
236
234
|
add_message "gitaly.CreateRepositoryFromSnapshotResponse" do
|
|
237
235
|
end
|
|
@@ -267,6 +265,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
267
265
|
optional :query, :string, 2
|
|
268
266
|
optional :ref, :bytes, 3
|
|
269
267
|
optional :filter, :string, 4
|
|
268
|
+
optional :limit, :uint32, 5
|
|
269
|
+
optional :offset, :uint32, 6
|
|
270
270
|
end
|
|
271
271
|
add_message "gitaly.SearchFilesByNameResponse" do
|
|
272
272
|
repeated :files, :bytes, 1
|
|
@@ -287,7 +287,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
287
287
|
optional :http_authorization_header, :string, 3
|
|
288
288
|
repeated :mirror_refmaps, :string, 4
|
|
289
289
|
optional :http_host, :string, 5
|
|
290
|
-
optional :resolved_address, :string, 6
|
|
291
290
|
end
|
|
292
291
|
add_message "gitaly.GetObjectDirectorySizeRequest" do
|
|
293
292
|
optional :repository, :message, 1, "gitaly.Repository"
|
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
|
|
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
95
|
version: '0'
|
|
96
96
|
requirements: []
|
|
97
|
-
rubygems_version: 3.
|
|
97
|
+
rubygems_version: 3.1.6
|
|
98
98
|
signing_key:
|
|
99
99
|
specification_version: 4
|
|
100
100
|
summary: Auto-generated gRPC client for gitaly
|