gitaly 14.0.0.pre.rc2 → 14.1.0.pre.rc1

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
  SHA256:
3
- metadata.gz: a5e966139d8e93b8f41fb3ce97964e1b2e386cecfbf914cb32db2b68d2ac7a22
4
- data.tar.gz: c1b5d81ead08bc3d1357c6b72b73c0c2d0d8454e6aba93b6e594220e94233a18
3
+ metadata.gz: 941a55633bfd84105d05d6c0e1cfc61aff54c7fbc4e62b862c0cf8fb0a10d2cf
4
+ data.tar.gz: 95250606bc2d3020cfb6782937638557c305f3df976593594aa6feaffdcf28f9
5
5
  SHA512:
6
- metadata.gz: eab6f4e9ae69c14bb619b6ec2aa94540b4ddb93e6eb38226828771e66d565f5619298e27dcf87aea05e82de73b7b0da9ccb8dae33b5dbfe0399d2724b46f7cb3
7
- data.tar.gz: 6810dc1d4e0aa226b3da3bbbf6241c24673b58e5097edef1fa9e1aaf5c2b1caf6f7369c5fc90dd1136e9a62895b591536383098c62b2305cbeafc6e1d3c5477d
6
+ metadata.gz: 3ef7956e6f31c3c36e5c57839c00232cf7a6c399a8726a266cfa39f359b5bc1d91a5581ecbc1d675c2cbbb44158e8fcd6695e184c2ed4fa34f16d7b08625c0d5
7
+ data.tar.gz: 4cd26b241faa5ebb0b67b88a7177110fba1dade4143083a3db95dc53e9de709e94230e027e515f52e2f70ad82e83b2b157221a8935e36837f732ff752055dddc
@@ -36,6 +36,20 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
36
36
  optional :path, :bytes, 7
37
37
  optional :type, :enum, 8, "gitaly.ObjectType"
38
38
  end
39
+ add_message "gitaly.ListBlobsRequest" do
40
+ optional :repository, :message, 1, "gitaly.Repository"
41
+ repeated :revisions, :string, 2
42
+ optional :limit, :uint32, 3
43
+ optional :bytes_limit, :int64, 4
44
+ end
45
+ add_message "gitaly.ListBlobsResponse" do
46
+ repeated :blobs, :message, 1, "gitaly.ListBlobsResponse.Blob"
47
+ end
48
+ add_message "gitaly.ListBlobsResponse.Blob" do
49
+ optional :oid, :string, 1
50
+ optional :size, :int64, 2
51
+ optional :data, :bytes, 3
52
+ end
39
53
  add_message "gitaly.LFSPointer" do
40
54
  optional :size, :int64, 1
41
55
  optional :data, :bytes, 2
@@ -77,6 +91,9 @@ module Gitaly
77
91
  GetBlobsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsRequest").msgclass
78
92
  GetBlobsRequest::RevisionPath = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsRequest.RevisionPath").msgclass
79
93
  GetBlobsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsResponse").msgclass
94
+ ListBlobsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBlobsRequest").msgclass
95
+ ListBlobsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBlobsResponse").msgclass
96
+ ListBlobsResponse::Blob = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBlobsResponse.Blob").msgclass
80
97
  LFSPointer = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LFSPointer").msgclass
81
98
  NewBlobObject = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.NewBlobObject").msgclass
82
99
  GetLFSPointersRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetLFSPointersRequest").msgclass
@@ -19,6 +19,10 @@ module Gitaly
19
19
  # response
20
20
  rpc :GetBlob, Gitaly::GetBlobRequest, stream(Gitaly::GetBlobResponse)
21
21
  rpc :GetBlobs, Gitaly::GetBlobsRequest, stream(Gitaly::GetBlobsResponse)
22
+ # ListBlobs will list all blobs reachable from a given set of revisions by
23
+ # doing a graph walk. It is not valid to pass revisions which do not resolve
24
+ # to an existing object.
25
+ rpc :ListBlobs, Gitaly::ListBlobsRequest, stream(Gitaly::ListBlobsResponse)
22
26
  # GetLFSPointers retrieves LFS pointers from a given set of object IDs.
23
27
  # This RPC filters all requested objects and only returns those which refer
24
28
  # to a valid LFS pointer.
@@ -2,5 +2,5 @@
2
2
  # (https://gitlab.com/gitlab-org/release-tools/), and should not be
3
3
  # modified.
4
4
  module Gitaly
5
- VERSION = '14.0.0-rc2'
5
+ VERSION = '14.1.0-rc1'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitaly
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.0.0.pre.rc2
4
+ version: 14.1.0.pre.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Vosmaer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-10 00:00:00.000000000 Z
11
+ date: 2021-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
93
  - !ruby/object:Gem::Version
94
94
  version: 1.3.1
95
95
  requirements: []
96
- rubygems_version: 3.2.18
96
+ rubygems_version: 3.2.19
97
97
  signing_key:
98
98
  specification_version: 4
99
99
  summary: Auto-generated gRPC client for gitaly