gitaly 13.9.0.pre.rc1 → 14.1.0.pre.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/blob_pb.rb +27 -11
- data/ruby/proto/gitaly/blob_services_pb.rb +17 -2
- data/ruby/proto/gitaly/commit_pb.rb +1 -0
- data/ruby/proto/gitaly/conflicts_services_pb.rb +3 -0
- data/ruby/proto/gitaly/diff_pb.rb +6 -0
- data/ruby/proto/gitaly/hook_pb.rb +11 -0
- data/ruby/proto/gitaly/hook_services_pb.rb +4 -0
- data/ruby/proto/gitaly/praefect_pb.rb +1 -0
- data/ruby/proto/gitaly/ref_services_pb.rb +2 -0
- data/ruby/proto/gitaly/remote_pb.rb +8 -0
- data/ruby/proto/gitaly/remote_services_pb.rb +10 -1
- data/ruby/proto/gitaly/repository-service_pb.rb +13 -1
- data/ruby/proto/gitaly/repository-service_services_pb.rb +6 -0
- data/ruby/proto/gitaly/shared_pb.rb +1 -0
- data/ruby/proto/gitaly/version.rb +1 -1
- data/ruby/proto/gitaly/wiki_pb.rb +0 -33
- data/ruby/proto/gitaly/wiki_services_pb.rb +0 -3
- 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: b3b0ab9b27f6301488833a0a1955f70f7310da929d2a1f7df1fadb1776b23964
|
4
|
+
data.tar.gz: 0505a7b30c6bdeefcdd039c923351c15c3bd94a80680a92e8fd3e63e923d2352
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 502d767ecbb006e2a5f9d3089252073f17729a77aacfbc8ff654c26180294e54520b1a2c7a005fbe72e9c00103dd52cb7e2de62fad8f8972888897579fd5d241
|
7
|
+
data.tar.gz: c75f50414fa25fe45f3ca1242d954d771a040b7ce13674c38516613e8f88103a9ce18f0fdac8e2342d977cc002856b8bd214505182820602c35e7ac96d9b9a7c
|
@@ -36,6 +36,20 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
36
36
|
optional :path, :bytes, 7
|
37
37
|
optional :type, :enum, 8, "gitaly.ObjectType"
|
38
38
|
end
|
39
|
+
add_message "gitaly.ListBlobsRequest" do
|
40
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
41
|
+
repeated :revisions, :string, 2
|
42
|
+
optional :limit, :uint32, 3
|
43
|
+
optional :bytes_limit, :int64, 4
|
44
|
+
end
|
45
|
+
add_message "gitaly.ListBlobsResponse" do
|
46
|
+
repeated :blobs, :message, 1, "gitaly.ListBlobsResponse.Blob"
|
47
|
+
end
|
48
|
+
add_message "gitaly.ListBlobsResponse.Blob" do
|
49
|
+
optional :oid, :string, 1
|
50
|
+
optional :size, :int64, 2
|
51
|
+
optional :data, :bytes, 3
|
52
|
+
end
|
39
53
|
add_message "gitaly.LFSPointer" do
|
40
54
|
optional :size, :int64, 1
|
41
55
|
optional :data, :bytes, 2
|
@@ -53,20 +67,19 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
53
67
|
add_message "gitaly.GetLFSPointersResponse" do
|
54
68
|
repeated :lfs_pointers, :message, 1, "gitaly.LFSPointer"
|
55
69
|
end
|
56
|
-
add_message "gitaly.
|
70
|
+
add_message "gitaly.ListLFSPointersRequest" do
|
57
71
|
optional :repository, :message, 1, "gitaly.Repository"
|
58
|
-
|
72
|
+
repeated :revisions, :string, 2
|
59
73
|
optional :limit, :int32, 3
|
60
|
-
optional :not_in_all, :bool, 4
|
61
|
-
repeated :not_in_refs, :bytes, 5
|
62
74
|
end
|
63
|
-
add_message "gitaly.
|
75
|
+
add_message "gitaly.ListLFSPointersResponse" do
|
64
76
|
repeated :lfs_pointers, :message, 1, "gitaly.LFSPointer"
|
65
77
|
end
|
66
|
-
add_message "gitaly.
|
78
|
+
add_message "gitaly.ListAllLFSPointersRequest" do
|
67
79
|
optional :repository, :message, 1, "gitaly.Repository"
|
80
|
+
optional :limit, :int32, 3
|
68
81
|
end
|
69
|
-
add_message "gitaly.
|
82
|
+
add_message "gitaly.ListAllLFSPointersResponse" do
|
70
83
|
repeated :lfs_pointers, :message, 1, "gitaly.LFSPointer"
|
71
84
|
end
|
72
85
|
end
|
@@ -78,12 +91,15 @@ module Gitaly
|
|
78
91
|
GetBlobsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsRequest").msgclass
|
79
92
|
GetBlobsRequest::RevisionPath = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsRequest.RevisionPath").msgclass
|
80
93
|
GetBlobsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsResponse").msgclass
|
94
|
+
ListBlobsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBlobsRequest").msgclass
|
95
|
+
ListBlobsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBlobsResponse").msgclass
|
96
|
+
ListBlobsResponse::Blob = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBlobsResponse.Blob").msgclass
|
81
97
|
LFSPointer = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LFSPointer").msgclass
|
82
98
|
NewBlobObject = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.NewBlobObject").msgclass
|
83
99
|
GetLFSPointersRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetLFSPointersRequest").msgclass
|
84
100
|
GetLFSPointersResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetLFSPointersResponse").msgclass
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
101
|
+
ListLFSPointersRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListLFSPointersRequest").msgclass
|
102
|
+
ListLFSPointersResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListLFSPointersResponse").msgclass
|
103
|
+
ListAllLFSPointersRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListAllLFSPointersRequest").msgclass
|
104
|
+
ListAllLFSPointersResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListAllLFSPointersResponse").msgclass
|
89
105
|
end
|
@@ -19,9 +19,24 @@ module Gitaly
|
|
19
19
|
# response
|
20
20
|
rpc :GetBlob, Gitaly::GetBlobRequest, stream(Gitaly::GetBlobResponse)
|
21
21
|
rpc :GetBlobs, Gitaly::GetBlobsRequest, stream(Gitaly::GetBlobsResponse)
|
22
|
+
# ListBlobs will list all blobs reachable from a given set of revisions by
|
23
|
+
# doing a graph walk. It is not valid to pass revisions which do not resolve
|
24
|
+
# to an existing object.
|
25
|
+
rpc :ListBlobs, Gitaly::ListBlobsRequest, stream(Gitaly::ListBlobsResponse)
|
26
|
+
# GetLFSPointers retrieves LFS pointers from a given set of object IDs.
|
27
|
+
# This RPC filters all requested objects and only returns those which refer
|
28
|
+
# to a valid LFS pointer.
|
22
29
|
rpc :GetLFSPointers, Gitaly::GetLFSPointersRequest, stream(Gitaly::GetLFSPointersResponse)
|
23
|
-
|
24
|
-
|
30
|
+
# ListLFSPointers retrieves LFS pointers reachable from a given set of
|
31
|
+
# revisions by doing a graph walk. This includes both normal revisions like
|
32
|
+
# an object ID or branch, but also the pseudo-revisions "--all" and "--not"
|
33
|
+
# as documented in git-rev-parse(1). Revisions which don't directly or
|
34
|
+
# transitively reference any LFS pointers are ignored. It is not valid to
|
35
|
+
# pass revisions which do not resolve to an existing object.
|
36
|
+
rpc :ListLFSPointers, Gitaly::ListLFSPointersRequest, stream(Gitaly::ListLFSPointersResponse)
|
37
|
+
# ListAllLFSPointers retrieves all LFS pointers in the repository, including
|
38
|
+
# those not reachable by any reference.
|
39
|
+
rpc :ListAllLFSPointers, Gitaly::ListAllLFSPointersRequest, stream(Gitaly::ListAllLFSPointersResponse)
|
25
40
|
end
|
26
41
|
|
27
42
|
Stub = Service.rpc_stub_class
|
@@ -49,6 +49,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
49
49
|
optional :repository, :message, 1, "gitaly.Repository"
|
50
50
|
optional :from, :bytes, 2
|
51
51
|
optional :to, :bytes, 3
|
52
|
+
optional :pagination_params, :message, 4, "gitaly.PaginationParameter"
|
52
53
|
end
|
53
54
|
add_message "gitaly.CommitsBetweenResponse" do
|
54
55
|
repeated :commits, :message, 1, "gitaly.GitCommit"
|
@@ -15,6 +15,9 @@ module Gitaly
|
|
15
15
|
self.service_name = 'gitaly.ConflictsService'
|
16
16
|
|
17
17
|
rpc :ListConflictFiles, Gitaly::ListConflictFilesRequest, stream(Gitaly::ListConflictFilesResponse)
|
18
|
+
# ResolveConflicts tries to resolve a conflicting merge with a set of
|
19
|
+
# user-provided merge resolutions. If resolving the conflict succeeds, the
|
20
|
+
# result will be a new merge commit.
|
18
21
|
rpc :ResolveConflicts, stream(Gitaly::ResolveConflictsRequest), Gitaly::ResolveConflictsResponse
|
19
22
|
end
|
20
23
|
|
@@ -22,6 +22,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
22
22
|
optional :safe_max_files, :int32, 11
|
23
23
|
optional :safe_max_lines, :int32, 12
|
24
24
|
optional :safe_max_bytes, :int32, 13
|
25
|
+
optional :diff_mode, :enum, 15, "gitaly.CommitDiffRequest.DiffMode"
|
26
|
+
end
|
27
|
+
add_enum "gitaly.CommitDiffRequest.DiffMode" do
|
28
|
+
value :DEFAULT, 0
|
29
|
+
value :WORDDIFF, 1
|
25
30
|
end
|
26
31
|
add_message "gitaly.CommitDiffResponse" do
|
27
32
|
optional :from_path, :bytes, 1
|
@@ -107,6 +112,7 @@ end
|
|
107
112
|
|
108
113
|
module Gitaly
|
109
114
|
CommitDiffRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffRequest").msgclass
|
115
|
+
CommitDiffRequest::DiffMode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffRequest.DiffMode").enummodule
|
110
116
|
CommitDiffResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffResponse").msgclass
|
111
117
|
CommitDeltaRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDeltaRequest").msgclass
|
112
118
|
CommitDelta = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDelta").msgclass
|
@@ -57,6 +57,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
57
57
|
optional :stderr, :bytes, 2
|
58
58
|
optional :exit_status, :message, 3, "gitaly.ExitStatus"
|
59
59
|
end
|
60
|
+
add_message "gitaly.PackObjectsHookRequest" do
|
61
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
62
|
+
repeated :args, :string, 2
|
63
|
+
optional :stdin, :bytes, 3
|
64
|
+
end
|
65
|
+
add_message "gitaly.PackObjectsHookResponse" do
|
66
|
+
optional :stdout, :bytes, 1
|
67
|
+
optional :stderr, :bytes, 2
|
68
|
+
end
|
60
69
|
end
|
61
70
|
end
|
62
71
|
|
@@ -70,4 +79,6 @@ module Gitaly
|
|
70
79
|
ReferenceTransactionHookRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookRequest").msgclass
|
71
80
|
ReferenceTransactionHookRequest::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookRequest.State").enummodule
|
72
81
|
ReferenceTransactionHookResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookResponse").msgclass
|
82
|
+
PackObjectsHookRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackObjectsHookRequest").msgclass
|
83
|
+
PackObjectsHookResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackObjectsHookResponse").msgclass
|
73
84
|
end
|
@@ -18,6 +18,10 @@ module Gitaly
|
|
18
18
|
rpc :PostReceiveHook, stream(Gitaly::PostReceiveHookRequest), stream(Gitaly::PostReceiveHookResponse)
|
19
19
|
rpc :UpdateHook, Gitaly::UpdateHookRequest, stream(Gitaly::UpdateHookResponse)
|
20
20
|
rpc :ReferenceTransactionHook, stream(Gitaly::ReferenceTransactionHookRequest), stream(Gitaly::ReferenceTransactionHookResponse)
|
21
|
+
# PackObjectsHook is meant to be called by git-upload-pack via the
|
22
|
+
# uploadpack.packObjectsHook mechanism. It generates a stream of packed
|
23
|
+
# Git objects.
|
24
|
+
rpc :PackObjectsHook, stream(Gitaly::PackObjectsHookRequest), stream(Gitaly::PackObjectsHookResponse)
|
21
25
|
end
|
22
26
|
|
23
27
|
Stub = Service.rpc_stub_class
|
@@ -26,6 +26,8 @@ module Gitaly
|
|
26
26
|
rpc :FindTag, Gitaly::FindTagRequest, Gitaly::FindTagResponse
|
27
27
|
rpc :FindAllRemoteBranches, Gitaly::FindAllRemoteBranchesRequest, stream(Gitaly::FindAllRemoteBranchesResponse)
|
28
28
|
rpc :RefExists, Gitaly::RefExistsRequest, Gitaly::RefExistsResponse
|
29
|
+
# FindBranch finds a branch by its unqualified name (like "master") and
|
30
|
+
# returns the commit it currently points to.
|
29
31
|
rpc :FindBranch, Gitaly::FindBranchRequest, Gitaly::FindBranchResponse
|
30
32
|
rpc :DeleteRefs, Gitaly::DeleteRefsRequest, Gitaly::DeleteRefsResponse
|
31
33
|
rpc :ListBranchNamesContainingCommit, Gitaly::ListBranchNamesContainingCommitRequest, stream(Gitaly::ListBranchNamesContainingCommitResponse)
|
@@ -32,11 +32,16 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
32
32
|
add_message "gitaly.UpdateRemoteMirrorRequest" do
|
33
33
|
optional :repository, :message, 1, "gitaly.Repository"
|
34
34
|
optional :ref_name, :string, 2
|
35
|
+
optional :remote, :message, 7, "gitaly.UpdateRemoteMirrorRequest.Remote"
|
35
36
|
repeated :only_branches_matching, :bytes, 3
|
36
37
|
optional :ssh_key, :string, 4
|
37
38
|
optional :known_hosts, :string, 5
|
38
39
|
optional :keep_divergent_refs, :bool, 6
|
39
40
|
end
|
41
|
+
add_message "gitaly.UpdateRemoteMirrorRequest.Remote" do
|
42
|
+
optional :url, :string, 1
|
43
|
+
optional :http_authorization_header, :string, 2
|
44
|
+
end
|
40
45
|
add_message "gitaly.UpdateRemoteMirrorResponse" do
|
41
46
|
repeated :divergent_refs, :bytes, 1
|
42
47
|
end
|
@@ -50,6 +55,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
50
55
|
add_message "gitaly.FindRemoteRootRefRequest" do
|
51
56
|
optional :repository, :message, 1, "gitaly.Repository"
|
52
57
|
optional :remote, :string, 2
|
58
|
+
optional :remote_url, :string, 3
|
59
|
+
optional :http_authorization_header, :string, 4
|
53
60
|
end
|
54
61
|
add_message "gitaly.FindRemoteRootRefResponse" do
|
55
62
|
optional :ref, :string, 1
|
@@ -76,6 +83,7 @@ module Gitaly
|
|
76
83
|
FetchInternalRemoteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteRequest").msgclass
|
77
84
|
FetchInternalRemoteResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteResponse").msgclass
|
78
85
|
UpdateRemoteMirrorRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorRequest").msgclass
|
86
|
+
UpdateRemoteMirrorRequest::Remote = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorRequest.Remote").msgclass
|
79
87
|
UpdateRemoteMirrorResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorResponse").msgclass
|
80
88
|
FindRemoteRepositoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRepositoryRequest").msgclass
|
81
89
|
FindRemoteRepositoryResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRepositoryResponse").msgclass
|
@@ -17,10 +17,19 @@ module Gitaly
|
|
17
17
|
rpc :AddRemote, Gitaly::AddRemoteRequest, Gitaly::AddRemoteResponse
|
18
18
|
rpc :FetchInternalRemote, Gitaly::FetchInternalRemoteRequest, Gitaly::FetchInternalRemoteResponse
|
19
19
|
rpc :RemoveRemote, Gitaly::RemoveRemoteRequest, Gitaly::RemoveRemoteResponse
|
20
|
+
# UpdateRemoteMirror compares the references in the target repository and its remote mirror
|
21
|
+
# repository. Any differences in the references are then addressed by pushing the differing
|
22
|
+
# references to the mirror. Created and modified references are updated, removed references are
|
23
|
+
# deleted from the mirror. UpdateRemoteMirror updates all tags. Branches are updated if they match
|
24
|
+
# the patterns specified in the requests.
|
20
25
|
rpc :UpdateRemoteMirror, stream(Gitaly::UpdateRemoteMirrorRequest), Gitaly::UpdateRemoteMirrorResponse
|
21
26
|
rpc :FindRemoteRepository, Gitaly::FindRemoteRepositoryRequest, Gitaly::FindRemoteRepositoryResponse
|
27
|
+
# FindRemoteRootRef tries to find the root reference of a remote
|
28
|
+
# repository. The root reference is the default branch as pointed to by
|
29
|
+
# the remotes HEAD reference. Returns an InvalidArgument error if the
|
30
|
+
# specified remote does not exist and a NotFound error in case no HEAD
|
31
|
+
# branch was found.
|
22
32
|
rpc :FindRemoteRootRef, Gitaly::FindRemoteRootRefRequest, Gitaly::FindRemoteRootRefResponse
|
23
|
-
rpc :ListRemotes, Gitaly::ListRemotesRequest, stream(Gitaly::ListRemotesResponse)
|
24
33
|
end
|
25
34
|
|
26
35
|
Stub = Service.rpc_stub_class
|
@@ -38,6 +38,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
38
38
|
end
|
39
39
|
add_message "gitaly.WriteCommitGraphRequest" do
|
40
40
|
optional :repository, :message, 1, "gitaly.Repository"
|
41
|
+
optional :splitStrategy, :enum, 2, "gitaly.WriteCommitGraphRequest.SplitStrategy"
|
42
|
+
end
|
43
|
+
add_enum "gitaly.WriteCommitGraphRequest.SplitStrategy" do
|
44
|
+
value :SizeMultiple, 0
|
41
45
|
end
|
42
46
|
add_message "gitaly.WriteCommitGraphResponse" do
|
43
47
|
end
|
@@ -166,6 +170,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
166
170
|
add_message "gitaly.CreateBundleResponse" do
|
167
171
|
optional :data, :bytes, 1
|
168
172
|
end
|
173
|
+
add_message "gitaly.GetConfigRequest" do
|
174
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
175
|
+
end
|
176
|
+
add_message "gitaly.GetConfigResponse" do
|
177
|
+
optional :data, :bytes, 1
|
178
|
+
end
|
169
179
|
add_message "gitaly.SetConfigRequest" do
|
170
180
|
optional :repository, :message, 1, "gitaly.Repository"
|
171
181
|
repeated :entries, :message, 2, "gitaly.SetConfigRequest.Entry"
|
@@ -286,7 +296,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
286
296
|
end
|
287
297
|
add_message "gitaly.Remote" do
|
288
298
|
optional :url, :string, 1
|
289
|
-
optional :name, :string, 2
|
290
299
|
optional :http_authorization_header, :string, 3
|
291
300
|
repeated :mirror_refmaps, :string, 4
|
292
301
|
end
|
@@ -347,6 +356,7 @@ module Gitaly
|
|
347
356
|
GarbageCollectRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectRequest").msgclass
|
348
357
|
GarbageCollectResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectResponse").msgclass
|
349
358
|
WriteCommitGraphRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphRequest").msgclass
|
359
|
+
WriteCommitGraphRequest::SplitStrategy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphRequest.SplitStrategy").enummodule
|
350
360
|
WriteCommitGraphResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphResponse").msgclass
|
351
361
|
CleanupRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupRequest").msgclass
|
352
362
|
CleanupResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupResponse").msgclass
|
@@ -381,6 +391,8 @@ module Gitaly
|
|
381
391
|
CreateRepositoryFromURLResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromURLResponse").msgclass
|
382
392
|
CreateBundleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleRequest").msgclass
|
383
393
|
CreateBundleResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleResponse").msgclass
|
394
|
+
GetConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetConfigRequest").msgclass
|
395
|
+
GetConfigResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetConfigResponse").msgclass
|
384
396
|
SetConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest").msgclass
|
385
397
|
SetConfigRequest::Entry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest.Entry").msgclass
|
386
398
|
SetConfigResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigResponse").msgclass
|
@@ -40,6 +40,9 @@ module Gitaly
|
|
40
40
|
rpc :CreateRepositoryFromURL, Gitaly::CreateRepositoryFromURLRequest, Gitaly::CreateRepositoryFromURLResponse
|
41
41
|
rpc :CreateBundle, Gitaly::CreateBundleRequest, stream(Gitaly::CreateBundleResponse)
|
42
42
|
rpc :CreateRepositoryFromBundle, stream(Gitaly::CreateRepositoryFromBundleRequest), Gitaly::CreateRepositoryFromBundleResponse
|
43
|
+
# GetConfig reads the target repository's gitconfig and streams its contents
|
44
|
+
# back. Returns a NotFound error in case no gitconfig was found.
|
45
|
+
rpc :GetConfig, Gitaly::GetConfigRequest, stream(Gitaly::GetConfigResponse)
|
43
46
|
rpc :SetConfig, Gitaly::SetConfigRequest, Gitaly::SetConfigResponse
|
44
47
|
rpc :DeleteConfig, Gitaly::DeleteConfigRequest, Gitaly::DeleteConfigResponse
|
45
48
|
rpc :FindLicense, Gitaly::FindLicenseRequest, Gitaly::FindLicenseResponse
|
@@ -56,6 +59,9 @@ module Gitaly
|
|
56
59
|
rpc :GetObjectDirectorySize, Gitaly::GetObjectDirectorySizeRequest, Gitaly::GetObjectDirectorySizeResponse
|
57
60
|
rpc :CloneFromPool, Gitaly::CloneFromPoolRequest, Gitaly::CloneFromPoolResponse
|
58
61
|
rpc :CloneFromPoolInternal, Gitaly::CloneFromPoolInternalRequest, Gitaly::CloneFromPoolInternalResponse
|
62
|
+
# RemoveRepository will move the repository to `+gitaly/tmp/<relative_path>_removed` and
|
63
|
+
# eventually remove it. This ensures that even on networked filesystems the
|
64
|
+
# data is actually removed even if there's someone still handling the data.
|
59
65
|
rpc :RemoveRepository, Gitaly::RemoveRepositoryRequest, Gitaly::RemoveRepositoryResponse
|
60
66
|
rpc :RenameRepository, Gitaly::RenameRepositoryRequest, Gitaly::RenameRepositoryResponse
|
61
67
|
rpc :ReplicateRepository, Gitaly::ReplicateRepositoryRequest, Gitaly::ReplicateRepositoryResponse
|
@@ -58,6 +58,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
58
58
|
optional :name, :bytes, 2
|
59
59
|
optional :email, :bytes, 3
|
60
60
|
optional :gl_username, :string, 4
|
61
|
+
optional :timezone, :string, 5
|
61
62
|
end
|
62
63
|
add_message "gitaly.ObjectPool" do
|
63
64
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -28,15 +28,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
28
28
|
optional :historical, :bool, 7
|
29
29
|
optional :raw_data, :bytes, 8
|
30
30
|
end
|
31
|
-
add_message "gitaly.WikiGetPageVersionsRequest" do
|
32
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
33
|
-
optional :page_path, :bytes, 2
|
34
|
-
optional :page, :int32, 3
|
35
|
-
optional :per_page, :int32, 4
|
36
|
-
end
|
37
|
-
add_message "gitaly.WikiGetPageVersionsResponse" do
|
38
|
-
repeated :versions, :message, 1, "gitaly.WikiPageVersion"
|
39
|
-
end
|
40
31
|
add_message "gitaly.WikiWritePageRequest" do
|
41
32
|
optional :repository, :message, 1, "gitaly.Repository"
|
42
33
|
optional :name, :bytes, 2
|
@@ -58,13 +49,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
58
49
|
add_message "gitaly.WikiUpdatePageResponse" do
|
59
50
|
optional :error, :bytes, 1
|
60
51
|
end
|
61
|
-
add_message "gitaly.WikiDeletePageRequest" do
|
62
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
63
|
-
optional :page_path, :bytes, 2
|
64
|
-
optional :commit_details, :message, 3, "gitaly.WikiCommitDetails"
|
65
|
-
end
|
66
|
-
add_message "gitaly.WikiDeletePageResponse" do
|
67
|
-
end
|
68
52
|
add_message "gitaly.WikiFindPageRequest" do
|
69
53
|
optional :repository, :message, 1, "gitaly.Repository"
|
70
54
|
optional :title, :bytes, 2
|
@@ -74,17 +58,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
74
58
|
add_message "gitaly.WikiFindPageResponse" do
|
75
59
|
optional :page, :message, 1, "gitaly.WikiPage"
|
76
60
|
end
|
77
|
-
add_message "gitaly.WikiFindFileRequest" do
|
78
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
79
|
-
optional :name, :bytes, 2
|
80
|
-
optional :revision, :bytes, 3
|
81
|
-
end
|
82
|
-
add_message "gitaly.WikiFindFileResponse" do
|
83
|
-
optional :name, :bytes, 1
|
84
|
-
optional :mime_type, :string, 2
|
85
|
-
optional :raw_data, :bytes, 3
|
86
|
-
optional :path, :bytes, 4
|
87
|
-
end
|
88
61
|
add_message "gitaly.WikiGetAllPagesRequest" do
|
89
62
|
optional :repository, :message, 1, "gitaly.Repository"
|
90
63
|
optional :limit, :uint32, 2
|
@@ -120,18 +93,12 @@ module Gitaly
|
|
120
93
|
WikiCommitDetails = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiCommitDetails").msgclass
|
121
94
|
WikiPageVersion = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiPageVersion").msgclass
|
122
95
|
WikiPage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiPage").msgclass
|
123
|
-
WikiGetPageVersionsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiGetPageVersionsRequest").msgclass
|
124
|
-
WikiGetPageVersionsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiGetPageVersionsResponse").msgclass
|
125
96
|
WikiWritePageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiWritePageRequest").msgclass
|
126
97
|
WikiWritePageResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiWritePageResponse").msgclass
|
127
98
|
WikiUpdatePageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiUpdatePageRequest").msgclass
|
128
99
|
WikiUpdatePageResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiUpdatePageResponse").msgclass
|
129
|
-
WikiDeletePageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiDeletePageRequest").msgclass
|
130
|
-
WikiDeletePageResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiDeletePageResponse").msgclass
|
131
100
|
WikiFindPageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiFindPageRequest").msgclass
|
132
101
|
WikiFindPageResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiFindPageResponse").msgclass
|
133
|
-
WikiFindFileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiFindFileRequest").msgclass
|
134
|
-
WikiFindFileResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiFindFileResponse").msgclass
|
135
102
|
WikiGetAllPagesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiGetAllPagesRequest").msgclass
|
136
103
|
WikiGetAllPagesRequest::SortBy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiGetAllPagesRequest.SortBy").enummodule
|
137
104
|
WikiGetAllPagesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiGetAllPagesResponse").msgclass
|
@@ -14,13 +14,10 @@ module Gitaly
|
|
14
14
|
self.unmarshal_class_method = :decode
|
15
15
|
self.service_name = 'gitaly.WikiService'
|
16
16
|
|
17
|
-
rpc :WikiGetPageVersions, Gitaly::WikiGetPageVersionsRequest, stream(Gitaly::WikiGetPageVersionsResponse)
|
18
17
|
rpc :WikiWritePage, stream(Gitaly::WikiWritePageRequest), Gitaly::WikiWritePageResponse
|
19
18
|
rpc :WikiUpdatePage, stream(Gitaly::WikiUpdatePageRequest), Gitaly::WikiUpdatePageResponse
|
20
|
-
rpc :WikiDeletePage, Gitaly::WikiDeletePageRequest, Gitaly::WikiDeletePageResponse
|
21
19
|
# WikiFindPage returns a stream because the page's raw_data field may be arbitrarily large.
|
22
20
|
rpc :WikiFindPage, Gitaly::WikiFindPageRequest, stream(Gitaly::WikiFindPageResponse)
|
23
|
-
rpc :WikiFindFile, Gitaly::WikiFindFileRequest, stream(Gitaly::WikiFindFileResponse)
|
24
21
|
rpc :WikiGetAllPages, Gitaly::WikiGetAllPagesRequest, stream(Gitaly::WikiGetAllPagesResponse)
|
25
22
|
rpc :WikiListPages, Gitaly::WikiListPagesRequest, stream(Gitaly::WikiListPagesResponse)
|
26
23
|
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:
|
4
|
+
version: 14.1.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: 2021-01
|
11
|
+
date: 2021-07-01 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.
|
96
|
+
rubygems_version: 3.2.21
|
97
97
|
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: Auto-generated gRPC client for gitaly
|