gitaly-proto 1.14.0 → 1.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/lib/gitaly/namespace_pb.rb +1 -0
- data/ruby/lib/gitaly/repository-service_pb.rb +14 -0
- data/ruby/lib/gitaly/repository-service_services_pb.rb +1 -0
- data/ruby/lib/gitaly/server_pb.rb +1 -0
- data/ruby/lib/gitaly/shared_pb.rb +10 -0
- data/ruby/lib/gitaly/storage_pb.rb +1 -0
- data/ruby/lib/gitaly/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fcc6022bfa04de62811b7427a3264d4b1dcc0cbdd0e9a96b654dd6c2c1e9435a
|
4
|
+
data.tar.gz: 8c1fda155ea2f2e54215dac655ceaae974a44953331caab592246c73030b0a6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9fad758c9262d659333d7e14e201bfa61f1ddc5c64010c654243c260be73fb0dfe4a630c5b84ce20e753317c373513b821ed17e11b83b942ed7d14bb55ccbd4
|
7
|
+
data.tar.gz: 193db4dbca01e8fd60939332c6b0a40798a4fa56ae00e0dbaa1e117c616612d08e002e5029aaca8053083418f5d7ee1e819a43762bdd12be38ba71ae75da0f8b
|
@@ -275,6 +275,17 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
275
275
|
end
|
276
276
|
add_message "gitaly.PreFetchResponse" do
|
277
277
|
end
|
278
|
+
add_message "gitaly.Remote" do
|
279
|
+
optional :url, :string, 1
|
280
|
+
optional :name, :string, 2
|
281
|
+
optional :http_authorization_header, :string, 3
|
282
|
+
end
|
283
|
+
add_message "gitaly.FetchHttpRemoteRequest" do
|
284
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
285
|
+
optional :remote, :message, 2, "gitaly.Remote"
|
286
|
+
end
|
287
|
+
add_message "gitaly.FetchHttpRemoteResponse" do
|
288
|
+
end
|
278
289
|
end
|
279
290
|
|
280
291
|
module Gitaly
|
@@ -352,4 +363,7 @@ module Gitaly
|
|
352
363
|
SearchFilesByContentResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByContentResponse").msgclass
|
353
364
|
PreFetchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PreFetchRequest").msgclass
|
354
365
|
PreFetchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PreFetchResponse").msgclass
|
366
|
+
Remote = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Remote").msgclass
|
367
|
+
FetchHttpRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchHttpRemoteRequest").msgclass
|
368
|
+
FetchHttpRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchHttpRemoteResponse").msgclass
|
355
369
|
end
|
@@ -49,6 +49,7 @@ module Gitaly
|
|
49
49
|
rpc :RestoreCustomHooks, stream(RestoreCustomHooksRequest), RestoreCustomHooksResponse
|
50
50
|
rpc :BackupCustomHooks, BackupCustomHooksRequest, stream(BackupCustomHooksResponse)
|
51
51
|
rpc :PreFetch, PreFetchRequest, PreFetchResponse
|
52
|
+
rpc :FetchHttpRemote, FetchHttpRemoteRequest, FetchHttpRemoteResponse
|
52
53
|
end
|
53
54
|
|
54
55
|
Stub = Service.rpc_stub_class
|
@@ -5,6 +5,14 @@ require 'google/protobuf'
|
|
5
5
|
|
6
6
|
require 'google/protobuf/timestamp_pb'
|
7
7
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
|
+
add_message "gitaly.OperationMsg" do
|
9
|
+
optional :op, :enum, 1, "gitaly.OperationMsg.Operation"
|
10
|
+
end
|
11
|
+
add_enum "gitaly.OperationMsg.Operation" do
|
12
|
+
value :UNKNOWN, 0
|
13
|
+
value :MUTATOR, 1
|
14
|
+
value :ACCESSOR, 2
|
15
|
+
end
|
8
16
|
add_message "gitaly.Repository" do
|
9
17
|
optional :storage_name, :string, 2
|
10
18
|
optional :relative_path, :string, 3
|
@@ -54,6 +62,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
54
62
|
end
|
55
63
|
|
56
64
|
module Gitaly
|
65
|
+
OperationMsg = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OperationMsg").msgclass
|
66
|
+
OperationMsg::Operation = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OperationMsg.Operation").enummodule
|
57
67
|
Repository = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Repository").msgclass
|
58
68
|
GitCommit = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GitCommit").msgclass
|
59
69
|
CommitAuthor = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitAuthor").msgclass
|
data/ruby/lib/gitaly/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitaly-proto
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.15.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: 2019-03-
|
11
|
+
date: 2019-03-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|