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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0fe92a2843028a14d8e1d6b965092e0d43fc7d2e
4
- data.tar.gz: e87bb44b8459a5627a3d66d8ed0acdcd22b6047e
3
+ metadata.gz: 2bc325858bf9f22d4875c3da0f0015ac9065144a
4
+ data.tar.gz: 241bdd3db0f7f92382df46f028d19adfbaf2ab40
5
5
  SHA512:
6
- metadata.gz: c13d626b6267eb7868c0291cf7550e86a002d8d321789c026292c64499b7f222a827981ce0291f38bf04b0ae23621aacc39cc7569c06228870177b6138a0e2e0
7
- data.tar.gz: dfd67e5886ce370ad6861be6b1390d4cf92a20de07496d08d032365c9c5a043a8cf4ff5e1a6ddef6c1217a762a005351c9b35a564c747ed6d95507ed0d16ca9b
6
+ metadata.gz: 052c73d32520b1c3771cacb78b15389c50f15be753467845ccb69ca79f8008c81b41a457eaf6ca2ba193aaa9bf702195d0e50639a68ebf46a85a5f075d9befc1
7
+ data.tar.gz: 2b9689b9620e223b298e31bae9807b6bb01687c960f8e6f695eb77ca77e3c2d8cece262a70af1045a56b2d15bedded0f82c8326ba0dfa5cf1fe284aff693b8ff
@@ -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
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.74.0"
3
+ VERSION = "0.75.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.74.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-15 00:00:00.000000000 Z
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.2
102
+ rubygems_version: 2.5.1
103
103
  signing_key:
104
104
  specification_version: 4
105
105
  summary: Auto-generated gRPC client for gitaly