gitaly 0.29.0 → 0.30.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: 57f30798280efab5fcd73457e8790380f4e61a90
4
- data.tar.gz: 4e1ebafc926f3ccefc06b984a562c31b9cd0dfba
3
+ metadata.gz: 43fe82ac99c00859d088fb4bdc5dc511985e6c30
4
+ data.tar.gz: 06f24711cbc7dc40b21346e95f2910d5dbd10c36
5
5
  SHA512:
6
- metadata.gz: 9a4a6a26bd76a9b3936452719ad4b7962e6eceafd054a2ab3aec4105526eaa05afc1299b40d9e749ff3cdd215e37cf80ec505acda2ae74f9220f6780a04d4c8e
7
- data.tar.gz: dac69b63a222b560b4b4eff5d584323aad1d51c6240a371bd75ba7350f62f18bf25eddc4bd1d46b811329095d9ca251da58512686820da8c10eaada2b41a6ffc
6
+ metadata.gz: a762cb523aa4e8970595618bdcd0e27dfd1dbb78954ff6ecb04b7dd6283e2b25a6a5a9d95162d8bf4823ba13c4d6e1c6ef6dfb0d5c55ed8042ca410eca89b985
7
+ data.tar.gz: c3511907183a5f384d1657a81a0f26d65a5b603ff414a51113aa43821a55eb060c2ab9059ce7c9ac6ee950707564a401c3cd61b36b77a6aef0b3d25754b1406b
@@ -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
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.29.0"
3
+ VERSION = "0.30.0"
4
4
  end
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.29.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.5.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