gitaly 15.9.0.pre.rc3 → 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: 91520831086001bd325638013178f38e853519ad047d26539c3ac0a2933d013c
4
- data.tar.gz: f2583226fccb73f93bb3efd31f3cff68ac10a160407e1824a00db67a55601f60
3
+ metadata.gz: d2c2a18eec7894e8921b401804bbc500679b9f85ed57b9bd21852b491d445956
4
+ data.tar.gz: 3cc997da0a82517c531156015aec17d709318663e64285683dd6499c73262e8e
5
5
  SHA512:
6
- metadata.gz: 1b6072f2d87fe115eabaf17624438e53f51c477a425ac730d3ef6239b3653a99df9fb4963cc0f935ec2e2df6c0821f431d974fc4ec1d2117239a4bc733b1bf1b
7
- data.tar.gz: 46ae6d409dce37d54d2f17b171984d6ae8e4df1acc1d9fd529696fc541fdaafab2569ba54678a692c35f5546082670305c4bfdbd31d788b139daa11869a92545
6
+ metadata.gz: 5cd00e19beee6b1651f80f225612853ed40ebdcc841b75fc413b131008ddf2a74c4e521b558252bb85d5d9d1a047342db7d5640fa70da8d1261e85d1c8441efc
7
+ data.tar.gz: 288862ce0997410863aeafded757125b76e3e454488fc7edb95d5831b2df48b86d11ff28aa4f26b3b8c152b99014d802d038291ebca5ac392cdfac71e5d3621e
@@ -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,24 @@ 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
59
77
  add_message "gitaly.ObjectFormatRequest" do
60
78
  optional :repository, :message, 1, "gitaly.Repository"
61
79
  end
@@ -191,14 +209,26 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
191
209
  optional :repository, :message, 1, "gitaly.Repository"
192
210
  optional :data, :bytes, 2
193
211
  end
212
+ add_message "gitaly.SetCustomHooksRequest" do
213
+ optional :repository, :message, 1, "gitaly.Repository"
214
+ optional :data, :bytes, 2
215
+ end
194
216
  add_message "gitaly.RestoreCustomHooksResponse" do
195
217
  end
218
+ add_message "gitaly.SetCustomHooksResponse" do
219
+ end
196
220
  add_message "gitaly.BackupCustomHooksRequest" do
197
221
  optional :repository, :message, 1, "gitaly.Repository"
198
222
  end
223
+ add_message "gitaly.GetCustomHooksRequest" do
224
+ optional :repository, :message, 1, "gitaly.Repository"
225
+ end
199
226
  add_message "gitaly.BackupCustomHooksResponse" do
200
227
  optional :data, :bytes, 1
201
228
  end
229
+ add_message "gitaly.GetCustomHooksResponse" do
230
+ optional :data, :bytes, 1
231
+ end
202
232
  add_message "gitaly.CreateRepositoryFromBundleRequest" do
203
233
  optional :repository, :message, 1, "gitaly.Repository"
204
234
  optional :data, :bytes, 2
@@ -349,6 +379,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
349
379
  add_message "gitaly.FullPathResponse" do
350
380
  optional :path, :string, 1
351
381
  end
382
+ add_message "gitaly.RemoveAllRequest" do
383
+ optional :storage_name, :string, 1
384
+ end
385
+ add_message "gitaly.RemoveAllResponse" do
386
+ end
352
387
  end
353
388
  end
354
389
 
@@ -370,6 +405,10 @@ module Gitaly
370
405
  CleanupResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupResponse").msgclass
371
406
  RepositorySizeRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeRequest").msgclass
372
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
373
412
  ObjectFormatRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectFormatRequest").msgclass
374
413
  ObjectFormatResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectFormatResponse").msgclass
375
414
  ApplyGitattributesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyGitattributesRequest").msgclass
@@ -404,9 +443,13 @@ module Gitaly
404
443
  GetConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetConfigRequest").msgclass
405
444
  GetConfigResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetConfigResponse").msgclass
406
445
  RestoreCustomHooksRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreCustomHooksRequest").msgclass
446
+ SetCustomHooksRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetCustomHooksRequest").msgclass
407
447
  RestoreCustomHooksResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreCustomHooksResponse").msgclass
448
+ SetCustomHooksResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetCustomHooksResponse").msgclass
408
449
  BackupCustomHooksRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.BackupCustomHooksRequest").msgclass
450
+ GetCustomHooksRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCustomHooksRequest").msgclass
409
451
  BackupCustomHooksResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.BackupCustomHooksResponse").msgclass
452
+ GetCustomHooksResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCustomHooksResponse").msgclass
410
453
  CreateRepositoryFromBundleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromBundleRequest").msgclass
411
454
  CreateRepositoryFromBundleResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromBundleResponse").msgclass
412
455
  FindLicenseRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLicenseRequest").msgclass
@@ -445,4 +488,6 @@ module Gitaly
445
488
  SetFullPathResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetFullPathResponse").msgclass
446
489
  FullPathRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FullPathRequest").msgclass
447
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
448
493
  end
@@ -27,8 +27,12 @@ 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
32
36
  # ObjectFormat determines the object format that is being used by the repository.
33
37
  rpc :ObjectFormat, ::Gitaly::ObjectFormatRequest, ::Gitaly::ObjectFormatResponse
34
38
  # This comment is left unintentionally blank.
@@ -93,8 +97,18 @@ module Gitaly
93
97
  # in a tar archive containing a `custom_hooks` directory. This directory is
94
98
  # ultimately extracted to the repository.
95
99
  rpc :RestoreCustomHooks, stream(::Gitaly::RestoreCustomHooksRequest), ::Gitaly::RestoreCustomHooksResponse
96
- # 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.
97
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)
98
112
  # This comment is left unintentionally blank.
99
113
  rpc :GetObjectDirectorySize, ::Gitaly::GetObjectDirectorySizeRequest, ::Gitaly::GetObjectDirectorySizeResponse
100
114
  # RemoveRepository will move the repository to `+gitaly/tmp/<relative_path>_removed` and
@@ -132,6 +146,8 @@ module Gitaly
132
146
  # FullPath reads the "gitlab.fullpath" configuration from the repository's
133
147
  # gitconfig. Returns an error in case the full path has not been configured.
134
148
  rpc :FullPath, ::Gitaly::FullPathRequest, ::Gitaly::FullPathResponse
149
+ # RemoveAll deletes all repositories on a specified storage.
150
+ rpc :RemoveAll, ::Gitaly::RemoveAllRequest, ::Gitaly::RemoveAllResponse
135
151
  end
136
152
 
137
153
  Stub = Service.rpc_stub_class
@@ -37,6 +37,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
37
37
  repeated :trailers, :message, 10, "gitaly.CommitTrailer"
38
38
  optional :short_stats, :message, 11, "gitaly.CommitStatInfo"
39
39
  repeated :referenced_by, :bytes, 12
40
+ optional :encoding, :string, 13
40
41
  end
41
42
  add_message "gitaly.CommitAuthor" do
42
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-rc3'
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.rc3
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-08 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.3.25
96
+ rubygems_version: 3.4.10
97
97
  signing_key:
98
98
  specification_version: 4
99
99
  summary: Auto-generated gRPC client for gitaly