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 +4 -4
- data/ruby/lib/gitaly/blob_pb.rb +6 -0
- data/ruby/lib/gitaly/ref_pb.rb +11 -0
- data/ruby/lib/gitaly/ref_services_pb.rb +1 -0
- data/ruby/lib/gitaly/version.rb +2 -2
- 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: 4ab1f0e2a7dea818292583230a0d9c1b2fc2b8eb
|
4
|
+
data.tar.gz: 0f40d003c496ec5dda6614ed10142a634230ed9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a7dcbfcea6a94f8e48e65d7aed6631e587d3036c6be3b11fe265f1deb80cf1f21e6c8189361f85982aa1c8b1cd59bd981f796eb61ff31d164474c330007f34aa
|
7
|
+
data.tar.gz: f7548b552bf5047741fadc475150619118a2fd6ba4161c64daf27803cbfde3002d72399ff24abbe34c0b98db16fc7032ca19e8d698f8e7a8fb91d1598f74ae45
|
data/ruby/lib/gitaly/blob_pb.rb
CHANGED
@@ -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
|
data/ruby/lib/gitaly/ref_pb.rb
CHANGED
@@ -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
|
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.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-
|
11
|
+
date: 2018-08-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|