gitaly-proto 0.38.0 → 0.39.0

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
  SHA1:
3
- metadata.gz: d1c4cbeed0cb6dd699068ce2cf350ba06ed8a51a
4
- data.tar.gz: '0122803d3c6aeac2271b2ce9b66b5ad8ab64ced3'
3
+ metadata.gz: 2f4f146836a2708b8c858ecd04783b8d83c8637f
4
+ data.tar.gz: 65c5eb54f5517e75c1e192df4cf6a008dbf82d8b
5
5
  SHA512:
6
- metadata.gz: 7c661ffa7a5abc11050ae4e3fba7957d1e2576b84c1e7fe7e5046a8fb6215d6c10085e90b5c6a978efd6f22911c7cf54461011445b300887b2581ea801ad4d3a
7
- data.tar.gz: df7ea986b13c5846a5e7c783301e6da9df97c67698a4feed25381de958159edf756c560f4a755778402df58d71f4a165d6cdc462c7d613d8c61988583370a4ba
6
+ metadata.gz: f83a41b8ce3d31bb2e122fde6f62f3a8e04c679bba60302197932d530302d0e030514a7b0ca2a466061c1ef40ad093c034cc92e125859b55c006a8185fc303de
7
+ data.tar.gz: 1c816f5876c0228f2363827a2540852a2fa2bb2d72108cae303fbd9db06c8aee8b8a7dc8667409df711df8b3b6b6eb6bebd4ac68b26ac11f83101ea322cd724b
@@ -57,6 +57,22 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
57
57
  add_message "gitaly.CommitPatchResponse" do
58
58
  optional :data, :bytes, 1
59
59
  end
60
+ add_message "gitaly.RawDiffRequest" do
61
+ optional :repository, :message, 1, "gitaly.Repository"
62
+ optional :left_commit_id, :string, 2
63
+ optional :right_commit_id, :string, 3
64
+ end
65
+ add_message "gitaly.RawDiffResponse" do
66
+ optional :data, :bytes, 1
67
+ end
68
+ add_message "gitaly.RawPatchRequest" do
69
+ optional :repository, :message, 1, "gitaly.Repository"
70
+ optional :left_commit_id, :string, 2
71
+ optional :right_commit_id, :string, 3
72
+ end
73
+ add_message "gitaly.RawPatchResponse" do
74
+ optional :data, :bytes, 1
75
+ end
60
76
  end
61
77
 
62
78
  module Gitaly
@@ -67,4 +83,8 @@ module Gitaly
67
83
  CommitDeltaResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDeltaResponse").msgclass
68
84
  CommitPatchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitPatchRequest").msgclass
69
85
  CommitPatchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitPatchResponse").msgclass
86
+ RawDiffRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawDiffRequest").msgclass
87
+ RawDiffResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawDiffResponse").msgclass
88
+ RawPatchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawPatchRequest").msgclass
89
+ RawPatchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawPatchResponse").msgclass
70
90
  end
@@ -19,6 +19,8 @@ module Gitaly
19
19
  # Return a stream so we can divide the response in chunks of deltas
20
20
  rpc :CommitDelta, CommitDeltaRequest, stream(CommitDeltaResponse)
21
21
  rpc :CommitPatch, CommitPatchRequest, stream(CommitPatchResponse)
22
+ rpc :RawDiff, RawDiffRequest, stream(RawDiffResponse)
23
+ rpc :RawPatch, RawPatchRequest, stream(RawPatchResponse)
22
24
  end
23
25
 
24
26
  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.38.0"
3
+ VERSION = "0.39.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.38.0
4
+ version: 0.39.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: 2017-09-27 00:00:00.000000000 Z
11
+ date: 2017-10-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
93
  version: '0'
94
94
  requirements: []
95
95
  rubyforge_project:
96
- rubygems_version: 2.5.2
96
+ rubygems_version: 2.5.1
97
97
  signing_key:
98
98
  specification_version: 4
99
99
  summary: Auto-generated gRPC client for gitaly