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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9532dc2af61827ec4f135e68fe1435a70b388396
4
- data.tar.gz: 7bde9b76fbfe2d0540abe970d7a3996d47bf7489
3
+ metadata.gz: a77a5e0fea1f1caa6ef2de92067a30ba973784fd
4
+ data.tar.gz: 8235f4e34f667cce01330022417a19fb9f2833f6
5
5
  SHA512:
6
- metadata.gz: 833b94f14b7f626bf131677942e36d291d040705182518709a36f7b0852cc4b8658bfcad9fc0a24783a6106641c8a91eaba4ed6168b1646b6eec47493e612042
7
- data.tar.gz: beabed1f974f753c6d946fd918531774e052fe530f4834c38835fdebae777444fb6d32346c411a016d5d4c487702b305220da34b807c5685a0e435e7d43acb61
6
+ metadata.gz: b67ce986391fd9d85f3694ad75b7a113ebe80afa9a11e127d37f401c7e5b242aaa8a29e6b71b9ac33f6886bff142390c0c4a238534e88eabaa7ce0f0016acea6
7
+ data.tar.gz: a8bdf9816104863e8adbcb85c7a936a8b8faccf6caea92db9328504c25383cb0d99e3fc2a0324f808fd7a7fc3930cb0d080852ac2a01a712ce2ce8b75aff5c45
@@ -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 :oids, :string, 2
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
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.83.0"
3
+ VERSION = "0.84.0"
4
4
  end
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.83.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-01-29 00:00:00.000000000 Z
11
+ date: 2018-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf