gitaly 14.4.0.pre.rc43 → 14.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/blob_pb.rb +2 -2
- data/ruby/proto/gitaly/blob_services_pb.rb +8 -8
- data/ruby/proto/gitaly/cleanup_pb.rb +2 -2
- data/ruby/proto/gitaly/cleanup_services_pb.rb +2 -2
- data/ruby/proto/gitaly/commit_pb.rb +2 -13
- data/ruby/proto/gitaly/commit_services_pb.rb +25 -27
- data/ruby/proto/gitaly/conflicts_pb.rb +2 -2
- data/ruby/proto/gitaly/conflicts_services_pb.rb +3 -3
- data/ruby/proto/gitaly/diff_pb.rb +2 -2
- data/ruby/proto/gitaly/diff_services_pb.rb +7 -7
- data/ruby/proto/gitaly/errors_pb.rb +6 -0
- data/ruby/proto/gitaly/hook_pb.rb +2 -2
- data/ruby/proto/gitaly/hook_services_pb.rb +8 -10
- data/ruby/proto/gitaly/internal_pb.rb +1 -1
- data/ruby/proto/gitaly/internal_services_pb.rb +2 -2
- data/ruby/proto/gitaly/lint_pb.rb +1 -0
- data/ruby/proto/gitaly/namespace_pb.rb +1 -1
- data/ruby/proto/gitaly/namespace_services_pb.rb +5 -5
- data/ruby/proto/gitaly/objectpool_pb.rb +2 -10
- data/ruby/proto/gitaly/objectpool_services_pb.rb +8 -19
- data/ruby/proto/gitaly/operations_pb.rb +3 -2
- data/ruby/proto/gitaly/operations_services_pb.rb +16 -16
- data/ruby/proto/gitaly/praefect_pb.rb +32 -2
- data/ruby/proto/gitaly/praefect_services_pb.rb +7 -5
- data/ruby/proto/gitaly/ref_pb.rb +15 -13
- data/ruby/proto/gitaly/ref_services_pb.rb +19 -21
- data/ruby/proto/gitaly/remote_pb.rb +4 -2
- data/ruby/proto/gitaly/remote_services_pb.rb +4 -4
- data/ruby/proto/gitaly/repository-service_pb.rb +13 -22
- data/ruby/proto/gitaly/repository-service_services_pb.rb +53 -43
- data/ruby/proto/gitaly/server_pb.rb +10 -1
- data/ruby/proto/gitaly/server_services_pb.rb +6 -3
- data/ruby/proto/gitaly/shared_pb.rb +3 -2
- data/ruby/proto/gitaly/smarthttp_pb.rb +2 -2
- data/ruby/proto/gitaly/smarthttp_services_pb.rb +6 -6
- data/ruby/proto/gitaly/ssh_pb.rb +11 -2
- data/ruby/proto/gitaly/ssh_services_pb.rb +6 -4
- data/ruby/proto/gitaly/transaction_pb.rb +9 -2
- data/ruby/proto/gitaly/transaction_services_pb.rb +3 -3
- data/ruby/proto/gitaly/version.rb +1 -1
- data/ruby/proto/gitaly/wiki_pb.rb +2 -2
- data/ruby/proto/gitaly/wiki_services_pb.rb +6 -6
- metadata +8 -8
data/ruby/proto/gitaly/ssh_pb.rb
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: ssh.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'lint_pb'
|
7
5
|
require 'shared_pb'
|
6
|
+
require 'google/protobuf'
|
7
|
+
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
9
|
add_file("ssh.proto", :syntax => :proto3) do
|
10
10
|
add_message "gitaly.SSHUploadPackRequest" do
|
@@ -18,6 +18,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
18
18
|
optional :stderr, :bytes, 2
|
19
19
|
optional :exit_status, :message, 3, "gitaly.ExitStatus"
|
20
20
|
end
|
21
|
+
add_message "gitaly.SSHUploadPackWithSidechannelRequest" do
|
22
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
23
|
+
repeated :git_config_options, :string, 2
|
24
|
+
optional :git_protocol, :string, 3
|
25
|
+
end
|
26
|
+
add_message "gitaly.SSHUploadPackWithSidechannelResponse" do
|
27
|
+
end
|
21
28
|
add_message "gitaly.SSHReceivePackRequest" do
|
22
29
|
optional :repository, :message, 1, "gitaly.Repository"
|
23
30
|
optional :stdin, :bytes, 2
|
@@ -47,6 +54,8 @@ end
|
|
47
54
|
module Gitaly
|
48
55
|
SSHUploadPackRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SSHUploadPackRequest").msgclass
|
49
56
|
SSHUploadPackResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SSHUploadPackResponse").msgclass
|
57
|
+
SSHUploadPackWithSidechannelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SSHUploadPackWithSidechannelRequest").msgclass
|
58
|
+
SSHUploadPackWithSidechannelResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SSHUploadPackWithSidechannelResponse").msgclass
|
50
59
|
SSHReceivePackRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SSHReceivePackRequest").msgclass
|
51
60
|
SSHReceivePackResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SSHReceivePackResponse").msgclass
|
52
61
|
SSHUploadArchiveRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SSHUploadArchiveRequest").msgclass
|
@@ -8,18 +8,20 @@ module Gitaly
|
|
8
8
|
module SSHService
|
9
9
|
class Service
|
10
10
|
|
11
|
-
include GRPC::GenericService
|
11
|
+
include ::GRPC::GenericService
|
12
12
|
|
13
13
|
self.marshal_class_method = :encode
|
14
14
|
self.unmarshal_class_method = :decode
|
15
15
|
self.service_name = 'gitaly.SSHService'
|
16
16
|
|
17
17
|
# To forward 'git upload-pack' to Gitaly for SSH sessions
|
18
|
-
rpc :SSHUploadPack, stream(Gitaly::SSHUploadPackRequest), stream(Gitaly::SSHUploadPackResponse)
|
18
|
+
rpc :SSHUploadPack, stream(::Gitaly::SSHUploadPackRequest), stream(::Gitaly::SSHUploadPackResponse)
|
19
|
+
# To forward 'git upload-pack' to Gitaly for SSH sessions, via sidechannels
|
20
|
+
rpc :SSHUploadPackWithSidechannel, ::Gitaly::SSHUploadPackWithSidechannelRequest, ::Gitaly::SSHUploadPackWithSidechannelResponse
|
19
21
|
# To forward 'git receive-pack' to Gitaly for SSH sessions
|
20
|
-
rpc :SSHReceivePack, stream(Gitaly::SSHReceivePackRequest), stream(Gitaly::SSHReceivePackResponse)
|
22
|
+
rpc :SSHReceivePack, stream(::Gitaly::SSHReceivePackRequest), stream(::Gitaly::SSHReceivePackResponse)
|
21
23
|
# To forward 'git upload-archive' to Gitaly for SSH sessions
|
22
|
-
rpc :SSHUploadArchive, stream(Gitaly::SSHUploadArchiveRequest), stream(Gitaly::SSHUploadArchiveResponse)
|
24
|
+
rpc :SSHUploadArchive, stream(::Gitaly::SSHUploadArchiveRequest), stream(::Gitaly::SSHUploadArchiveResponse)
|
23
25
|
end
|
24
26
|
|
25
27
|
Stub = Service.rpc_stub_class
|
@@ -1,10 +1,10 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: transaction.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'lint_pb'
|
7
5
|
require 'shared_pb'
|
6
|
+
require 'google/protobuf'
|
7
|
+
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
9
|
add_file("transaction.proto", :syntax => :proto3) do
|
10
10
|
add_message "gitaly.VoteTransactionRequest" do
|
@@ -12,6 +12,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
12
12
|
optional :transaction_id, :uint64, 2
|
13
13
|
optional :node, :string, 3
|
14
14
|
optional :reference_updates_hash, :bytes, 4
|
15
|
+
optional :phase, :enum, 5, "gitaly.VoteTransactionRequest.Phase"
|
16
|
+
end
|
17
|
+
add_enum "gitaly.VoteTransactionRequest.Phase" do
|
18
|
+
value :UNKNOWN_PHASE, 0
|
19
|
+
value :PREPARED_PHASE, 1
|
20
|
+
value :COMMITTED_PHASE, 2
|
15
21
|
end
|
16
22
|
add_message "gitaly.VoteTransactionResponse" do
|
17
23
|
optional :state, :enum, 1, "gitaly.VoteTransactionResponse.TransactionState"
|
@@ -32,6 +38,7 @@ end
|
|
32
38
|
|
33
39
|
module Gitaly
|
34
40
|
VoteTransactionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.VoteTransactionRequest").msgclass
|
41
|
+
VoteTransactionRequest::Phase = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.VoteTransactionRequest.Phase").enummodule
|
35
42
|
VoteTransactionResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.VoteTransactionResponse").msgclass
|
36
43
|
VoteTransactionResponse::TransactionState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.VoteTransactionResponse.TransactionState").enummodule
|
37
44
|
StopTransactionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.StopTransactionRequest").msgclass
|
@@ -8,14 +8,14 @@ module Gitaly
|
|
8
8
|
module RefTransaction
|
9
9
|
class Service
|
10
10
|
|
11
|
-
include GRPC::GenericService
|
11
|
+
include ::GRPC::GenericService
|
12
12
|
|
13
13
|
self.marshal_class_method = :encode
|
14
14
|
self.unmarshal_class_method = :decode
|
15
15
|
self.service_name = 'gitaly.RefTransaction'
|
16
16
|
|
17
|
-
rpc :VoteTransaction, Gitaly::VoteTransactionRequest, Gitaly::VoteTransactionResponse
|
18
|
-
rpc :StopTransaction, Gitaly::StopTransactionRequest, Gitaly::StopTransactionResponse
|
17
|
+
rpc :VoteTransaction, ::Gitaly::VoteTransactionRequest, ::Gitaly::VoteTransactionResponse
|
18
|
+
rpc :StopTransaction, ::Gitaly::StopTransactionRequest, ::Gitaly::StopTransactionResponse
|
19
19
|
end
|
20
20
|
|
21
21
|
Stub = Service.rpc_stub_class
|
@@ -1,10 +1,10 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: wiki.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'lint_pb'
|
7
5
|
require 'shared_pb'
|
6
|
+
require 'google/protobuf'
|
7
|
+
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
9
|
add_file("wiki.proto", :syntax => :proto3) do
|
10
10
|
add_message "gitaly.WikiCommitDetails" do
|
@@ -8,18 +8,18 @@ module Gitaly
|
|
8
8
|
module WikiService
|
9
9
|
class Service
|
10
10
|
|
11
|
-
include GRPC::GenericService
|
11
|
+
include ::GRPC::GenericService
|
12
12
|
|
13
13
|
self.marshal_class_method = :encode
|
14
14
|
self.unmarshal_class_method = :decode
|
15
15
|
self.service_name = 'gitaly.WikiService'
|
16
16
|
|
17
|
-
rpc :WikiWritePage, stream(Gitaly::WikiWritePageRequest), Gitaly::WikiWritePageResponse
|
18
|
-
rpc :WikiUpdatePage, stream(Gitaly::WikiUpdatePageRequest), Gitaly::WikiUpdatePageResponse
|
17
|
+
rpc :WikiWritePage, stream(::Gitaly::WikiWritePageRequest), ::Gitaly::WikiWritePageResponse
|
18
|
+
rpc :WikiUpdatePage, stream(::Gitaly::WikiUpdatePageRequest), ::Gitaly::WikiUpdatePageResponse
|
19
19
|
# WikiFindPage returns a stream because the page's raw_data field may be arbitrarily large.
|
20
|
-
rpc :WikiFindPage, Gitaly::WikiFindPageRequest, stream(Gitaly::WikiFindPageResponse)
|
21
|
-
rpc :WikiGetAllPages, Gitaly::WikiGetAllPagesRequest, stream(Gitaly::WikiGetAllPagesResponse)
|
22
|
-
rpc :WikiListPages, Gitaly::WikiListPagesRequest, stream(Gitaly::WikiListPagesResponse)
|
20
|
+
rpc :WikiFindPage, ::Gitaly::WikiFindPageRequest, stream(::Gitaly::WikiFindPageResponse)
|
21
|
+
rpc :WikiGetAllPages, ::Gitaly::WikiGetAllPagesRequest, stream(::Gitaly::WikiGetAllPagesResponse)
|
22
|
+
rpc :WikiListPages, ::Gitaly::WikiListPagesRequest, stream(::Gitaly::WikiListPagesResponse)
|
23
23
|
end
|
24
24
|
|
25
25
|
Stub = Service.rpc_stub_class
|
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: 14.
|
4
|
+
version: 14.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -79,7 +79,7 @@ homepage: https://gitlab.com/gitlab-org/gitaly
|
|
79
79
|
licenses:
|
80
80
|
- MIT
|
81
81
|
metadata: {}
|
82
|
-
post_install_message:
|
82
|
+
post_install_message:
|
83
83
|
rdoc_options: []
|
84
84
|
require_paths:
|
85
85
|
- ruby/proto
|
@@ -90,12 +90,12 @@ 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
|
-
rubygems_version: 3.
|
98
|
-
signing_key:
|
97
|
+
rubygems_version: 3.1.6
|
98
|
+
signing_key:
|
99
99
|
specification_version: 4
|
100
100
|
summary: Auto-generated gRPC client for gitaly
|
101
101
|
test_files: []
|