gitaly 0.29.0 → 0.30.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/lib/gitaly/diff_pb.rb +9 -0
- data/ruby/lib/gitaly/diff_services_pb.rb +1 -0
- data/ruby/lib/gitaly/version.rb +1 -1
- 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: 43fe82ac99c00859d088fb4bdc5dc511985e6c30
|
4
|
+
data.tar.gz: 06f24711cbc7dc40b21346e95f2910d5dbd10c36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a762cb523aa4e8970595618bdcd0e27dfd1dbb78954ff6ecb04b7dd6283e2b25a6a5a9d95162d8bf4823ba13c4d6e1c6ef6dfb0d5c55ed8042ca410eca89b985
|
7
|
+
data.tar.gz: c3511907183a5f384d1657a81a0f26d65a5b603ff414a51113aa43821a55eb060c2ab9059ce7c9ac6ee950707564a401c3cd61b36b77a6aef0b3d25754b1406b
|
data/ruby/lib/gitaly/diff_pb.rb
CHANGED
@@ -50,6 +50,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
50
50
|
add_message "gitaly.CommitDeltaResponse" do
|
51
51
|
repeated :deltas, :message, 1, "gitaly.CommitDelta"
|
52
52
|
end
|
53
|
+
add_message "gitaly.CommitPatchRequest" do
|
54
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
55
|
+
optional :revision, :bytes, 2
|
56
|
+
end
|
57
|
+
add_message "gitaly.CommitPatchResponse" do
|
58
|
+
optional :data, :bytes, 1
|
59
|
+
end
|
53
60
|
end
|
54
61
|
|
55
62
|
module Gitaly
|
@@ -58,4 +65,6 @@ module Gitaly
|
|
58
65
|
CommitDeltaRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDeltaRequest").msgclass
|
59
66
|
CommitDelta = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDelta").msgclass
|
60
67
|
CommitDeltaResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDeltaResponse").msgclass
|
68
|
+
CommitPatchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitPatchRequest").msgclass
|
69
|
+
CommitPatchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitPatchResponse").msgclass
|
61
70
|
end
|
@@ -18,6 +18,7 @@ module Gitaly
|
|
18
18
|
rpc :CommitDiff, CommitDiffRequest, stream(CommitDiffResponse)
|
19
19
|
# Return a stream so we can divide the response in chunks of deltas
|
20
20
|
rpc :CommitDelta, CommitDeltaRequest, stream(CommitDeltaResponse)
|
21
|
+
rpc :CommitPatch, CommitPatchRequest, stream(CommitPatchResponse)
|
21
22
|
end
|
22
23
|
|
23
24
|
Stub = Service.rpc_stub_class
|
data/ruby/lib/gitaly/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitaly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
118
118
|
version: '0'
|
119
119
|
requirements: []
|
120
120
|
rubyforge_project:
|
121
|
-
rubygems_version: 2.
|
121
|
+
rubygems_version: 2.6.10
|
122
122
|
signing_key:
|
123
123
|
specification_version: 4
|
124
124
|
summary: Auto-generated gRPC client for gitaly
|