gitaly-proto 0.74.0 → 0.75.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 +4 -4
- data/ruby/lib/gitaly/blob_pb.rb +15 -0
- data/ruby/lib/gitaly/blob_services_pb.rb +1 -0
- data/ruby/lib/gitaly/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2bc325858bf9f22d4875c3da0f0015ac9065144a
|
4
|
+
data.tar.gz: 241bdd3db0f7f92382df46f028d19adfbaf2ab40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 052c73d32520b1c3771cacb78b15389c50f15be753467845ccb69ca79f8008c81b41a457eaf6ca2ba193aaa9bf702195d0e50639a68ebf46a85a5f075d9befc1
|
7
|
+
data.tar.gz: 2b9689b9620e223b298e31bae9807b6bb01687c960f8e6f695eb77ca77e3c2d8cece262a70af1045a56b2d15bedded0f82c8326ba0dfa5cf1fe284aff693b8ff
|
data/ruby/lib/gitaly/blob_pb.rb
CHANGED
@@ -25,6 +25,18 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
25
25
|
optional :data, :bytes, 2
|
26
26
|
optional :oid, :string, 3
|
27
27
|
end
|
28
|
+
add_message "gitaly.LFSPointer" do
|
29
|
+
optional :size, :int64, 1
|
30
|
+
optional :data, :bytes, 2
|
31
|
+
optional :oid, :string, 3
|
32
|
+
end
|
33
|
+
add_message "gitaly.GetLFSPointersRequest" do
|
34
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
35
|
+
repeated :blob_ids, :string, 2
|
36
|
+
end
|
37
|
+
add_message "gitaly.GetLFSPointersResponse" do
|
38
|
+
repeated :lfs_pointers, :message, 1, "gitaly.LFSPointer"
|
39
|
+
end
|
28
40
|
end
|
29
41
|
|
30
42
|
module Gitaly
|
@@ -32,4 +44,7 @@ module Gitaly
|
|
32
44
|
GetBlobResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobResponse").msgclass
|
33
45
|
GetBlobsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsRequest").msgclass
|
34
46
|
GetBlobsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsResponse").msgclass
|
47
|
+
LFSPointer = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LFSPointer").msgclass
|
48
|
+
GetLFSPointersRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetLFSPointersRequest").msgclass
|
49
|
+
GetLFSPointersResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetLFSPointersResponse").msgclass
|
35
50
|
end
|
@@ -23,6 +23,7 @@ module Gitaly
|
|
23
23
|
# The blobs are sent in a continous stream, the caller is responsible for spliting
|
24
24
|
# them up into multiple blobs by their object IDs.
|
25
25
|
rpc :GetBlobs, GetBlobsRequest, stream(GetBlobsResponse)
|
26
|
+
rpc :GetLFSPointers, GetLFSPointersRequest, stream(GetLFSPointersResponse)
|
26
27
|
end
|
27
28
|
|
28
29
|
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.75.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-17 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
|