gitaly-proto 0.111.0 → 0.112.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: dc22bc26f9a78efb81e734a5baccf243876b996f
4
- data.tar.gz: e5e5442e616faaef318ed185ce1b16214138aea0
3
+ metadata.gz: 4ab1f0e2a7dea818292583230a0d9c1b2fc2b8eb
4
+ data.tar.gz: 0f40d003c496ec5dda6614ed10142a634230ed9d
5
5
  SHA512:
6
- metadata.gz: e9208069bcc5f85701340de9a6c47ccdb6184a4cfa20e13b0094bdbf0b09fb0e4a20c2c768c185761e56d77e80a39c1aab1eb304be6f41ffac0391754c2cf96b
7
- data.tar.gz: d43b8af68f684ac4f8ce9ae5a9a15b5fbd66d46c10d1319e633f99ca98f408949a0843c24b00f9a5b85032a4255a9eb7fed3e37890b0b5c3916d7b6c5e926558
6
+ metadata.gz: a7dcbfcea6a94f8e48e65d7aed6631e587d3036c6be3b11fe265f1deb80cf1f21e6c8189361f85982aa1c8b1cd59bd981f796eb61ff31d164474c330007f34aa
7
+ data.tar.gz: f7548b552bf5047741fadc475150619118a2fd6ba4161c64daf27803cbfde3002d72399ff24abbe34c0b98db16fc7032ca19e8d698f8e7a8fb91d1598f74ae45
@@ -38,6 +38,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
38
38
  optional :data, :bytes, 2
39
39
  optional :oid, :string, 3
40
40
  end
41
+ add_message "gitaly.NewBlobObject" do
42
+ optional :size, :int64, 1
43
+ optional :oid, :string, 2
44
+ optional :path, :bytes, 3
45
+ end
41
46
  add_message "gitaly.GetLFSPointersRequest" do
42
47
  optional :repository, :message, 1, "gitaly.Repository"
43
48
  repeated :blob_ids, :string, 2
@@ -71,6 +76,7 @@ module Gitaly
71
76
  GetBlobsRequest::RevisionPath = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsRequest.RevisionPath").msgclass
72
77
  GetBlobsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsResponse").msgclass
73
78
  LFSPointer = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LFSPointer").msgclass
79
+ NewBlobObject = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.NewBlobObject").msgclass
74
80
  GetLFSPointersRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetLFSPointersRequest").msgclass
75
81
  GetLFSPointersResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetLFSPointersResponse").msgclass
76
82
  GetNewLFSPointersRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetNewLFSPointersRequest").msgclass
@@ -3,9 +3,18 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'blob_pb'
6
7
  require 'shared_pb'
7
8
  require 'google/protobuf/timestamp_pb'
8
9
  Google::Protobuf::DescriptorPool.generated_pool.build do
10
+ add_message "gitaly.ListNewBlobsRequest" do
11
+ optional :repository, :message, 1, "gitaly.Repository"
12
+ optional :commit_id, :string, 2
13
+ optional :limit, :uint32, 3
14
+ end
15
+ add_message "gitaly.ListNewBlobsResponse" do
16
+ repeated :new_blob_objects, :message, 1, "gitaly.NewBlobObject"
17
+ end
9
18
  add_message "gitaly.FindDefaultBranchNameRequest" do
10
19
  optional :repository, :message, 1, "gitaly.Repository"
11
20
  end
@@ -158,6 +167,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
158
167
  end
159
168
 
160
169
  module Gitaly
170
+ ListNewBlobsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewBlobsRequest").msgclass
171
+ ListNewBlobsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewBlobsResponse").msgclass
161
172
  FindDefaultBranchNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindDefaultBranchNameRequest").msgclass
162
173
  FindDefaultBranchNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindDefaultBranchNameResponse").msgclass
163
174
  FindAllBranchNamesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchNamesRequest").msgclass
@@ -34,6 +34,7 @@ module Gitaly
34
34
  rpc :GetTagMessages, GetTagMessagesRequest, stream(GetTagMessagesResponse)
35
35
  # Returns commits that are only reachable from the ref passed
36
36
  rpc :ListNewCommits, ListNewCommitsRequest, stream(ListNewCommitsResponse)
37
+ rpc :ListNewBlobs, ListNewBlobsRequest, stream(ListNewBlobsResponse)
37
38
  end
38
39
 
39
40
  Stub = Service.rpc_stub_class
@@ -1,4 +1,4 @@
1
- # This file was auto-generated by /Users/jacobvosmaer/Desktop/gitlab-development-kit/gitaly/src/gitlab.com/gitlab-org/gitaly-proto/_support/release
1
+ # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.111.0"
3
+ VERSION = "0.112.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.111.0
4
+ version: 0.112.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-07-31 00:00:00.000000000 Z
11
+ date: 2018-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf