gitaly 13.3.0.pre.rc5 → 13.7.0.pre.rc1
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.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/commit_pb.rb +1 -0
- data/ruby/proto/gitaly/conflicts_pb.rb +1 -0
- data/ruby/proto/gitaly/diff_pb.rb +22 -0
- data/ruby/proto/gitaly/diff_services_pb.rb +2 -0
- data/ruby/proto/gitaly/hook_pb.rb +7 -0
- data/ruby/proto/gitaly/operations_pb.rb +1 -0
- data/ruby/proto/gitaly/operations_services_pb.rb +4 -0
- data/ruby/proto/gitaly/repository-service_pb.rb +8 -9
- data/ruby/proto/gitaly/repository-service_services_pb.rb +1 -1
- data/ruby/proto/gitaly/shared_pb.rb +1 -0
- data/ruby/proto/gitaly/smarthttp_services_pb.rb +2 -2
- data/ruby/proto/gitaly/transaction_pb.rb +9 -0
- data/ruby/proto/gitaly/transaction_services_pb.rb +1 -0
- data/ruby/proto/gitaly/version.rb +4 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83fca129d76c5da84685c8494e6b5aab0d7972cc62ca3ef7adcbc504d78f3dbf
|
4
|
+
data.tar.gz: 6a0a7fcf3c903a6fcc6798ca97f47816860695bc597bcd8f2616e09b3f28b0fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3eff4e62de841867704d77bfc2d7fba01eb8845dc77c9a479fabbac2b6ea223aa34e8d9ae034c6a82ec92e4dc9cbcf2e09d730d2e64f5faf0355f5ef71db9fec
|
7
|
+
data.tar.gz: 31eac9a52b497639129a03e1d10de439bafc28f4b053bfad05f2ec75aab3d2b5bc7cd2788dc9dbf360d9e94b9e3c8e6d9dcb4e15809920afac232b56f4dba837
|
@@ -30,6 +30,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
30
30
|
optional :revision, :bytes, 2
|
31
31
|
optional :path, :bytes, 3
|
32
32
|
optional :limit, :int64, 4
|
33
|
+
optional :max_size, :int64, 5
|
33
34
|
end
|
34
35
|
add_message "gitaly.TreeEntryResponse" do
|
35
36
|
optional :type, :enum, 1, "gitaly.TreeEntryResponse.ObjectType"
|
@@ -17,6 +17,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
17
17
|
optional :their_path, :bytes, 3
|
18
18
|
optional :our_path, :bytes, 4
|
19
19
|
optional :our_mode, :int32, 5
|
20
|
+
optional :ancestor_path, :bytes, 6
|
20
21
|
end
|
21
22
|
add_message "gitaly.ConflictFile" do
|
22
23
|
oneof :conflict_file_payload do
|
@@ -84,6 +84,24 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
84
84
|
add_message "gitaly.DiffStatsResponse" do
|
85
85
|
repeated :stats, :message, 1, "gitaly.DiffStats"
|
86
86
|
end
|
87
|
+
add_message "gitaly.FindChangedPathsRequest" do
|
88
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
89
|
+
repeated :commits, :string, 2
|
90
|
+
end
|
91
|
+
add_message "gitaly.FindChangedPathsResponse" do
|
92
|
+
repeated :paths, :message, 1, "gitaly.ChangedPaths"
|
93
|
+
end
|
94
|
+
add_message "gitaly.ChangedPaths" do
|
95
|
+
optional :path, :bytes, 1
|
96
|
+
optional :status, :enum, 2, "gitaly.ChangedPaths.Status"
|
97
|
+
end
|
98
|
+
add_enum "gitaly.ChangedPaths.Status" do
|
99
|
+
value :ADDED, 0
|
100
|
+
value :MODIFIED, 1
|
101
|
+
value :DELETED, 2
|
102
|
+
value :TYPE_CHANGE, 3
|
103
|
+
value :COPIED, 4
|
104
|
+
end
|
87
105
|
end
|
88
106
|
end
|
89
107
|
|
@@ -100,4 +118,8 @@ module Gitaly
|
|
100
118
|
DiffStatsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiffStatsRequest").msgclass
|
101
119
|
DiffStats = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiffStats").msgclass
|
102
120
|
DiffStatsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiffStatsResponse").msgclass
|
121
|
+
FindChangedPathsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindChangedPathsRequest").msgclass
|
122
|
+
FindChangedPathsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindChangedPathsResponse").msgclass
|
123
|
+
ChangedPaths = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ChangedPaths").msgclass
|
124
|
+
ChangedPaths::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ChangedPaths.Status").enummodule
|
103
125
|
end
|
@@ -21,6 +21,8 @@ module Gitaly
|
|
21
21
|
rpc :RawDiff, Gitaly::RawDiffRequest, stream(Gitaly::RawDiffResponse)
|
22
22
|
rpc :RawPatch, Gitaly::RawPatchRequest, stream(Gitaly::RawPatchResponse)
|
23
23
|
rpc :DiffStats, Gitaly::DiffStatsRequest, stream(Gitaly::DiffStatsResponse)
|
24
|
+
# Return a list of files changed along with the status of each file
|
25
|
+
rpc :FindChangedPaths, Gitaly::FindChangedPathsRequest, stream(Gitaly::FindChangedPathsResponse)
|
24
26
|
end
|
25
27
|
|
26
28
|
Stub = Service.rpc_stub_class
|
@@ -45,6 +45,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
45
45
|
optional :repository, :message, 1, "gitaly.Repository"
|
46
46
|
repeated :environment_variables, :string, 2
|
47
47
|
optional :stdin, :bytes, 3
|
48
|
+
optional :state, :enum, 4, "gitaly.ReferenceTransactionHookRequest.State"
|
49
|
+
end
|
50
|
+
add_enum "gitaly.ReferenceTransactionHookRequest.State" do
|
51
|
+
value :PREPARED, 0
|
52
|
+
value :COMMITTED, 1
|
53
|
+
value :ABORTED, 2
|
48
54
|
end
|
49
55
|
add_message "gitaly.ReferenceTransactionHookResponse" do
|
50
56
|
optional :stdout, :bytes, 1
|
@@ -62,5 +68,6 @@ module Gitaly
|
|
62
68
|
UpdateHookRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateHookRequest").msgclass
|
63
69
|
UpdateHookResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateHookResponse").msgclass
|
64
70
|
ReferenceTransactionHookRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookRequest").msgclass
|
71
|
+
ReferenceTransactionHookRequest::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookRequest.State").enummodule
|
65
72
|
ReferenceTransactionHookResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookResponse").msgclass
|
66
73
|
end
|
@@ -76,6 +76,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
76
76
|
optional :target_ref, :bytes, 5
|
77
77
|
optional :message, :bytes, 6
|
78
78
|
optional :first_parent_ref, :bytes, 7
|
79
|
+
optional :allow_conflicts, :bool, 8
|
79
80
|
end
|
80
81
|
add_message "gitaly.UserMergeToRefResponse" do
|
81
82
|
optional :commit_id, :string, 1
|
@@ -23,6 +23,10 @@ module Gitaly
|
|
23
23
|
rpc :UserMergeBranch, stream(Gitaly::UserMergeBranchRequest), stream(Gitaly::UserMergeBranchResponse)
|
24
24
|
rpc :UserFFBranch, Gitaly::UserFFBranchRequest, Gitaly::UserFFBranchResponse
|
25
25
|
rpc :UserCherryPick, Gitaly::UserCherryPickRequest, Gitaly::UserCherryPickResponse
|
26
|
+
# UserCommitFiles builds a commit from a stream of actions and updates the target branch to point to it.
|
27
|
+
# UserCommitFilesRequest with a UserCommitFilesRequestHeader must be sent as the first message of the stream.
|
28
|
+
# Following that, a variable number of actions can be sent to build a new commit. Each action consists of
|
29
|
+
# a header followed by content if used by the action.
|
26
30
|
rpc :UserCommitFiles, stream(Gitaly::UserCommitFilesRequest), Gitaly::UserCommitFilesResponse
|
27
31
|
rpc :UserRebaseConfirmable, stream(Gitaly::UserRebaseConfirmableRequest), stream(Gitaly::UserRebaseConfirmableResponse)
|
28
32
|
rpc :UserRevert, Gitaly::UserRevertRequest, Gitaly::UserRevertResponse
|
@@ -24,6 +24,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
24
24
|
end
|
25
25
|
add_message "gitaly.RepackFullResponse" do
|
26
26
|
end
|
27
|
+
add_message "gitaly.MidxRepackRequest" do
|
28
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
29
|
+
end
|
30
|
+
add_message "gitaly.MidxRepackResponse" do
|
31
|
+
end
|
27
32
|
add_message "gitaly.GarbageCollectRequest" do
|
28
33
|
optional :repository, :message, 1, "gitaly.Repository"
|
29
34
|
optional :create_bitmap, :bool, 2
|
@@ -79,6 +84,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
79
84
|
optional :path, :bytes, 5
|
80
85
|
repeated :exclude, :bytes, 6
|
81
86
|
optional :elide_path, :bool, 7
|
87
|
+
optional :include_lfs_blobs, :bool, 8
|
82
88
|
end
|
83
89
|
add_enum "gitaly.GetArchiveRequest.Format" do
|
84
90
|
value :ZIP, 0
|
@@ -282,13 +288,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
282
288
|
optional :http_authorization_header, :string, 3
|
283
289
|
repeated :mirror_refmaps, :string, 4
|
284
290
|
end
|
285
|
-
add_message "gitaly.FetchHTTPRemoteRequest" do
|
286
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
287
|
-
optional :remote, :message, 2, "gitaly.Remote"
|
288
|
-
optional :timeout, :int32, 3
|
289
|
-
end
|
290
|
-
add_message "gitaly.FetchHTTPRemoteResponse" do
|
291
|
-
end
|
292
291
|
add_message "gitaly.GetObjectDirectorySizeRequest" do
|
293
292
|
optional :repository, :message, 1, "gitaly.Repository"
|
294
293
|
end
|
@@ -341,6 +340,8 @@ module Gitaly
|
|
341
340
|
RepackIncrementalResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackIncrementalResponse").msgclass
|
342
341
|
RepackFullRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackFullRequest").msgclass
|
343
342
|
RepackFullResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackFullResponse").msgclass
|
343
|
+
MidxRepackRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.MidxRepackRequest").msgclass
|
344
|
+
MidxRepackResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.MidxRepackResponse").msgclass
|
344
345
|
GarbageCollectRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectRequest").msgclass
|
345
346
|
GarbageCollectResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectResponse").msgclass
|
346
347
|
WriteCommitGraphRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphRequest").msgclass
|
@@ -408,8 +409,6 @@ module Gitaly
|
|
408
409
|
SearchFilesByContentRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByContentRequest").msgclass
|
409
410
|
SearchFilesByContentResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByContentResponse").msgclass
|
410
411
|
Remote = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Remote").msgclass
|
411
|
-
FetchHTTPRemoteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchHTTPRemoteRequest").msgclass
|
412
|
-
FetchHTTPRemoteResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchHTTPRemoteResponse").msgclass
|
413
412
|
GetObjectDirectorySizeRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetObjectDirectorySizeRequest").msgclass
|
414
413
|
GetObjectDirectorySizeResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetObjectDirectorySizeResponse").msgclass
|
415
414
|
CloneFromPoolRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolRequest").msgclass
|
@@ -17,6 +17,7 @@ module Gitaly
|
|
17
17
|
rpc :RepositoryExists, Gitaly::RepositoryExistsRequest, Gitaly::RepositoryExistsResponse
|
18
18
|
rpc :RepackIncremental, Gitaly::RepackIncrementalRequest, Gitaly::RepackIncrementalResponse
|
19
19
|
rpc :RepackFull, Gitaly::RepackFullRequest, Gitaly::RepackFullResponse
|
20
|
+
rpc :MidxRepack, Gitaly::MidxRepackRequest, Gitaly::MidxRepackResponse
|
20
21
|
rpc :GarbageCollect, Gitaly::GarbageCollectRequest, Gitaly::GarbageCollectResponse
|
21
22
|
rpc :WriteCommitGraph, Gitaly::WriteCommitGraphRequest, Gitaly::WriteCommitGraphResponse
|
22
23
|
rpc :RepositorySize, Gitaly::RepositorySizeRequest, Gitaly::RepositorySizeResponse
|
@@ -48,7 +49,6 @@ module Gitaly
|
|
48
49
|
rpc :SearchFilesByName, Gitaly::SearchFilesByNameRequest, stream(Gitaly::SearchFilesByNameResponse)
|
49
50
|
rpc :RestoreCustomHooks, stream(Gitaly::RestoreCustomHooksRequest), Gitaly::RestoreCustomHooksResponse
|
50
51
|
rpc :BackupCustomHooks, Gitaly::BackupCustomHooksRequest, stream(Gitaly::BackupCustomHooksResponse)
|
51
|
-
rpc :FetchHTTPRemote, Gitaly::FetchHTTPRemoteRequest, Gitaly::FetchHTTPRemoteResponse
|
52
52
|
rpc :GetObjectDirectorySize, Gitaly::GetObjectDirectorySizeRequest, Gitaly::GetObjectDirectorySizeResponse
|
53
53
|
rpc :CloneFromPool, Gitaly::CloneFromPoolRequest, Gitaly::CloneFromPoolResponse
|
54
54
|
rpc :CloneFromPoolInternal, Gitaly::CloneFromPoolInternalRequest, Gitaly::CloneFromPoolInternalResponse
|
@@ -24,6 +24,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
24
24
|
repeated :parent_ids, :string, 6
|
25
25
|
optional :body_size, :int64, 7
|
26
26
|
optional :signature_type, :enum, 8, "gitaly.SignatureType"
|
27
|
+
optional :tree_id, :string, 9
|
27
28
|
end
|
28
29
|
add_message "gitaly.CommitAuthor" do
|
29
30
|
optional :name, :bytes, 1
|
@@ -19,8 +19,8 @@ module Gitaly
|
|
19
19
|
# will upload the packs to that user. The user doesn't upload new objects.
|
20
20
|
rpc :InfoRefsUploadPack, Gitaly::InfoRefsRequest, stream(Gitaly::InfoRefsResponse)
|
21
21
|
# The response body for GET /info/refs?service=git-receive-pack
|
22
|
-
# Will be invoked when the user executes a `git push`,
|
23
|
-
#
|
22
|
+
# Will be invoked when the user executes a `git push`, but only advertises
|
23
|
+
# references to the user.
|
24
24
|
rpc :InfoRefsReceivePack, Gitaly::InfoRefsRequest, stream(Gitaly::InfoRefsResponse)
|
25
25
|
# Request and response body for POST /upload-pack
|
26
26
|
rpc :PostUploadPack, stream(Gitaly::PostUploadPackRequest), stream(Gitaly::PostUploadPackResponse)
|
@@ -19,6 +19,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
19
19
|
add_enum "gitaly.VoteTransactionResponse.TransactionState" do
|
20
20
|
value :COMMIT, 0
|
21
21
|
value :ABORT, 1
|
22
|
+
value :STOP, 2
|
23
|
+
end
|
24
|
+
add_message "gitaly.StopTransactionRequest" do
|
25
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
26
|
+
optional :transaction_id, :uint64, 2
|
27
|
+
end
|
28
|
+
add_message "gitaly.StopTransactionResponse" do
|
22
29
|
end
|
23
30
|
end
|
24
31
|
end
|
@@ -27,4 +34,6 @@ module Gitaly
|
|
27
34
|
VoteTransactionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.VoteTransactionRequest").msgclass
|
28
35
|
VoteTransactionResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.VoteTransactionResponse").msgclass
|
29
36
|
VoteTransactionResponse::TransactionState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.VoteTransactionResponse.TransactionState").enummodule
|
37
|
+
StopTransactionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.StopTransactionRequest").msgclass
|
38
|
+
StopTransactionResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.StopTransactionResponse").msgclass
|
30
39
|
end
|
@@ -15,6 +15,7 @@ module Gitaly
|
|
15
15
|
self.service_name = 'gitaly.RefTransaction'
|
16
16
|
|
17
17
|
rpc :VoteTransaction, Gitaly::VoteTransactionRequest, Gitaly::VoteTransactionResponse
|
18
|
+
rpc :StopTransaction, Gitaly::StopTransactionRequest, Gitaly::StopTransactionResponse
|
18
19
|
end
|
19
20
|
|
20
21
|
Stub = Service.rpc_stub_class
|
@@ -1,5 +1,6 @@
|
|
1
|
-
# This file was auto-generated by
|
2
|
-
#
|
1
|
+
# This file was auto-generated by the Release Tools project
|
2
|
+
# (https://gitlab.com/gitlab-org/release-tools/), and should not be
|
3
|
+
# modified.
|
3
4
|
module Gitaly
|
4
|
-
VERSION = '13.
|
5
|
+
VERSION = '13.7.0-rc1'
|
5
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: 13.
|
4
|
+
version: 13.7.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: 2020-
|
11
|
+
date: 2020-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|