gitaly 15.9.0.pre.rc2 → 15.11.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: bc77d2804a3fe3e35cabedba8aabcf4e56102919c7277c8a5dbbc75a85b3c5e8
4
- data.tar.gz: e37214f1fb958302383a81840de31870e5e910364b4d0659331eb13903a68218
3
+ metadata.gz: d2c2a18eec7894e8921b401804bbc500679b9f85ed57b9bd21852b491d445956
4
+ data.tar.gz: 3cc997da0a82517c531156015aec17d709318663e64285683dd6499c73262e8e
5
5
  SHA512:
6
- metadata.gz: 6c6a0bd508832ff310a7b59abad80d4e6076192f77d3a9b6766cf6f6933adb8347f243517ea5a53840dbd890571f709887fd6bf798c9767253b9d06d6d94f588
7
- data.tar.gz: 37af9256258f65d6b262bf5744a4021db0bb350cce7b55c01e96ddee8883ac8402ba8e9e787d19182780fc26e563c0b27a71eff8bc9624057cb18067d9876d6d
6
+ metadata.gz: 5cd00e19beee6b1651f80f225612853ed40ebdcc841b75fc413b131008ddf2a74c4e521b558252bb85d5d9d1a047342db7d5640fa70da8d1261e85d1c8441efc
7
+ data.tar.gz: 288862ce0997410863aeafded757125b76e3e454488fc7edb95d5831b2df48b86d11ff28aa4f26b3b8c152b99014d802d038291ebca5ac392cdfac71e5d3621e
@@ -196,6 +196,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
196
196
  optional :global_options, :message, 15, "gitaly.GlobalOptions"
197
197
  optional :trailers, :bool, 16
198
198
  optional :include_shortstat, :bool, 17
199
+ repeated :include_referenced_by, :bytes, 18
199
200
  end
200
201
  add_enum "gitaly.FindCommitsRequest.Order" do
201
202
  value :NONE, 0
@@ -100,6 +100,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
100
100
  optional :repository, :message, 1, "gitaly.Repository"
101
101
  repeated :commits, :string, 2
102
102
  repeated :requests, :message, 3, "gitaly.FindChangedPathsRequest.Request"
103
+ optional :merge_commit_diff_mode, :enum, 4, "gitaly.FindChangedPathsRequest.MergeCommitDiffMode"
103
104
  end
104
105
  add_message "gitaly.FindChangedPathsRequest.Request" do
105
106
  oneof :type do
@@ -115,6 +116,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
115
116
  optional :commit_revision, :string, 1
116
117
  repeated :parent_commit_revisions, :string, 2
117
118
  end
119
+ add_enum "gitaly.FindChangedPathsRequest.MergeCommitDiffMode" do
120
+ value :MERGE_COMMIT_DIFF_MODE_UNSPECIFIED, 0
121
+ value :MERGE_COMMIT_DIFF_MODE_INCLUDE_MERGES, 1
122
+ value :MERGE_COMMIT_DIFF_MODE_ALL_PARENTS, 2
123
+ end
118
124
  add_message "gitaly.FindChangedPathsResponse" do
119
125
  repeated :paths, :message, 1, "gitaly.ChangedPaths"
120
126
  end
@@ -161,6 +167,7 @@ module Gitaly
161
167
  FindChangedPathsRequest::Request = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindChangedPathsRequest.Request").msgclass
162
168
  FindChangedPathsRequest::Request::TreeRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindChangedPathsRequest.Request.TreeRequest").msgclass
163
169
  FindChangedPathsRequest::Request::CommitRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindChangedPathsRequest.Request.CommitRequest").msgclass
170
+ FindChangedPathsRequest::MergeCommitDiffMode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindChangedPathsRequest.MergeCommitDiffMode").enummodule
164
171
  FindChangedPathsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindChangedPathsResponse").msgclass
165
172
  ChangedPaths = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ChangedPaths").msgclass
166
173
  ChangedPaths::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ChangedPaths.Status").enummodule
@@ -63,6 +63,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
63
63
  optional :gl_id, :string, 3
64
64
  optional :gl_username, :string, 5
65
65
  optional :git_protocol, :string, 6
66
+ optional :remote_ip, :string, 7
66
67
  end
67
68
  add_message "gitaly.PackObjectsHookWithSidechannelResponse" do
68
69
  end
@@ -7,11 +7,19 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
7
7
  add_file("log.proto", :syntax => :proto3) do
8
8
  add_message "gitaly.LogEntry" do
9
9
  repeated :reference_updates, :message, 1, "gitaly.LogEntry.ReferenceUpdate"
10
+ optional :default_branch_update, :message, 2, "gitaly.LogEntry.DefaultBranchUpdate"
11
+ optional :custom_hooks_update, :message, 3, "gitaly.LogEntry.CustomHooksUpdate"
10
12
  end
11
13
  add_message "gitaly.LogEntry.ReferenceUpdate" do
12
14
  optional :reference_name, :bytes, 1
13
15
  optional :new_oid, :bytes, 2
14
16
  end
17
+ add_message "gitaly.LogEntry.DefaultBranchUpdate" do
18
+ optional :reference_name, :bytes, 1
19
+ end
20
+ add_message "gitaly.LogEntry.CustomHooksUpdate" do
21
+ optional :custom_hooks_tar, :bytes, 1
22
+ end
15
23
  add_message "gitaly.LogIndex" do
16
24
  optional :log_index, :uint64, 1
17
25
  end
@@ -21,5 +29,7 @@ end
21
29
  module Gitaly
22
30
  LogEntry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LogEntry").msgclass
23
31
  LogEntry::ReferenceUpdate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LogEntry.ReferenceUpdate").msgclass
32
+ LogEntry::DefaultBranchUpdate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LogEntry.DefaultBranchUpdate").msgclass
33
+ LogEntry::CustomHooksUpdate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LogEntry.CustomHooksUpdate").msgclass
24
34
  LogIndex = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LogIndex").msgclass
25
35
  end
@@ -56,6 +56,30 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
56
56
  add_message "gitaly.RepositorySizeResponse" do
57
57
  optional :size, :int64, 1
58
58
  end
59
+ add_message "gitaly.RepositoryInfoRequest" do
60
+ optional :repository, :message, 1, "gitaly.Repository"
61
+ end
62
+ add_message "gitaly.RepositoryInfoResponse" do
63
+ optional :size, :uint64, 1
64
+ optional :references, :message, 2, "gitaly.RepositoryInfoResponse.ReferencesInfo"
65
+ optional :objects, :message, 3, "gitaly.RepositoryInfoResponse.ObjectsInfo"
66
+ end
67
+ add_message "gitaly.RepositoryInfoResponse.ReferencesInfo" do
68
+ optional :loose_count, :uint64, 1
69
+ optional :packed_size, :uint64, 2
70
+ end
71
+ add_message "gitaly.RepositoryInfoResponse.ObjectsInfo" do
72
+ optional :size, :uint64, 1
73
+ optional :recent_size, :uint64, 2
74
+ optional :stale_size, :uint64, 3
75
+ optional :keep_size, :uint64, 4
76
+ end
77
+ add_message "gitaly.ObjectFormatRequest" do
78
+ optional :repository, :message, 1, "gitaly.Repository"
79
+ end
80
+ add_message "gitaly.ObjectFormatResponse" do
81
+ optional :format, :enum, 1, "gitaly.ObjectFormat"
82
+ end
59
83
  add_message "gitaly.ApplyGitattributesRequest" do
60
84
  optional :repository, :message, 1, "gitaly.Repository"
61
85
  optional :revision, :bytes, 2
@@ -185,14 +209,26 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
185
209
  optional :repository, :message, 1, "gitaly.Repository"
186
210
  optional :data, :bytes, 2
187
211
  end
212
+ add_message "gitaly.SetCustomHooksRequest" do
213
+ optional :repository, :message, 1, "gitaly.Repository"
214
+ optional :data, :bytes, 2
215
+ end
188
216
  add_message "gitaly.RestoreCustomHooksResponse" do
189
217
  end
218
+ add_message "gitaly.SetCustomHooksResponse" do
219
+ end
190
220
  add_message "gitaly.BackupCustomHooksRequest" do
191
221
  optional :repository, :message, 1, "gitaly.Repository"
192
222
  end
223
+ add_message "gitaly.GetCustomHooksRequest" do
224
+ optional :repository, :message, 1, "gitaly.Repository"
225
+ end
193
226
  add_message "gitaly.BackupCustomHooksResponse" do
194
227
  optional :data, :bytes, 1
195
228
  end
229
+ add_message "gitaly.GetCustomHooksResponse" do
230
+ optional :data, :bytes, 1
231
+ end
196
232
  add_message "gitaly.CreateRepositoryFromBundleRequest" do
197
233
  optional :repository, :message, 1, "gitaly.Repository"
198
234
  optional :data, :bytes, 2
@@ -343,6 +379,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
343
379
  add_message "gitaly.FullPathResponse" do
344
380
  optional :path, :string, 1
345
381
  end
382
+ add_message "gitaly.RemoveAllRequest" do
383
+ optional :storage_name, :string, 1
384
+ end
385
+ add_message "gitaly.RemoveAllResponse" do
386
+ end
346
387
  end
347
388
  end
348
389
 
@@ -364,6 +405,12 @@ module Gitaly
364
405
  CleanupResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupResponse").msgclass
365
406
  RepositorySizeRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeRequest").msgclass
366
407
  RepositorySizeResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeResponse").msgclass
408
+ RepositoryInfoRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryInfoRequest").msgclass
409
+ RepositoryInfoResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryInfoResponse").msgclass
410
+ RepositoryInfoResponse::ReferencesInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryInfoResponse.ReferencesInfo").msgclass
411
+ RepositoryInfoResponse::ObjectsInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryInfoResponse.ObjectsInfo").msgclass
412
+ ObjectFormatRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectFormatRequest").msgclass
413
+ ObjectFormatResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectFormatResponse").msgclass
367
414
  ApplyGitattributesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyGitattributesRequest").msgclass
368
415
  ApplyGitattributesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyGitattributesResponse").msgclass
369
416
  FetchBundleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchBundleRequest").msgclass
@@ -396,9 +443,13 @@ module Gitaly
396
443
  GetConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetConfigRequest").msgclass
397
444
  GetConfigResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetConfigResponse").msgclass
398
445
  RestoreCustomHooksRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreCustomHooksRequest").msgclass
446
+ SetCustomHooksRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetCustomHooksRequest").msgclass
399
447
  RestoreCustomHooksResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreCustomHooksResponse").msgclass
448
+ SetCustomHooksResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetCustomHooksResponse").msgclass
400
449
  BackupCustomHooksRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.BackupCustomHooksRequest").msgclass
450
+ GetCustomHooksRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCustomHooksRequest").msgclass
401
451
  BackupCustomHooksResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.BackupCustomHooksResponse").msgclass
452
+ GetCustomHooksResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCustomHooksResponse").msgclass
402
453
  CreateRepositoryFromBundleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromBundleRequest").msgclass
403
454
  CreateRepositoryFromBundleResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromBundleResponse").msgclass
404
455
  FindLicenseRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLicenseRequest").msgclass
@@ -437,4 +488,6 @@ module Gitaly
437
488
  SetFullPathResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetFullPathResponse").msgclass
438
489
  FullPathRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FullPathRequest").msgclass
439
490
  FullPathResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FullPathResponse").msgclass
491
+ RemoveAllRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveAllRequest").msgclass
492
+ RemoveAllResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveAllResponse").msgclass
440
493
  end
@@ -27,8 +27,14 @@ module Gitaly
27
27
  rpc :GarbageCollect, ::Gitaly::GarbageCollectRequest, ::Gitaly::GarbageCollectResponse
28
28
  # WriteCommitGraph is deprecated in favor of OptimizeRepository.
29
29
  rpc :WriteCommitGraph, ::Gitaly::WriteCommitGraphRequest, ::Gitaly::WriteCommitGraphResponse
30
- # This comment is left unintentionally blank.
30
+ # RepositorySize returns information on the complete on-disk repository size. If you need more
31
+ # detailed information about the size of various sub-structures you should instead use the
32
+ # RepositoryInfo RPC.
31
33
  rpc :RepositorySize, ::Gitaly::RepositorySizeRequest, ::Gitaly::RepositorySizeResponse
34
+ # RepositoryInfo returns detailed information about a repository and its data structures.
35
+ rpc :RepositoryInfo, ::Gitaly::RepositoryInfoRequest, ::Gitaly::RepositoryInfoResponse
36
+ # ObjectFormat determines the object format that is being used by the repository.
37
+ rpc :ObjectFormat, ::Gitaly::ObjectFormatRequest, ::Gitaly::ObjectFormatResponse
32
38
  # This comment is left unintentionally blank.
33
39
  rpc :ApplyGitattributes, ::Gitaly::ApplyGitattributesRequest, ::Gitaly::ApplyGitattributesResponse
34
40
  # FetchRemote fetches references from a remote repository into the local
@@ -91,8 +97,18 @@ module Gitaly
91
97
  # in a tar archive containing a `custom_hooks` directory. This directory is
92
98
  # ultimately extracted to the repository.
93
99
  rpc :RestoreCustomHooks, stream(::Gitaly::RestoreCustomHooksRequest), ::Gitaly::RestoreCustomHooksResponse
94
- # This comment is left unintentionally blank.
100
+ # SetCustomHooks sets the git hooks for a repository. The hooks are sent in a
101
+ # tar archive containing a `custom_hooks` directory. This directory is
102
+ # ultimately extracted to the repository.
103
+ rpc :SetCustomHooks, stream(::Gitaly::SetCustomHooksRequest), ::Gitaly::SetCustomHooksResponse
104
+ # BackupCustomHooks fetches the git hooks for a repository. The hooks are
105
+ # sent in a tar archive containing a `custom_hooks` directory. If no hooks
106
+ # are present in the repository, the response will have no data.
95
107
  rpc :BackupCustomHooks, ::Gitaly::BackupCustomHooksRequest, stream(::Gitaly::BackupCustomHooksResponse)
108
+ # GetCustomHooks fetches the git hooks for a repository. The hooks are sent
109
+ # in a tar archive containing a `custom_hooks` directory. If no hooks are
110
+ # present in the repository, the response will have no data.
111
+ rpc :GetCustomHooks, ::Gitaly::GetCustomHooksRequest, stream(::Gitaly::GetCustomHooksResponse)
96
112
  # This comment is left unintentionally blank.
97
113
  rpc :GetObjectDirectorySize, ::Gitaly::GetObjectDirectorySizeRequest, ::Gitaly::GetObjectDirectorySizeResponse
98
114
  # RemoveRepository will move the repository to `+gitaly/tmp/<relative_path>_removed` and
@@ -130,6 +146,8 @@ module Gitaly
130
146
  # FullPath reads the "gitlab.fullpath" configuration from the repository's
131
147
  # gitconfig. Returns an error in case the full path has not been configured.
132
148
  rpc :FullPath, ::Gitaly::FullPathRequest, ::Gitaly::FullPathResponse
149
+ # RemoveAll deletes all repositories on a specified storage.
150
+ rpc :RemoveAll, ::Gitaly::RemoveAllRequest, ::Gitaly::RemoveAllResponse
133
151
  end
134
152
 
135
153
  Stub = Service.rpc_stub_class
@@ -36,6 +36,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
36
36
  optional :tree_id, :string, 9
37
37
  repeated :trailers, :message, 10, "gitaly.CommitTrailer"
38
38
  optional :short_stats, :message, 11, "gitaly.CommitStatInfo"
39
+ repeated :referenced_by, :bytes, 12
40
+ optional :encoding, :string, 13
39
41
  end
40
42
  add_message "gitaly.CommitAuthor" do
41
43
  optional :name, :bytes, 1
@@ -1,4 +1,4 @@
1
1
  # This file is generated by build-proto-gem. Do not edit.
2
2
  module Gitaly
3
- VERSION = '15.9.0-rc2'
3
+ VERSION = '15.11.0-rc1'
4
4
  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: 15.9.0.pre.rc2
4
+ version: 15.11.0.pre.rc1
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-02-06 00:00:00.000000000 Z
11
+ date: 2023-04-14 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.4.6
96
+ rubygems_version: 3.4.10
97
97
  signing_key:
98
98
  specification_version: 4
99
99
  summary: Auto-generated gRPC client for gitaly