gitaly-proto 0.66.0 → 0.67.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/lib/gitaly/operations_pb.rb +44 -0
- data/ruby/lib/gitaly/operations_services_pb.rb +1 -0
- data/ruby/lib/gitaly/ref_pb.rb +18 -0
- data/ruby/lib/gitaly/ref_services_pb.rb +2 -0
- data/ruby/lib/gitaly/remote_pb.rb +9 -0
- data/ruby/lib/gitaly/remote_services_pb.rb +1 -0
- data/ruby/lib/gitaly/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dfef8e232223d01ce978c8ae733a1f665b4ffef5
|
4
|
+
data.tar.gz: '0803e4d560bb025c95cc350e7583d41ce6d48129'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d073974ebdee5bd060bc292b32164bd4472118f0cc08de4916b193de00724bcdf3e5733557a08a788f4971c26d82fb21994553497de780459e027c75b666c62
|
7
|
+
data.tar.gz: d26badccf7e739b62269f23ce92772e9948c0646e52b5439234a3fb27e668e52c46a0dc51867b0623f05fb7ab555fa3273d896dab9d18b65704c76ae75e5684d
|
@@ -100,6 +100,44 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
100
100
|
optional :commit_error, :string, 3
|
101
101
|
optional :pre_receive_error, :string, 4
|
102
102
|
end
|
103
|
+
add_message "gitaly.UserCommitFilesActionHeader" do
|
104
|
+
optional :action, :enum, 1, "gitaly.UserCommitFilesActionHeader.ActionType"
|
105
|
+
optional :file_path, :string, 2
|
106
|
+
optional :previous_path, :string, 3
|
107
|
+
optional :base64_content, :bool, 4
|
108
|
+
end
|
109
|
+
add_enum "gitaly.UserCommitFilesActionHeader.ActionType" do
|
110
|
+
value :CREATE, 0
|
111
|
+
value :CREATE_DIR, 1
|
112
|
+
value :UPDATE, 2
|
113
|
+
value :MOVE, 3
|
114
|
+
value :DELETE, 4
|
115
|
+
end
|
116
|
+
add_message "gitaly.UserCommitFilesAction" do
|
117
|
+
oneof :user_commit_files_action_payload do
|
118
|
+
optional :header, :message, 1, "gitaly.UserCommitFilesActionHeader"
|
119
|
+
optional :content, :bytes, 2
|
120
|
+
end
|
121
|
+
end
|
122
|
+
add_message "gitaly.UserCommitFilesRequestHeader" do
|
123
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
124
|
+
optional :user, :message, 2, "gitaly.User"
|
125
|
+
optional :branch_name, :bytes, 3
|
126
|
+
optional :commit_message, :bytes, 4
|
127
|
+
optional :commit_author_name, :bytes, 5
|
128
|
+
optional :commit_author_email, :bytes, 6
|
129
|
+
optional :start_branch_name, :bytes, 7
|
130
|
+
optional :start_repository, :message, 8, "gitaly.Repository"
|
131
|
+
end
|
132
|
+
add_message "gitaly.UserCommitFilesRequest" do
|
133
|
+
oneof :user_commit_files_request_payload do
|
134
|
+
optional :header, :message, 1, "gitaly.UserCommitFilesRequestHeader"
|
135
|
+
optional :action, :message, 2, "gitaly.UserCommitFilesAction"
|
136
|
+
end
|
137
|
+
end
|
138
|
+
add_message "gitaly.UserCommitFilesResponse" do
|
139
|
+
optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
|
140
|
+
end
|
103
141
|
end
|
104
142
|
|
105
143
|
module Gitaly
|
@@ -120,4 +158,10 @@ module Gitaly
|
|
120
158
|
UserCherryPickResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCherryPickResponse").msgclass
|
121
159
|
UserRevertRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRevertRequest").msgclass
|
122
160
|
UserRevertResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserRevertResponse").msgclass
|
161
|
+
UserCommitFilesActionHeader = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesActionHeader").msgclass
|
162
|
+
UserCommitFilesActionHeader::ActionType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesActionHeader.ActionType").enummodule
|
163
|
+
UserCommitFilesAction = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesAction").msgclass
|
164
|
+
UserCommitFilesRequestHeader = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesRequestHeader").msgclass
|
165
|
+
UserCommitFilesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesRequest").msgclass
|
166
|
+
UserCommitFilesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCommitFilesResponse").msgclass
|
123
167
|
end
|
@@ -22,6 +22,7 @@ module Gitaly
|
|
22
22
|
rpc :UserFFBranch, UserFFBranchRequest, UserFFBranchResponse
|
23
23
|
rpc :UserCherryPick, UserCherryPickRequest, UserCherryPickResponse
|
24
24
|
rpc :UserRevert, UserRevertRequest, UserRevertResponse
|
25
|
+
rpc :UserCommitFiles, stream(UserCommitFilesRequest), UserCommitFilesResponse
|
25
26
|
end
|
26
27
|
|
27
28
|
Stub = Service.rpc_stub_class
|
data/ruby/lib/gitaly/ref_pb.rb
CHANGED
@@ -115,6 +115,20 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
115
115
|
end
|
116
116
|
add_message "gitaly.DeleteRefsResponse" do
|
117
117
|
end
|
118
|
+
add_message "gitaly.ListBranchNamesContainingCommitRequest" do
|
119
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
120
|
+
optional :commit_id, :string, 2
|
121
|
+
end
|
122
|
+
add_message "gitaly.ListBranchNamesContainingCommitResponse" do
|
123
|
+
repeated :branch_names, :string, 1
|
124
|
+
end
|
125
|
+
add_message "gitaly.ListTagNamesContainingCommitRequest" do
|
126
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
127
|
+
optional :commit_id, :string, 2
|
128
|
+
end
|
129
|
+
add_message "gitaly.ListTagNamesContainingCommitResponse" do
|
130
|
+
repeated :tag_names, :string, 1
|
131
|
+
end
|
118
132
|
end
|
119
133
|
|
120
134
|
module Gitaly
|
@@ -147,4 +161,8 @@ module Gitaly
|
|
147
161
|
FindBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindBranchResponse").msgclass
|
148
162
|
DeleteRefsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteRefsRequest").msgclass
|
149
163
|
DeleteRefsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteRefsResponse").msgclass
|
164
|
+
ListBranchNamesContainingCommitRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBranchNamesContainingCommitRequest").msgclass
|
165
|
+
ListBranchNamesContainingCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBranchNamesContainingCommitResponse").msgclass
|
166
|
+
ListTagNamesContainingCommitRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTagNamesContainingCommitRequest").msgclass
|
167
|
+
ListTagNamesContainingCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTagNamesContainingCommitResponse").msgclass
|
150
168
|
end
|
@@ -28,6 +28,8 @@ module Gitaly
|
|
28
28
|
rpc :DeleteBranch, DeleteBranchRequest, DeleteBranchResponse
|
29
29
|
rpc :FindBranch, FindBranchRequest, FindBranchResponse
|
30
30
|
rpc :DeleteRefs, DeleteRefsRequest, DeleteRefsResponse
|
31
|
+
rpc :ListBranchNamesContainingCommit, ListBranchNamesContainingCommitRequest, ListBranchNamesContainingCommitResponse
|
32
|
+
rpc :ListTagNamesContainingCommit, ListTagNamesContainingCommitRequest, ListTagNamesContainingCommitResponse
|
31
33
|
end
|
32
34
|
|
33
35
|
Stub = Service.rpc_stub_class
|
@@ -27,6 +27,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
27
27
|
add_message "gitaly.FetchInternalRemoteResponse" do
|
28
28
|
optional :result, :bool, 1
|
29
29
|
end
|
30
|
+
add_message "gitaly.UpdateRemoteMirrorRequest" do
|
31
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
32
|
+
optional :ref_name, :string, 2
|
33
|
+
repeated :only_branches_matching, :bytes, 3
|
34
|
+
end
|
35
|
+
add_message "gitaly.UpdateRemoteMirrorResponse" do
|
36
|
+
end
|
30
37
|
end
|
31
38
|
|
32
39
|
module Gitaly
|
@@ -36,4 +43,6 @@ module Gitaly
|
|
36
43
|
RemoveRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRemoteResponse").msgclass
|
37
44
|
FetchInternalRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteRequest").msgclass
|
38
45
|
FetchInternalRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteResponse").msgclass
|
46
|
+
UpdateRemoteMirrorRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorRequest").msgclass
|
47
|
+
UpdateRemoteMirrorResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorResponse").msgclass
|
39
48
|
end
|
@@ -17,6 +17,7 @@ module Gitaly
|
|
17
17
|
rpc :AddRemote, AddRemoteRequest, AddRemoteResponse
|
18
18
|
rpc :FetchInternalRemote, FetchInternalRemoteRequest, FetchInternalRemoteResponse
|
19
19
|
rpc :RemoveRemote, RemoveRemoteRequest, RemoveRemoteResponse
|
20
|
+
rpc :UpdateRemoteMirror, stream(UpdateRemoteMirrorRequest), UpdateRemoteMirrorResponse
|
20
21
|
end
|
21
22
|
|
22
23
|
Stub = Service.rpc_stub_class
|
data/ruby/lib/gitaly/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitaly-proto
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.67.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-01-
|
11
|
+
date: 2018-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|