gitaly 13.1.0.pre.rc4 → 13.3.0.pre.rc3
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 +6 -1
- data/ruby/proto/gitaly/diff_pb.rb +1 -0
- data/ruby/proto/gitaly/hook_pb.rb +12 -0
- data/ruby/proto/gitaly/hook_services_pb.rb +1 -0
- data/ruby/proto/gitaly/operations_pb.rb +2 -0
- data/ruby/proto/gitaly/praefect_pb.rb +16 -13
- data/ruby/proto/gitaly/praefect_services_pb.rb +4 -3
- data/ruby/proto/gitaly/ref_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: feb45fa4431f4488cdfe90cbdd0cfd05f5c2e2857ac54b91a231dc636c1d6b57
|
4
|
+
data.tar.gz: e255497ae1d988c2d9de84a3d903734aa44097970793de31fb8487817a7c51c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4f5b3fe363039676d6ca13691e15764d0ffde8ea2ee46845415f07e91871de00e1e4ed7555a024e82cff0ccb0391b5406d6966bda11752954eebfa2d7dcce80
|
7
|
+
data.tar.gz: 62d37afa45d58611000113a1db17ddc416ca058b85c576f88a8f7f9c774e7680af00552c5f823509886e4c75ed2c173cee76cfefd6ab083dcbed1d4d96538b98
|
@@ -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,6 @@ 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 :commits, :message, 1, "gitaly.GitCommit"
|
127
127
|
repeated :commit_refs, :message, 2, "gitaly.ListCommitsByRefNameResponse.CommitForRef"
|
128
128
|
end
|
129
129
|
add_message "gitaly.ListCommitsByRefNameResponse.CommitForRef" do
|
@@ -160,6 +160,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
160
160
|
optional :first_parent, :bool, 12
|
161
161
|
optional :author, :bytes, 13
|
162
162
|
optional :order, :enum, 14, "gitaly.FindCommitsRequest.Order"
|
163
|
+
optional :global_options, :message, 15, "gitaly.GlobalOptions"
|
163
164
|
end
|
164
165
|
add_enum "gitaly.FindCommitsRequest.Order" do
|
165
166
|
value :NONE, 0
|
@@ -195,6 +196,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
195
196
|
optional :revision, :bytes, 2
|
196
197
|
optional :path, :bytes, 3
|
197
198
|
optional :literal_pathspec, :bool, 4
|
199
|
+
optional :global_options, :message, 5, "gitaly.GlobalOptions"
|
198
200
|
end
|
199
201
|
add_message "gitaly.LastCommitForPathResponse" do
|
200
202
|
optional :commit, :message, 1, "gitaly.GitCommit"
|
@@ -205,6 +207,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
205
207
|
optional :path, :bytes, 3
|
206
208
|
optional :limit, :int32, 4
|
207
209
|
optional :offset, :int32, 5
|
210
|
+
optional :literal_pathspec, :bool, 6
|
211
|
+
optional :global_options, :message, 7, "gitaly.GlobalOptions"
|
208
212
|
end
|
209
213
|
add_message "gitaly.ListLastCommitsForTreeResponse" do
|
210
214
|
repeated :commits, :message, 1, "gitaly.ListLastCommitsForTreeResponse.CommitForTree"
|
@@ -220,6 +224,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
220
224
|
optional :limit, :int32, 4
|
221
225
|
optional :path, :bytes, 5
|
222
226
|
optional :query, :string, 6
|
227
|
+
optional :global_options, :message, 7, "gitaly.GlobalOptions"
|
223
228
|
end
|
224
229
|
add_message "gitaly.CommitsByMessageResponse" do
|
225
230
|
repeated :commits, :message, 1, "gitaly.GitCommit"
|
@@ -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"
|
@@ -40,6 +40,16 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
40
40
|
optional :stderr, :bytes, 2
|
41
41
|
optional :exit_status, :message, 3, "gitaly.ExitStatus"
|
42
42
|
end
|
43
|
+
add_message "gitaly.ReferenceTransactionHookRequest" do
|
44
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
45
|
+
repeated :environment_variables, :string, 2
|
46
|
+
optional :stdin, :bytes, 3
|
47
|
+
end
|
48
|
+
add_message "gitaly.ReferenceTransactionHookResponse" do
|
49
|
+
optional :stdout, :bytes, 1
|
50
|
+
optional :stderr, :bytes, 2
|
51
|
+
optional :exit_status, :message, 3, "gitaly.ExitStatus"
|
52
|
+
end
|
43
53
|
end
|
44
54
|
|
45
55
|
module Gitaly
|
@@ -49,4 +59,6 @@ module Gitaly
|
|
49
59
|
PostReceiveHookResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostReceiveHookResponse").msgclass
|
50
60
|
UpdateHookRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateHookRequest").msgclass
|
51
61
|
UpdateHookResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateHookResponse").msgclass
|
62
|
+
ReferenceTransactionHookRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookRequest").msgclass
|
63
|
+
ReferenceTransactionHookResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookResponse").msgclass
|
52
64
|
end
|
@@ -17,6 +17,7 @@ module Gitaly
|
|
17
17
|
rpc :PreReceiveHook, stream(PreReceiveHookRequest), stream(PreReceiveHookResponse)
|
18
18
|
rpc :PostReceiveHook, stream(PostReceiveHookRequest), stream(PostReceiveHookResponse)
|
19
19
|
rpc :UpdateHook, UpdateHookRequest, stream(UpdateHookResponse)
|
20
|
+
rpc :ReferenceTransactionHook, stream(ReferenceTransactionHookRequest), stream(ReferenceTransactionHookResponse)
|
20
21
|
end
|
21
22
|
|
22
23
|
Stub = Service.rpc_stub_class
|
@@ -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"
|
@@ -5,26 +5,28 @@ require 'google/protobuf'
|
|
5
5
|
|
6
6
|
require 'lint_pb'
|
7
7
|
require 'shared_pb'
|
8
|
-
require 'google/protobuf/timestamp_pb'
|
9
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
|
-
add_message "gitaly.
|
9
|
+
add_message "gitaly.SetAuthoritativeStorageRequest" do
|
11
10
|
optional :virtual_storage, :string, 1
|
11
|
+
optional :relative_path, :string, 2
|
12
|
+
optional :authoritative_storage, :string, 3
|
12
13
|
end
|
13
|
-
add_message "gitaly.
|
14
|
+
add_message "gitaly.SetAuthoritativeStorageResponse" do
|
14
15
|
end
|
15
16
|
add_message "gitaly.DatalossCheckRequest" do
|
16
17
|
optional :virtual_storage, :string, 1
|
17
18
|
end
|
18
19
|
add_message "gitaly.DatalossCheckResponse" do
|
19
|
-
optional :
|
20
|
-
|
21
|
-
optional :current_primary, :string, 3
|
22
|
-
optional :is_read_only, :bool, 4
|
23
|
-
repeated :outdated_nodes, :message, 5, "gitaly.DatalossCheckResponse.Nodes"
|
20
|
+
optional :primary, :string, 1
|
21
|
+
repeated :repositories, :message, 2, "gitaly.DatalossCheckResponse.Repository"
|
24
22
|
end
|
25
|
-
add_message "gitaly.DatalossCheckResponse.
|
23
|
+
add_message "gitaly.DatalossCheckResponse.Repository" do
|
26
24
|
optional :relative_path, :string, 1
|
27
|
-
repeated :
|
25
|
+
repeated :storages, :message, 2, "gitaly.DatalossCheckResponse.Repository.Storage"
|
26
|
+
end
|
27
|
+
add_message "gitaly.DatalossCheckResponse.Repository.Storage" do
|
28
|
+
optional :name, :string, 1
|
29
|
+
optional :behind_by, :int64, 2
|
28
30
|
end
|
29
31
|
add_message "gitaly.RepositoryReplicasRequest" do
|
30
32
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -53,11 +55,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
53
55
|
end
|
54
56
|
|
55
57
|
module Gitaly
|
56
|
-
|
57
|
-
|
58
|
+
SetAuthoritativeStorageRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetAuthoritativeStorageRequest").msgclass
|
59
|
+
SetAuthoritativeStorageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetAuthoritativeStorageResponse").msgclass
|
58
60
|
DatalossCheckRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckRequest").msgclass
|
59
61
|
DatalossCheckResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse").msgclass
|
60
|
-
DatalossCheckResponse::
|
62
|
+
DatalossCheckResponse::Repository = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse.Repository").msgclass
|
63
|
+
DatalossCheckResponse::Repository::Storage = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse.Repository.Storage").msgclass
|
61
64
|
RepositoryReplicasRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasRequest").msgclass
|
62
65
|
RepositoryReplicasResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse").msgclass
|
63
66
|
RepositoryReplicasResponse::RepositoryDetails = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse.RepositoryDetails").msgclass
|
@@ -23,9 +23,10 @@ module Gitaly
|
|
23
23
|
# DatalossCheck checks for nodes which are not up to date with the previous writable primary.
|
24
24
|
# This indicates possible data loss after a failover event.
|
25
25
|
rpc :DatalossCheck, DatalossCheckRequest, DatalossCheckResponse
|
26
|
-
#
|
27
|
-
#
|
28
|
-
|
26
|
+
# SetAuthoritativeStorage sets the authoritative storage for a repository on a given virtual storage.
|
27
|
+
# This causes the current version of the repository on the authoritative storage to be considered the
|
28
|
+
# latest and overwrite any other version on the virtual storage.
|
29
|
+
rpc :SetAuthoritativeStorage, SetAuthoritativeStorageRequest, SetAuthoritativeStorageResponse
|
29
30
|
end
|
30
31
|
|
31
32
|
Stub = Service.rpc_stub_class
|
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
|
@@ -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.rc3
|
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-08-11 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.3
|
97
|
+
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: Auto-generated gRPC client for gitaly
|
100
100
|
test_files: []
|