gitaly-proto 0.107.0 → 0.108.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: f81eb164df2c681d276c13ffbeeee93c94655907
4
- data.tar.gz: 5533735d4a4ed33090497d983d40df2e211ba273
3
+ metadata.gz: b66db38d9e685411cc24f8d9a42c330fe4d7d005
4
+ data.tar.gz: 97b5e94a2f3bb3d276051ee41d86a1f42bdf5012
5
5
  SHA512:
6
- metadata.gz: a977258abd20583c1df40ee8174cc1ffd8811afb9855311833835678b68b12976f74f305be4682b4ecf91357f9d90810da34383e258f079c5d71d9de54faf906
7
- data.tar.gz: cdd06ac24c2da18096d40cc4225f908e04d079032ec299337efd588a8f8b97c8d99d3bca6e3b65a7c0dbfe64f439cf63adff03cb6a3029c82345ff92a3636a41
6
+ metadata.gz: 0c88f72a720bc0b1f034e5ec5d4aafdecab057c6c827f749eccec48699fb0cf84f070cdae290244388012df341a877fabb3a6ed9dd71be4c6dc1a4f689179116
7
+ data.tar.gz: b5f9d0d2a30364369ad6cc391879504dc24bf24b7c4075f65fbd1cc21004c6089dcb66d41e67290935ba2bec1c539a0d7a047547ca884e1cf8a2e577ad96b7b4
@@ -73,6 +73,19 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
73
73
  add_message "gitaly.RawPatchResponse" do
74
74
  optional :data, :bytes, 1
75
75
  end
76
+ add_message "gitaly.DiffStatsRequest" do
77
+ optional :repository, :message, 1, "gitaly.Repository"
78
+ optional :left_commit_id, :string, 2
79
+ optional :right_commit_id, :string, 3
80
+ end
81
+ add_message "gitaly.DiffStats" do
82
+ optional :path, :bytes, 1
83
+ optional :additions, :int32, 2
84
+ optional :deletions, :int32, 3
85
+ end
86
+ add_message "gitaly.DiffStatsResponse" do
87
+ repeated :stats, :message, 1, "gitaly.DiffStats"
88
+ end
76
89
  end
77
90
 
78
91
  module Gitaly
@@ -87,4 +100,7 @@ module Gitaly
87
100
  RawDiffResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawDiffResponse").msgclass
88
101
  RawPatchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawPatchRequest").msgclass
89
102
  RawPatchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawPatchResponse").msgclass
103
+ DiffStatsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiffStatsRequest").msgclass
104
+ DiffStats = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiffStats").msgclass
105
+ DiffStatsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiffStatsResponse").msgclass
90
106
  end
@@ -21,6 +21,7 @@ module Gitaly
21
21
  rpc :CommitPatch, CommitPatchRequest, stream(CommitPatchResponse)
22
22
  rpc :RawDiff, RawDiffRequest, stream(RawDiffResponse)
23
23
  rpc :RawPatch, RawPatchRequest, stream(RawPatchResponse)
24
+ rpc :DiffStats, DiffStatsRequest, stream(DiffStatsResponse)
24
25
  end
25
26
 
26
27
  Stub = Service.rpc_stub_class
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by /Users/jacobvosmaer/Desktop/gitlab-development-kit/gitaly/src/gitlab.com/gitlab-org/gitaly-proto/_support/release
2
2
  module Gitaly
3
- VERSION = "0.107.0"
3
+ VERSION = "0.108.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.107.0
4
+ version: 0.108.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-12 00:00:00.000000000 Z
11
+ date: 2018-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf