gitaly 13.1.0.pre.rc3 → 13.3.0.pre.rc2
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 +7 -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 +19 -8
- data/ruby/proto/gitaly/praefect_services_pb.rb +6 -6
- 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 +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cdca792a99ee648ffc41df4d0576a9db5ca68ee6ae1367788abc8214a4409528
|
4
|
+
data.tar.gz: 82e4254e73f6256496eba57402098b8d54db57bc44b4ce6197589f8995f93095
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '09da451ddc5be007ed1e8be399459e12b769e060163556aaee716bdba9328a0cac04b0ecf7e6105e3ab105ce140185936b7521c1819563198b908d257f40b456'
|
7
|
+
data.tar.gz: 03f402d2717322a49c90cd4e89397ddea955da0f8b8b024ade8934743bec61d35690bff103fe86927b280fe0f0b352c154b346144474c26048545200b2941faf
|
@@ -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
|
@@ -194,6 +195,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
194
195
|
optional :repository, :message, 1, "gitaly.Repository"
|
195
196
|
optional :revision, :bytes, 2
|
196
197
|
optional :path, :bytes, 3
|
198
|
+
optional :literal_pathspec, :bool, 4
|
199
|
+
optional :global_options, :message, 5, "gitaly.GlobalOptions"
|
197
200
|
end
|
198
201
|
add_message "gitaly.LastCommitForPathResponse" do
|
199
202
|
optional :commit, :message, 1, "gitaly.GitCommit"
|
@@ -204,6 +207,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
204
207
|
optional :path, :bytes, 3
|
205
208
|
optional :limit, :int32, 4
|
206
209
|
optional :offset, :int32, 5
|
210
|
+
optional :literal_pathspec, :bool, 6
|
211
|
+
optional :global_options, :message, 7, "gitaly.GlobalOptions"
|
207
212
|
end
|
208
213
|
add_message "gitaly.ListLastCommitsForTreeResponse" do
|
209
214
|
repeated :commits, :message, 1, "gitaly.ListLastCommitsForTreeResponse.CommitForTree"
|
@@ -219,6 +224,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
219
224
|
optional :limit, :int32, 4
|
220
225
|
optional :path, :bytes, 5
|
221
226
|
optional :query, :string, 6
|
227
|
+
optional :global_options, :message, 7, "gitaly.GlobalOptions"
|
222
228
|
end
|
223
229
|
add_message "gitaly.CommitsByMessageResponse" do
|
224
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,19 +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
|
-
optional :
|
17
|
-
optional :to, :message, 2, "google.protobuf.Timestamp"
|
17
|
+
optional :virtual_storage, :string, 1
|
18
18
|
end
|
19
19
|
add_message "gitaly.DatalossCheckResponse" do
|
20
|
-
|
20
|
+
optional :primary, :string, 1
|
21
|
+
repeated :repositories, :message, 2, "gitaly.DatalossCheckResponse.Repository"
|
22
|
+
end
|
23
|
+
add_message "gitaly.DatalossCheckResponse.Repository" do
|
24
|
+
optional :relative_path, :string, 1
|
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
|
21
30
|
end
|
22
31
|
add_message "gitaly.RepositoryReplicasRequest" do
|
23
32
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -46,10 +55,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
46
55
|
end
|
47
56
|
|
48
57
|
module Gitaly
|
49
|
-
|
50
|
-
|
58
|
+
SetAuthoritativeStorageRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetAuthoritativeStorageRequest").msgclass
|
59
|
+
SetAuthoritativeStorageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetAuthoritativeStorageResponse").msgclass
|
51
60
|
DatalossCheckRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckRequest").msgclass
|
52
61
|
DatalossCheckResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse").msgclass
|
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
|
53
64
|
RepositoryReplicasRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasRequest").msgclass
|
54
65
|
RepositoryReplicasResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse").msgclass
|
55
66
|
RepositoryReplicasResponse::RepositoryDetails = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse.RepositoryDetails").msgclass
|
@@ -20,13 +20,13 @@ 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
|
-
#
|
28
|
-
#
|
29
|
-
|
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
|
30
30
|
end
|
31
31
|
|
32
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.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: 2020-
|
11
|
+
date: 2020-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -93,7 +93,7 @@ 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.
|
96
|
+
rubygems_version: 3.0.8
|
97
97
|
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: Auto-generated gRPC client for gitaly
|