gitaly 13.1.0.pre.rc1 → 13.3.0.pre.rc1
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.
Potentially problematic release.
This version of gitaly might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/commit_pb.rb +13 -1
- data/ruby/proto/gitaly/diff_pb.rb +1 -0
- data/ruby/proto/gitaly/hook_pb.rb +1 -0
- data/ruby/proto/gitaly/operations_pb.rb +2 -0
- data/ruby/proto/gitaly/praefect_pb.rb +11 -3
- data/ruby/proto/gitaly/praefect_services_pb.rb +2 -3
- data/ruby/proto/gitaly/ref_pb.rb +1 -0
- data/ruby/proto/gitaly/remote_pb.rb +1 -0
- data/ruby/proto/gitaly/repository-service_pb.rb +9 -0
- data/ruby/proto/gitaly/repository-service_services_pb.rb +1 -0
- data/ruby/proto/gitaly/shared_pb.rb +9 -0
- data/ruby/proto/gitaly/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f8cf1e3eed150c32218f71489fa83a7677574cb793ec3387839c8c91bcc6d11
|
4
|
+
data.tar.gz: 21454a6acc4bc765968f9cf06bf929a9f23741cc2d0a33fb957c43d79efb2f88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e83256a1728d9924a306f5a7d2816b5256f1eb5affa65c78c4f6238d7e3bca489b49c1d3c203dc685c9310c300b7a9921d426c39185e490098c288f02969327
|
7
|
+
data.tar.gz: 70a66d6a35565f3c093bf02d1158cb8091e38dc56b80b3c3a9a544fed38e5b22fdf88b5ea70586201ab5c43e6edaa1f5cefa8080d0851ab22a707338fb046397
|
@@ -60,6 +60,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
60
60
|
optional :max_count, :int32, 6
|
61
61
|
optional :all, :bool, 7
|
62
62
|
optional :first_parent, :bool, 8
|
63
|
+
optional :global_options, :message, 9, "gitaly.GlobalOptions"
|
63
64
|
end
|
64
65
|
add_message "gitaly.CountCommitsResponse" do
|
65
66
|
optional :count, :int32, 1
|
@@ -123,7 +124,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
123
124
|
repeated :ref_names, :bytes, 2
|
124
125
|
end
|
125
126
|
add_message "gitaly.ListCommitsByRefNameResponse" do
|
126
|
-
repeated :
|
127
|
+
repeated :commit_refs, :message, 2, "gitaly.ListCommitsByRefNameResponse.CommitForRef"
|
128
|
+
end
|
129
|
+
add_message "gitaly.ListCommitsByRefNameResponse.CommitForRef" do
|
130
|
+
optional :commit, :message, 1, "gitaly.GitCommit"
|
131
|
+
optional :ref_name, :bytes, 2
|
127
132
|
end
|
128
133
|
add_message "gitaly.FindAllCommitsRequest" do
|
129
134
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -155,6 +160,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
155
160
|
optional :first_parent, :bool, 12
|
156
161
|
optional :author, :bytes, 13
|
157
162
|
optional :order, :enum, 14, "gitaly.FindCommitsRequest.Order"
|
163
|
+
optional :global_options, :message, 15, "gitaly.GlobalOptions"
|
158
164
|
end
|
159
165
|
add_enum "gitaly.FindCommitsRequest.Order" do
|
160
166
|
value :NONE, 0
|
@@ -189,6 +195,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
189
195
|
optional :repository, :message, 1, "gitaly.Repository"
|
190
196
|
optional :revision, :bytes, 2
|
191
197
|
optional :path, :bytes, 3
|
198
|
+
optional :literal_pathspec, :bool, 4
|
199
|
+
optional :global_options, :message, 5, "gitaly.GlobalOptions"
|
192
200
|
end
|
193
201
|
add_message "gitaly.LastCommitForPathResponse" do
|
194
202
|
optional :commit, :message, 1, "gitaly.GitCommit"
|
@@ -199,6 +207,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
199
207
|
optional :path, :bytes, 3
|
200
208
|
optional :limit, :int32, 4
|
201
209
|
optional :offset, :int32, 5
|
210
|
+
optional :literal_pathspec, :bool, 6
|
211
|
+
optional :global_options, :message, 7, "gitaly.GlobalOptions"
|
202
212
|
end
|
203
213
|
add_message "gitaly.ListLastCommitsForTreeResponse" do
|
204
214
|
repeated :commits, :message, 1, "gitaly.ListLastCommitsForTreeResponse.CommitForTree"
|
@@ -214,6 +224,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
214
224
|
optional :limit, :int32, 4
|
215
225
|
optional :path, :bytes, 5
|
216
226
|
optional :query, :string, 6
|
227
|
+
optional :global_options, :message, 7, "gitaly.GlobalOptions"
|
217
228
|
end
|
218
229
|
add_message "gitaly.CommitsByMessageResponse" do
|
219
230
|
repeated :commits, :message, 1, "gitaly.GitCommit"
|
@@ -278,6 +289,7 @@ module Gitaly
|
|
278
289
|
ListCommitsByOidResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByOidResponse").msgclass
|
279
290
|
ListCommitsByRefNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByRefNameRequest").msgclass
|
280
291
|
ListCommitsByRefNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByRefNameResponse").msgclass
|
292
|
+
ListCommitsByRefNameResponse::CommitForRef = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByRefNameResponse.CommitForRef").msgclass
|
281
293
|
FindAllCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsRequest").msgclass
|
282
294
|
FindAllCommitsRequest::Order = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsRequest.Order").enummodule
|
283
295
|
FindAllCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsResponse").msgclass
|
@@ -78,6 +78,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
78
78
|
optional :path, :bytes, 1
|
79
79
|
optional :additions, :int32, 2
|
80
80
|
optional :deletions, :int32, 3
|
81
|
+
optional :old_path, :bytes, 4
|
81
82
|
end
|
82
83
|
add_message "gitaly.DiffStatsResponse" do
|
83
84
|
repeated :stats, :message, 1, "gitaly.DiffStats"
|
@@ -10,6 +10,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
10
10
|
optional :repository, :message, 1, "gitaly.Repository"
|
11
11
|
repeated :environment_variables, :string, 2
|
12
12
|
optional :stdin, :bytes, 4
|
13
|
+
repeated :git_push_options, :string, 5
|
13
14
|
end
|
14
15
|
add_message "gitaly.PreReceiveHookResponse" do
|
15
16
|
optional :stdout, :bytes, 1
|
@@ -103,6 +103,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
103
103
|
optional :message, :bytes, 5
|
104
104
|
optional :start_branch_name, :bytes, 6
|
105
105
|
optional :start_repository, :message, 7, "gitaly.Repository"
|
106
|
+
optional :dry_run, :bool, 8
|
106
107
|
end
|
107
108
|
add_message "gitaly.UserCherryPickResponse" do
|
108
109
|
optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
|
@@ -124,6 +125,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
124
125
|
optional :message, :bytes, 5
|
125
126
|
optional :start_branch_name, :bytes, 6
|
126
127
|
optional :start_repository, :message, 7, "gitaly.Repository"
|
128
|
+
optional :dry_run, :bool, 8
|
127
129
|
end
|
128
130
|
add_message "gitaly.UserRevertResponse" do
|
129
131
|
optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
|
@@ -13,11 +13,18 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
13
13
|
add_message "gitaly.EnableWritesResponse" do
|
14
14
|
end
|
15
15
|
add_message "gitaly.DatalossCheckRequest" do
|
16
|
-
optional :
|
17
|
-
optional :to, :message, 2, "google.protobuf.Timestamp"
|
16
|
+
optional :virtual_storage, :string, 1
|
18
17
|
end
|
19
18
|
add_message "gitaly.DatalossCheckResponse" do
|
20
|
-
|
19
|
+
optional :virtual_storage, :string, 1
|
20
|
+
optional :previous_writable_primary, :string, 2
|
21
|
+
optional :current_primary, :string, 3
|
22
|
+
optional :is_read_only, :bool, 4
|
23
|
+
repeated :outdated_nodes, :message, 5, "gitaly.DatalossCheckResponse.Nodes"
|
24
|
+
end
|
25
|
+
add_message "gitaly.DatalossCheckResponse.Nodes" do
|
26
|
+
optional :relative_path, :string, 1
|
27
|
+
repeated :nodes, :string, 2
|
21
28
|
end
|
22
29
|
add_message "gitaly.RepositoryReplicasRequest" do
|
23
30
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -50,6 +57,7 @@ module Gitaly
|
|
50
57
|
EnableWritesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.EnableWritesResponse").msgclass
|
51
58
|
DatalossCheckRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckRequest").msgclass
|
52
59
|
DatalossCheckResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse").msgclass
|
60
|
+
DatalossCheckResponse::Nodes = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse.Nodes").msgclass
|
53
61
|
RepositoryReplicasRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasRequest").msgclass
|
54
62
|
RepositoryReplicasResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse").msgclass
|
55
63
|
RepositoryReplicasResponse::RepositoryDetails = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse.RepositoryDetails").msgclass
|
@@ -20,9 +20,8 @@ module Gitaly
|
|
20
20
|
# back indicating which repos are consistent with the primary and which ones
|
21
21
|
# need repair.
|
22
22
|
rpc :ConsistencyCheck, ConsistencyCheckRequest, stream(ConsistencyCheckResponse)
|
23
|
-
# DatalossCheck
|
24
|
-
#
|
25
|
-
# impact of a primary node failure.
|
23
|
+
# DatalossCheck checks for nodes which are not up to date with the previous writable primary.
|
24
|
+
# This indicates possible data loss after a failover event.
|
26
25
|
rpc :DatalossCheck, DatalossCheckRequest, DatalossCheckResponse
|
27
26
|
# EnableWrites enables writes for a storage that was switched to a read-only mode
|
28
27
|
# following a failover.
|
data/ruby/proto/gitaly/ref_pb.rb
CHANGED
@@ -45,6 +45,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
45
45
|
add_message "gitaly.FindLocalBranchesRequest" do
|
46
46
|
optional :repository, :message, 1, "gitaly.Repository"
|
47
47
|
optional :sort_by, :enum, 2, "gitaly.FindLocalBranchesRequest.SortBy"
|
48
|
+
optional :pagination_params, :message, 3, "gitaly.PaginationParameter"
|
48
49
|
end
|
49
50
|
add_enum "gitaly.FindLocalBranchesRequest.SortBy" do
|
50
51
|
value :NAME, 0
|
@@ -41,6 +41,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
41
41
|
end
|
42
42
|
add_message "gitaly.FindRemoteRepositoryRequest" do
|
43
43
|
optional :remote, :string, 1
|
44
|
+
optional :storage_name, :string, 2
|
44
45
|
end
|
45
46
|
add_message "gitaly.FindRemoteRepositoryResponse" do
|
46
47
|
optional :exists, :bool, 1
|
@@ -29,6 +29,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
29
29
|
end
|
30
30
|
add_message "gitaly.GarbageCollectResponse" do
|
31
31
|
end
|
32
|
+
add_message "gitaly.WriteCommitGraphRequest" do
|
33
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
34
|
+
end
|
35
|
+
add_message "gitaly.WriteCommitGraphResponse" do
|
36
|
+
end
|
32
37
|
add_message "gitaly.CleanupRequest" do
|
33
38
|
optional :repository, :message, 1, "gitaly.Repository"
|
34
39
|
end
|
@@ -70,6 +75,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
70
75
|
optional :prefix, :string, 3
|
71
76
|
optional :format, :enum, 4, "gitaly.GetArchiveRequest.Format"
|
72
77
|
optional :path, :bytes, 5
|
78
|
+
repeated :exclude, :bytes, 6
|
73
79
|
end
|
74
80
|
add_enum "gitaly.GetArchiveRequest.Format" do
|
75
81
|
value :ZIP, 0
|
@@ -251,6 +257,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
251
257
|
optional :repository, :message, 1, "gitaly.Repository"
|
252
258
|
optional :query, :string, 2
|
253
259
|
optional :ref, :bytes, 3
|
260
|
+
optional :filter, :string, 4
|
254
261
|
end
|
255
262
|
add_message "gitaly.SearchFilesByNameResponse" do
|
256
263
|
repeated :files, :bytes, 1
|
@@ -332,6 +339,8 @@ module Gitaly
|
|
332
339
|
RepackFullResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackFullResponse").msgclass
|
333
340
|
GarbageCollectRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectRequest").msgclass
|
334
341
|
GarbageCollectResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectResponse").msgclass
|
342
|
+
WriteCommitGraphRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphRequest").msgclass
|
343
|
+
WriteCommitGraphResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphResponse").msgclass
|
335
344
|
CleanupRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupRequest").msgclass
|
336
345
|
CleanupResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupResponse").msgclass
|
337
346
|
RepositorySizeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeRequest").msgclass
|
@@ -18,6 +18,7 @@ module Gitaly
|
|
18
18
|
rpc :RepackIncremental, RepackIncrementalRequest, RepackIncrementalResponse
|
19
19
|
rpc :RepackFull, RepackFullRequest, RepackFullResponse
|
20
20
|
rpc :GarbageCollect, GarbageCollectRequest, GarbageCollectResponse
|
21
|
+
rpc :WriteCommitGraph, WriteCommitGraphRequest, WriteCommitGraphResponse
|
21
22
|
rpc :RepositorySize, RepositorySizeRequest, RepositorySizeResponse
|
22
23
|
rpc :ApplyGitattributes, ApplyGitattributesRequest, ApplyGitattributesResponse
|
23
24
|
rpc :FetchRemote, FetchRemoteRequest, FetchRemoteResponse
|
@@ -55,6 +55,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
55
55
|
add_message "gitaly.ObjectPool" do
|
56
56
|
optional :repository, :message, 1, "gitaly.Repository"
|
57
57
|
end
|
58
|
+
add_message "gitaly.PaginationParameter" do
|
59
|
+
optional :page_token, :string, 1
|
60
|
+
optional :limit, :int32, 2
|
61
|
+
end
|
62
|
+
add_message "gitaly.GlobalOptions" do
|
63
|
+
optional :literal_pathspecs, :bool, 1
|
64
|
+
end
|
58
65
|
add_enum "gitaly.ObjectType" do
|
59
66
|
value :UNKNOWN, 0
|
60
67
|
value :COMMIT, 1
|
@@ -78,6 +85,8 @@ module Gitaly
|
|
78
85
|
Tag = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Tag").msgclass
|
79
86
|
User = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.User").msgclass
|
80
87
|
ObjectPool = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectPool").msgclass
|
88
|
+
PaginationParameter = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PaginationParameter").msgclass
|
89
|
+
GlobalOptions = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GlobalOptions").msgclass
|
81
90
|
ObjectType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectType").enummodule
|
82
91
|
SignatureType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SignatureType").enummodule
|
83
92
|
end
|
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: 13.
|
4
|
+
version: 13.3.0.pre.rc1
|
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: 2020-
|
11
|
+
date: 2020-07-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -78,7 +78,7 @@ homepage: https://gitlab.com/gitlab-org/gitaly
|
|
78
78
|
licenses:
|
79
79
|
- MIT
|
80
80
|
metadata: {}
|
81
|
-
post_install_message:
|
81
|
+
post_install_message:
|
82
82
|
rdoc_options: []
|
83
83
|
require_paths:
|
84
84
|
- ruby/proto
|
@@ -93,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
93
|
- !ruby/object:Gem::Version
|
94
94
|
version: 1.3.1
|
95
95
|
requirements: []
|
96
|
-
rubygems_version: 3.0.
|
97
|
-
signing_key:
|
96
|
+
rubygems_version: 3.0.8
|
97
|
+
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: Auto-generated gRPC client for gitaly
|
100
100
|
test_files: []
|