gitaly 14.6.0.pre.rc1 → 14.8.0.pre.rc1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b201f1fddfda7672b5f7f11e28fabf4097806abc2e22586a7dbf3598cdafbb5
4
- data.tar.gz: 39ebe5ad0fe81e22f44f4fd79eb6e955404444a196cee37e62002594bf78db36
3
+ metadata.gz: d6a0e960a9a47e961c118d983f1278556d4f957c8ce591ecb64d3c5a1be4977d
4
+ data.tar.gz: 439fd0710abf51bb6c37e0d9bcf94b3958189f926bb84d45d5450d2ea6d5b51f
5
5
  SHA512:
6
- metadata.gz: 5072b5ef0e6223e4cb46ea1a672026d256b41ee76969a6b03e8ae828baebcfdb8615806675f4f8a4da8d8c2318f2acff2431bd7bb57120d8155f82215334a205
7
- data.tar.gz: 05462deaf89ecc1d54ca4c583456554be7381d45435ab71610d66c7c58912908acbfeb5cd9d7e8944b2d6b982dfdbb06735a9cb11d0b5865284ecb42c72f66df
6
+ metadata.gz: 60e310504e179b7c19def36248e6fa4ffba4c108ede7014aea618d4b92bde9edd3c2e35632915aa6ea234bb020ee90c0a93ccd7e965d61b486a457da1be5ce42
7
+ data.tar.gz: 611974eafb48812ca7ea5e3211a5950ae5659c293c857cc34989011ed9f01f02816b891bda4ca0be17fbcbc010055161ab579a75dd55bb5d1004a313efce369a
@@ -73,15 +73,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
73
73
  value :TREE, 2
74
74
  value :TAG, 3
75
75
  end
76
- add_message "gitaly.CommitsBetweenRequest" do
77
- optional :repository, :message, 1, "gitaly.Repository"
78
- optional :from, :bytes, 2
79
- optional :to, :bytes, 3
80
- optional :pagination_params, :message, 4, "gitaly.PaginationParameter"
81
- end
82
- add_message "gitaly.CommitsBetweenResponse" do
83
- repeated :commits, :message, 1, "gitaly.GitCommit"
84
- end
85
76
  add_message "gitaly.CountCommitsRequest" do
86
77
  optional :repository, :message, 1, "gitaly.Repository"
87
78
  optional :revision, :bytes, 2
@@ -317,8 +308,6 @@ module Gitaly
317
308
  TreeEntryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryRequest").msgclass
318
309
  TreeEntryResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryResponse").msgclass
319
310
  TreeEntryResponse::ObjectType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryResponse.ObjectType").enummodule
320
- CommitsBetweenRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsBetweenRequest").msgclass
321
- CommitsBetweenResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsBetweenResponse").msgclass
322
311
  CountCommitsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountCommitsRequest").msgclass
323
312
  CountCommitsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountCommitsResponse").msgclass
324
313
  CountDivergingCommitsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountDivergingCommitsRequest").msgclass
@@ -15,16 +15,14 @@ module Gitaly
15
15
  self.service_name = 'gitaly.CommitService'
16
16
 
17
17
  # ListCommits lists all commits reachable via a set of references by doing a
18
- # graph walk. This deprecates FindAllCommits, FindCommits (except Follow is
19
- # not yet supported) and CommitsBetweenRequest. Any unknown revisions will
20
- # cause the RPC to fail.
18
+ # graph walk. This deprecates FindAllCommits and FindCommits (except Follow
19
+ # is not yet supported). Any unknown revisions will cause the RPC to fail.
21
20
  rpc :ListCommits, ::Gitaly::ListCommitsRequest, stream(::Gitaly::ListCommitsResponse)
22
21
  # ListAllCommits lists all commits present in the repository, including
23
22
  # those not reachable by any reference.
24
23
  rpc :ListAllCommits, ::Gitaly::ListAllCommitsRequest, stream(::Gitaly::ListAllCommitsResponse)
25
24
  rpc :CommitIsAncestor, ::Gitaly::CommitIsAncestorRequest, ::Gitaly::CommitIsAncestorResponse
26
25
  rpc :TreeEntry, ::Gitaly::TreeEntryRequest, stream(::Gitaly::TreeEntryResponse)
27
- rpc :CommitsBetween, ::Gitaly::CommitsBetweenRequest, stream(::Gitaly::CommitsBetweenResponse)
28
26
  rpc :CountCommits, ::Gitaly::CountCommitsRequest, ::Gitaly::CountCommitsResponse
29
27
  rpc :CountDivergingCommits, ::Gitaly::CountDivergingCommitsRequest, ::Gitaly::CountDivergingCommitsResponse
30
28
  rpc :GetTreeEntries, ::Gitaly::GetTreeEntriesRequest, stream(::Gitaly::GetTreeEntriesResponse)
@@ -11,9 +11,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
11
11
  optional :user_id, :string, 3
12
12
  optional :changes, :bytes, 4
13
13
  end
14
+ add_message "gitaly.ReferenceUpdateError" do
15
+ optional :reference_name, :bytes, 1
16
+ optional :old_oid, :string, 2
17
+ optional :new_oid, :string, 3
18
+ end
14
19
  end
15
20
  end
16
21
 
17
22
  module Gitaly
18
23
  AccessCheckError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AccessCheckError").msgclass
24
+ ReferenceUpdateError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceUpdateError").msgclass
19
25
  end
@@ -75,6 +75,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
75
75
  add_message "gitaly.UserMergeBranchError" do
76
76
  oneof :error do
77
77
  optional :access_check, :message, 1, "gitaly.AccessCheckError"
78
+ optional :reference_update, :message, 2, "gitaly.ReferenceUpdateError"
78
79
  end
79
80
  end
80
81
  add_message "gitaly.UserMergeToRefRequest" do
@@ -176,7 +176,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
176
176
  end
177
177
  add_message "gitaly.PackRefsRequest" do
178
178
  optional :repository, :message, 1, "gitaly.Repository"
179
- optional :all_refs, :bool, 2
180
179
  end
181
180
  add_message "gitaly.PackRefsResponse" do
182
181
  end
@@ -184,6 +183,17 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
184
183
  optional :repository, :message, 1, "gitaly.Repository"
185
184
  repeated :patterns, :bytes, 2
186
185
  optional :head, :bool, 3
186
+ optional :sort_by, :message, 4, "gitaly.ListRefsRequest.SortBy"
187
+ end
188
+ add_message "gitaly.ListRefsRequest.SortBy" do
189
+ optional :key, :enum, 1, "gitaly.ListRefsRequest.SortBy.Key"
190
+ optional :direction, :enum, 2, "gitaly.SortDirection"
191
+ end
192
+ add_enum "gitaly.ListRefsRequest.SortBy.Key" do
193
+ value :REFNAME, 0
194
+ value :CREATORDATE, 1
195
+ value :AUTHORDATE, 2
196
+ value :COMMITTERDATE, 3
187
197
  end
188
198
  add_message "gitaly.ListRefsResponse" do
189
199
  repeated :references, :message, 1, "gitaly.ListRefsResponse.Reference"
@@ -251,6 +261,8 @@ module Gitaly
251
261
  PackRefsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackRefsRequest").msgclass
252
262
  PackRefsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackRefsResponse").msgclass
253
263
  ListRefsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRefsRequest").msgclass
264
+ ListRefsRequest::SortBy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRefsRequest.SortBy").msgclass
265
+ ListRefsRequest::SortBy::Key = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRefsRequest.SortBy.Key").enummodule
254
266
  ListRefsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRefsResponse").msgclass
255
267
  ListRefsResponse::Reference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRefsResponse.Reference").msgclass
256
268
  FindRefsByOIDRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRefsByOIDRequest").msgclass
@@ -235,8 +235,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
235
235
  add_message "gitaly.GetRawChangesResponse.RawChange" do
236
236
  optional :blob_id, :string, 1
237
237
  optional :size, :int64, 2
238
- optional :new_path, :string, 3
239
- optional :old_path, :string, 4
240
238
  optional :operation, :enum, 5, "gitaly.GetRawChangesResponse.RawChange.Operation"
241
239
  optional :raw_operation, :string, 6
242
240
  optional :old_mode, :int32, 7
@@ -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
@@ -16,6 +16,8 @@ module Gitaly
16
16
 
17
17
  # To forward 'git upload-pack' to Gitaly for SSH sessions
18
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
22
  rpc :SSHReceivePack, stream(::Gitaly::SSHReceivePackRequest), stream(::Gitaly::SSHReceivePackResponse)
21
23
  # To forward 'git upload-archive' to Gitaly for SSH sessions
@@ -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
@@ -2,5 +2,5 @@
2
2
  # (https://gitlab.com/gitlab-org/release-tools/), and should not be
3
3
  # modified.
4
4
  module Gitaly
5
- VERSION = '14.6.0-rc1'
5
+ VERSION = '14.8.0-rc1'
6
6
  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: 14.6.0.pre.rc1
4
+ version: 14.8.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: 2021-12-06 00:00:00.000000000 Z
11
+ date: 2022-01-21 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
@@ -94,8 +94,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  - !ruby/object:Gem::Version
95
95
  version: 1.3.1
96
96
  requirements: []
97
- rubygems_version: 3.1.6
98
- signing_key:
97
+ rubygems_version: 3.2.29
98
+ signing_key:
99
99
  specification_version: 4
100
100
  summary: Auto-generated gRPC client for gitaly
101
101
  test_files: []