gitaly-proto 0.77.0 → 0.78.0
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6f74f219909a1f799bc64f13299fe59869e16c32
|
|
4
|
+
data.tar.gz: e66280fbd21868b7f46d982030027d3b18c2d873
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 67516c7483e992652caf28656d646a7f534bc120d68695762025ea40fc3dae9962f1f1fc7e864deac0087673e50b4e8e55e3ff7966cdb2a5bb64bda12ac3362e
|
|
7
|
+
data.tar.gz: 48d33ac2f8de1e44dbd8987986d162c7a514d97012222c89b563501d78863b0e61c108fda2e9d2e8f4111b90a9e742ca1785cb93f9b3b4750434bfc2f920d0dc
|
data/ruby/lib/gitaly/ref_pb.rb
CHANGED
|
@@ -118,6 +118,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
118
118
|
add_message "gitaly.ListBranchNamesContainingCommitRequest" do
|
|
119
119
|
optional :repository, :message, 1, "gitaly.Repository"
|
|
120
120
|
optional :commit_id, :string, 2
|
|
121
|
+
optional :limit, :uint32, 3
|
|
121
122
|
end
|
|
122
123
|
add_message "gitaly.ListBranchNamesContainingCommitResponse" do
|
|
123
124
|
repeated :branch_names, :bytes, 2
|
|
@@ -125,6 +126,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
125
126
|
add_message "gitaly.ListTagNamesContainingCommitRequest" do
|
|
126
127
|
optional :repository, :message, 1, "gitaly.Repository"
|
|
127
128
|
optional :commit_id, :string, 2
|
|
129
|
+
optional :limit, :uint32, 3
|
|
128
130
|
end
|
|
129
131
|
add_message "gitaly.ListTagNamesContainingCommitResponse" do
|
|
130
132
|
repeated :tag_names, :bytes, 2
|
|
@@ -28,8 +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
|
+
rpc :ListBranchNamesContainingCommit, ListBranchNamesContainingCommitRequest, stream(ListBranchNamesContainingCommitResponse)
|
|
32
|
+
rpc :ListTagNamesContainingCommit, ListTagNamesContainingCommitRequest, stream(ListTagNamesContainingCommitResponse)
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
Stub = Service.rpc_stub_class
|
|
@@ -155,6 +155,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
155
155
|
add_message "gitaly.WriteConfigResponse" do
|
|
156
156
|
optional :error, :bytes, 1
|
|
157
157
|
end
|
|
158
|
+
add_message "gitaly.CreateRepositoryFromBundleRequest" do
|
|
159
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
|
160
|
+
optional :data, :bytes, 2
|
|
161
|
+
end
|
|
162
|
+
add_message "gitaly.CreateRepositoryFromBundleResponse" do
|
|
163
|
+
end
|
|
158
164
|
end
|
|
159
165
|
|
|
160
166
|
module Gitaly
|
|
@@ -201,4 +207,6 @@ module Gitaly
|
|
|
201
207
|
CreateBundleResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleResponse").msgclass
|
|
202
208
|
WriteConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteConfigRequest").msgclass
|
|
203
209
|
WriteConfigResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteConfigResponse").msgclass
|
|
210
|
+
CreateRepositoryFromBundleRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromBundleRequest").msgclass
|
|
211
|
+
CreateRepositoryFromBundleResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromBundleResponse").msgclass
|
|
204
212
|
end
|
|
@@ -34,6 +34,7 @@ module Gitaly
|
|
|
34
34
|
rpc :IsSquashInProgress, IsSquashInProgressRequest, IsSquashInProgressResponse
|
|
35
35
|
rpc :CreateRepositoryFromURL, CreateRepositoryFromURLRequest, CreateRepositoryFromURLResponse
|
|
36
36
|
rpc :CreateBundle, CreateBundleRequest, stream(CreateBundleResponse)
|
|
37
|
+
rpc :CreateRepositoryFromBundle, stream(CreateRepositoryFromBundleRequest), CreateRepositoryFromBundleResponse
|
|
37
38
|
rpc :WriteConfig, WriteConfigRequest, WriteConfigResponse
|
|
38
39
|
end
|
|
39
40
|
|
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.78.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-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-protobuf
|
|
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
99
99
|
version: '0'
|
|
100
100
|
requirements: []
|
|
101
101
|
rubyforge_project:
|
|
102
|
-
rubygems_version: 2.5.
|
|
102
|
+
rubygems_version: 2.5.1
|
|
103
103
|
signing_key:
|
|
104
104
|
specification_version: 4
|
|
105
105
|
summary: Auto-generated gRPC client for gitaly
|