gitaly-proto 0.114.0 → 0.115.0
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d72ce85f2432213d63dc8039b4f14aa278e43b98
|
4
|
+
data.tar.gz: e9e832e2bb796f0f0a7bee13899839334635b286
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 234d02f160362178214625de24a9a98d89242770cecebaa199e7c42403a1535c0015800896ec59c93420d4348d9909e50bdd07a8a71c83c73f1672b471077a49
|
7
|
+
data.tar.gz: b371e0ed68d0a3d3704c6c71e4568a6343ca33b394ae24169aac703577eb9154f9ee78f35d0cdc2dd5498cc2030f44f4175e1d257d761cced9e43bb19a5fdf80
|
@@ -116,6 +116,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
116
116
|
optional :file_path, :bytes, 2
|
117
117
|
optional :previous_path, :bytes, 3
|
118
118
|
optional :base64_content, :bool, 4
|
119
|
+
optional :execute_filemode, :bool, 5
|
119
120
|
end
|
120
121
|
add_enum "gitaly.UserCommitFilesActionHeader.ActionType" do
|
121
122
|
value :CREATE, 0
|
@@ -123,6 +124,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
123
124
|
value :UPDATE, 2
|
124
125
|
value :MOVE, 3
|
125
126
|
value :DELETE, 4
|
127
|
+
value :CHMOD, 5
|
126
128
|
end
|
127
129
|
add_message "gitaly.UserCommitFilesAction" do
|
128
130
|
oneof :user_commit_files_action_payload do
|
@@ -40,6 +40,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
40
40
|
add_message "gitaly.FindRemoteRepositoryResponse" do
|
41
41
|
optional :exists, :bool, 1
|
42
42
|
end
|
43
|
+
add_message "gitaly.FindRemoteRootRefRequest" do
|
44
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
45
|
+
optional :remote, :string, 2
|
46
|
+
end
|
47
|
+
add_message "gitaly.FindRemoteRootRefResponse" do
|
48
|
+
optional :ref, :string, 1
|
49
|
+
end
|
43
50
|
end
|
44
51
|
|
45
52
|
module Gitaly
|
@@ -53,4 +60,6 @@ module Gitaly
|
|
53
60
|
UpdateRemoteMirrorResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorResponse").msgclass
|
54
61
|
FindRemoteRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRepositoryRequest").msgclass
|
55
62
|
FindRemoteRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRepositoryResponse").msgclass
|
63
|
+
FindRemoteRootRefRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRootRefRequest").msgclass
|
64
|
+
FindRemoteRootRefResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRootRefResponse").msgclass
|
56
65
|
end
|
@@ -19,6 +19,7 @@ module Gitaly
|
|
19
19
|
rpc :RemoveRemote, RemoveRemoteRequest, RemoveRemoteResponse
|
20
20
|
rpc :UpdateRemoteMirror, stream(UpdateRemoteMirrorRequest), UpdateRemoteMirrorResponse
|
21
21
|
rpc :FindRemoteRepository, FindRemoteRepositoryRequest, FindRemoteRepositoryResponse
|
22
|
+
rpc :FindRemoteRootRef, FindRemoteRootRefRequest, FindRemoteRootRefResponse
|
22
23
|
end
|
23
24
|
|
24
25
|
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.115.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-
|
11
|
+
date: 2018-09-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|