gitaly 15.8.0.pre.rc1 → 15.9.0.pre.rc2
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/diff_pb.rb +7 -0
- data/ruby/proto/gitaly/log_pb.rb +25 -0
- data/ruby/proto/gitaly/ref_pb.rb +3 -0
- data/ruby/proto/gitaly/repository_services_pb.rb +3 -1
- data/ruby/proto/gitaly/service_config_pb.rb +54 -0
- data/ruby/proto/gitaly/smarthttp_pb.rb +0 -11
- data/ruby/proto/gitaly/smarthttp_services_pb.rb +0 -2
- data/ruby/proto/gitaly/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc77d2804a3fe3e35cabedba8aabcf4e56102919c7277c8a5dbbc75a85b3c5e8
|
4
|
+
data.tar.gz: e37214f1fb958302383a81840de31870e5e910364b4d0659331eb13903a68218
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c6a0bd508832ff310a7b59abad80d4e6076192f77d3a9b6766cf6f6933adb8347f243517ea5a53840dbd890571f709887fd6bf798c9767253b9d06d6d94f588
|
7
|
+
data.tar.gz: 37af9256258f65d6b262bf5744a4021db0bb350cce7b55c01e96ddee8883ac8402ba8e9e787d19182780fc26e563c0b27a71eff8bc9624057cb18067d9876d6d
|
@@ -24,11 +24,17 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
24
24
|
optional :safe_max_bytes, :int32, 13
|
25
25
|
optional :diff_mode, :enum, 15, "gitaly.CommitDiffRequest.DiffMode"
|
26
26
|
map :max_patch_bytes_for_file_extension, :string, :int32, 16
|
27
|
+
optional :whitespace_changes, :enum, 17, "gitaly.CommitDiffRequest.WhitespaceChanges"
|
27
28
|
end
|
28
29
|
add_enum "gitaly.CommitDiffRequest.DiffMode" do
|
29
30
|
value :DEFAULT, 0
|
30
31
|
value :WORDDIFF, 1
|
31
32
|
end
|
33
|
+
add_enum "gitaly.CommitDiffRequest.WhitespaceChanges" do
|
34
|
+
value :WHITESPACE_CHANGES_UNSPECIFIED, 0
|
35
|
+
value :WHITESPACE_CHANGES_IGNORE, 1
|
36
|
+
value :WHITESPACE_CHANGES_IGNORE_ALL, 2
|
37
|
+
end
|
32
38
|
add_message "gitaly.CommitDiffResponse" do
|
33
39
|
optional :from_path, :bytes, 1
|
34
40
|
optional :to_path, :bytes, 2
|
@@ -139,6 +145,7 @@ end
|
|
139
145
|
module Gitaly
|
140
146
|
CommitDiffRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffRequest").msgclass
|
141
147
|
CommitDiffRequest::DiffMode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffRequest.DiffMode").enummodule
|
148
|
+
CommitDiffRequest::WhitespaceChanges = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffRequest.WhitespaceChanges").enummodule
|
142
149
|
CommitDiffResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffResponse").msgclass
|
143
150
|
CommitDeltaRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDeltaRequest").msgclass
|
144
151
|
CommitDelta = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDelta").msgclass
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: log.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
7
|
+
add_file("log.proto", :syntax => :proto3) do
|
8
|
+
add_message "gitaly.LogEntry" do
|
9
|
+
repeated :reference_updates, :message, 1, "gitaly.LogEntry.ReferenceUpdate"
|
10
|
+
end
|
11
|
+
add_message "gitaly.LogEntry.ReferenceUpdate" do
|
12
|
+
optional :reference_name, :bytes, 1
|
13
|
+
optional :new_oid, :bytes, 2
|
14
|
+
end
|
15
|
+
add_message "gitaly.LogIndex" do
|
16
|
+
optional :log_index, :uint64, 1
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
module Gitaly
|
22
|
+
LogEntry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LogEntry").msgclass
|
23
|
+
LogEntry::ReferenceUpdate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LogEntry.ReferenceUpdate").msgclass
|
24
|
+
LogIndex = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LogIndex").msgclass
|
25
|
+
end
|
data/ruby/proto/gitaly/ref_pb.rb
CHANGED
@@ -198,6 +198,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
198
198
|
repeated :patterns, :bytes, 2
|
199
199
|
optional :head, :bool, 3
|
200
200
|
optional :sort_by, :message, 4, "gitaly.ListRefsRequest.SortBy"
|
201
|
+
repeated :pointing_at_oids, :bytes, 5
|
202
|
+
optional :peel_tags, :bool, 6
|
201
203
|
end
|
202
204
|
add_message "gitaly.ListRefsRequest.SortBy" do
|
203
205
|
optional :key, :enum, 1, "gitaly.ListRefsRequest.SortBy.Key"
|
@@ -215,6 +217,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
215
217
|
add_message "gitaly.ListRefsResponse.Reference" do
|
216
218
|
optional :name, :bytes, 1
|
217
219
|
optional :target, :string, 2
|
220
|
+
optional :peeled_target, :string, 3
|
218
221
|
end
|
219
222
|
add_message "gitaly.FindRefsByOIDRequest" do
|
220
223
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -87,7 +87,9 @@ module Gitaly
|
|
87
87
|
rpc :SearchFilesByContent, ::Gitaly::SearchFilesByContentRequest, stream(::Gitaly::SearchFilesByContentResponse)
|
88
88
|
# This comment is left unintentionally blank.
|
89
89
|
rpc :SearchFilesByName, ::Gitaly::SearchFilesByNameRequest, stream(::Gitaly::SearchFilesByNameResponse)
|
90
|
-
#
|
90
|
+
# RestoreCustomHooks sets the git hooks for a repository. The hooks are sent
|
91
|
+
# in a tar archive containing a `custom_hooks` directory. This directory is
|
92
|
+
# ultimately extracted to the repository.
|
91
93
|
rpc :RestoreCustomHooks, stream(::Gitaly::RestoreCustomHooksRequest), ::Gitaly::RestoreCustomHooksResponse
|
92
94
|
# This comment is left unintentionally blank.
|
93
95
|
rpc :BackupCustomHooks, ::Gitaly::BackupCustomHooksRequest, stream(::Gitaly::BackupCustomHooksResponse)
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: service_config.proto
|
3
|
+
|
4
|
+
require 'google/protobuf/duration_pb'
|
5
|
+
require 'google/protobuf/wrappers_pb'
|
6
|
+
require 'google/protobuf'
|
7
|
+
|
8
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
|
+
add_file("service_config.proto", :syntax => :proto3) do
|
10
|
+
add_message "gitaly.ServiceConfig" do
|
11
|
+
repeated :load_balancing_config, :message, 1, "gitaly.LoadBalancingConfig"
|
12
|
+
repeated :method_config, :message, 2, "gitaly.MethodConfig"
|
13
|
+
end
|
14
|
+
add_message "gitaly.LoadBalancingConfig" do
|
15
|
+
oneof :policy do
|
16
|
+
optional :pick_first, :message, 1, "gitaly.PickFirstConfig", json_name: "pick_first"
|
17
|
+
optional :round_robin, :message, 2, "gitaly.RoundRobinConfig", json_name: "round_robin"
|
18
|
+
end
|
19
|
+
end
|
20
|
+
add_message "gitaly.PickFirstConfig" do
|
21
|
+
end
|
22
|
+
add_message "gitaly.RoundRobinConfig" do
|
23
|
+
end
|
24
|
+
add_message "gitaly.MethodConfig" do
|
25
|
+
repeated :name, :message, 1, "gitaly.MethodConfig.Name"
|
26
|
+
optional :wait_for_ready, :message, 2, "google.protobuf.BoolValue"
|
27
|
+
optional :timeout, :message, 3, "google.protobuf.Duration"
|
28
|
+
optional :max_request_message_bytes, :message, 4, "google.protobuf.UInt32Value"
|
29
|
+
optional :max_response_message_bytes, :message, 5, "google.protobuf.UInt32Value"
|
30
|
+
optional :retry_policy, :message, 6, "gitaly.MethodConfig.RetryPolicy"
|
31
|
+
end
|
32
|
+
add_message "gitaly.MethodConfig.Name" do
|
33
|
+
optional :service, :string, 1
|
34
|
+
optional :method, :string, 2
|
35
|
+
end
|
36
|
+
add_message "gitaly.MethodConfig.RetryPolicy" do
|
37
|
+
optional :max_attempts, :uint32, 1
|
38
|
+
optional :initial_backoff, :message, 2, "google.protobuf.Duration"
|
39
|
+
optional :max_backoff, :message, 3, "google.protobuf.Duration"
|
40
|
+
optional :backoff_multiplier, :float, 4
|
41
|
+
repeated :retryable_status_codes, :string, 5
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
module Gitaly
|
47
|
+
ServiceConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ServiceConfig").msgclass
|
48
|
+
LoadBalancingConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LoadBalancingConfig").msgclass
|
49
|
+
PickFirstConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PickFirstConfig").msgclass
|
50
|
+
RoundRobinConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RoundRobinConfig").msgclass
|
51
|
+
MethodConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.MethodConfig").msgclass
|
52
|
+
MethodConfig::Name = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.MethodConfig.Name").msgclass
|
53
|
+
MethodConfig::RetryPolicy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.MethodConfig.RetryPolicy").msgclass
|
54
|
+
end
|
@@ -15,15 +15,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
15
15
|
add_message "gitaly.InfoRefsResponse" do
|
16
16
|
optional :data, :bytes, 1
|
17
17
|
end
|
18
|
-
add_message "gitaly.PostUploadPackRequest" do
|
19
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
20
|
-
optional :data, :bytes, 2
|
21
|
-
repeated :git_config_options, :string, 3
|
22
|
-
optional :git_protocol, :string, 4
|
23
|
-
end
|
24
|
-
add_message "gitaly.PostUploadPackResponse" do
|
25
|
-
optional :data, :bytes, 1
|
26
|
-
end
|
27
18
|
add_message "gitaly.PostUploadPackWithSidechannelRequest" do
|
28
19
|
optional :repository, :message, 1, "gitaly.Repository"
|
29
20
|
repeated :git_config_options, :string, 2
|
@@ -49,8 +40,6 @@ end
|
|
49
40
|
module Gitaly
|
50
41
|
InfoRefsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.InfoRefsRequest").msgclass
|
51
42
|
InfoRefsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.InfoRefsResponse").msgclass
|
52
|
-
PostUploadPackRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostUploadPackRequest").msgclass
|
53
|
-
PostUploadPackResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostUploadPackResponse").msgclass
|
54
43
|
PostUploadPackWithSidechannelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostUploadPackWithSidechannelRequest").msgclass
|
55
44
|
PostUploadPackWithSidechannelResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostUploadPackWithSidechannelResponse").msgclass
|
56
45
|
PostReceivePackRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostReceivePackRequest").msgclass
|
@@ -24,8 +24,6 @@ module Gitaly
|
|
24
24
|
# Will be invoked when the user executes a `git push`, but only advertises
|
25
25
|
# references to the user.
|
26
26
|
rpc :InfoRefsReceivePack, ::Gitaly::InfoRefsRequest, stream(::Gitaly::InfoRefsResponse)
|
27
|
-
# Request and response body for POST /upload-pack
|
28
|
-
rpc :PostUploadPack, stream(::Gitaly::PostUploadPackRequest), stream(::Gitaly::PostUploadPackResponse)
|
29
27
|
# Request and response body for POST /upload-pack using sidechannel protocol
|
30
28
|
rpc :PostUploadPackWithSidechannel, ::Gitaly::PostUploadPackWithSidechannelRequest, ::Gitaly::PostUploadPackWithSidechannelResponse
|
31
29
|
# Request and response body for POST /receive-pack
|
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.9.0.pre.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -48,6 +48,7 @@ files:
|
|
48
48
|
- ruby/proto/gitaly/internal_pb.rb
|
49
49
|
- ruby/proto/gitaly/internal_services_pb.rb
|
50
50
|
- ruby/proto/gitaly/lint_pb.rb
|
51
|
+
- ruby/proto/gitaly/log_pb.rb
|
51
52
|
- ruby/proto/gitaly/namespace_pb.rb
|
52
53
|
- ruby/proto/gitaly/namespace_services_pb.rb
|
53
54
|
- ruby/proto/gitaly/objectpool_pb.rb
|
@@ -64,6 +65,7 @@ files:
|
|
64
65
|
- ruby/proto/gitaly/repository_services_pb.rb
|
65
66
|
- ruby/proto/gitaly/server_pb.rb
|
66
67
|
- ruby/proto/gitaly/server_services_pb.rb
|
68
|
+
- ruby/proto/gitaly/service_config_pb.rb
|
67
69
|
- ruby/proto/gitaly/shared_pb.rb
|
68
70
|
- ruby/proto/gitaly/smarthttp_pb.rb
|
69
71
|
- ruby/proto/gitaly/smarthttp_services_pb.rb
|
@@ -91,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
93
|
- !ruby/object:Gem::Version
|
92
94
|
version: 1.3.1
|
93
95
|
requirements: []
|
94
|
-
rubygems_version: 3.
|
96
|
+
rubygems_version: 3.4.6
|
95
97
|
signing_key:
|
96
98
|
specification_version: 4
|
97
99
|
summary: Auto-generated gRPC client for gitaly
|