gitaly-proto 0.83.0 → 0.84.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/blob_pb.rb +10 -1
- data/ruby/lib/gitaly/blob_services_pb.rb +0 -4
- 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: a77a5e0fea1f1caa6ef2de92067a30ba973784fd
|
4
|
+
data.tar.gz: 8235f4e34f667cce01330022417a19fb9f2833f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b67ce986391fd9d85f3694ad75b7a113ebe80afa9a11e127d37f401c7e5b242aaa8a29e6b71b9ac33f6886bff142390c0c4a238534e88eabaa7ce0f0016acea6
|
7
|
+
data.tar.gz: a8bdf9816104863e8adbcb85c7a936a8b8faccf6caea92db9328504c25383cb0d99e3fc2a0324f808fd7a7fc3930cb0d080852ac2a01a712ce2ce8b75aff5c45
|
data/ruby/lib/gitaly/blob_pb.rb
CHANGED
@@ -17,13 +17,21 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
17
17
|
end
|
18
18
|
add_message "gitaly.GetBlobsRequest" do
|
19
19
|
optional :repository, :message, 1, "gitaly.Repository"
|
20
|
-
repeated :
|
20
|
+
repeated :revision_paths, :message, 2, "gitaly.GetBlobsRequest.RevisionPath"
|
21
21
|
optional :limit, :int64, 3
|
22
22
|
end
|
23
|
+
add_message "gitaly.GetBlobsRequest.RevisionPath" do
|
24
|
+
optional :revision, :string, 1
|
25
|
+
optional :path, :bytes, 2
|
26
|
+
end
|
23
27
|
add_message "gitaly.GetBlobsResponse" do
|
24
28
|
optional :size, :int64, 1
|
25
29
|
optional :data, :bytes, 2
|
26
30
|
optional :oid, :string, 3
|
31
|
+
optional :is_submodule, :bool, 4
|
32
|
+
optional :mode, :int32, 5
|
33
|
+
optional :revision, :string, 6
|
34
|
+
optional :path, :bytes, 7
|
27
35
|
end
|
28
36
|
add_message "gitaly.LFSPointer" do
|
29
37
|
optional :size, :int64, 1
|
@@ -43,6 +51,7 @@ module Gitaly
|
|
43
51
|
GetBlobRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobRequest").msgclass
|
44
52
|
GetBlobResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobResponse").msgclass
|
45
53
|
GetBlobsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsRequest").msgclass
|
54
|
+
GetBlobsRequest::RevisionPath = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsRequest.RevisionPath").msgclass
|
46
55
|
GetBlobsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsResponse").msgclass
|
47
56
|
LFSPointer = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LFSPointer").msgclass
|
48
57
|
GetLFSPointersRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetLFSPointersRequest").msgclass
|
@@ -18,10 +18,6 @@ module Gitaly
|
|
18
18
|
# ID. We use a stream to return a chunked arbitrarily large binary
|
19
19
|
# response
|
20
20
|
rpc :GetBlob, GetBlobRequest, stream(GetBlobResponse)
|
21
|
-
# GetBlobsBySHA returns the contents of a blob objects referenced by their object
|
22
|
-
# ID. We use a stream to return a chunked arbitrarily large binary response.
|
23
|
-
# The blobs are sent in a continous stream, the caller is responsible for spliting
|
24
|
-
# them up into multiple blobs by their object IDs.
|
25
21
|
rpc :GetBlobs, GetBlobsRequest, stream(GetBlobsResponse)
|
26
22
|
rpc :GetLFSPointers, GetLFSPointersRequest, stream(GetLFSPointersResponse)
|
27
23
|
end
|
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.84.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-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|