gitaly-proto 0.97.0 → 0.98.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: 3c9e94f2885aa5be7697634c0c97f7bcce5e7501
4
- data.tar.gz: edc399a238619138f3f693566dae9284469a9f10
3
+ metadata.gz: 287342d6763ad93e0d338657cdce7470cccb6c82
4
+ data.tar.gz: 5c4e50b7b0492814feebcaf956bc0f103c92b0bd
5
5
  SHA512:
6
- metadata.gz: 3e34f5a0fa672c5ec2446236ee685b8ef7add7af47ca97715dd20f266c2b5cddf5bb852a3ad75f57fc9760ab72fec1cc27ab54c7ad7627665a7e93f2f5166efe
7
- data.tar.gz: cd57f79c7a3023101fb7d04bfb3eaee4bc7d9762b132963384e2d3e7204d3b105b145b7157a4b4a5e995aebbd402e5ed710116889b838d28d0d66295798df970
6
+ metadata.gz: 608d3248b9616674ab7db9da06c945deec10b5a353aed626c095ffbd3f715ef95e13a3a33a449debadd6f05dff9966de0e6e26c58c8d5cd2da84ed9d68b07116
7
+ data.tar.gz: 4bf0bf757f9d95ffa287b59b536cf600151ac77c2abfdb74086133d605a8f7057a434eede4ef8f44db2a0a372782e688adf822606b10f29e01377c4e6414d816
@@ -192,6 +192,31 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
192
192
  end
193
193
  add_message "gitaly.CreateRepositoryFromSnapshotResponse" do
194
194
  end
195
+ add_message "gitaly.GetRawChangesRequest" do
196
+ optional :repository, :message, 1, "gitaly.Repository"
197
+ optional :from_revision, :string, 2
198
+ optional :to_revision, :string, 3
199
+ end
200
+ add_message "gitaly.GetRawChangesResponse" do
201
+ repeated :raw_changes, :message, 1, "gitaly.GetRawChangesResponse.RawChange"
202
+ end
203
+ add_message "gitaly.GetRawChangesResponse.RawChange" do
204
+ optional :blob_id, :string, 1
205
+ optional :size, :int64, 2
206
+ optional :new_path, :string, 3
207
+ optional :old_path, :string, 4
208
+ optional :operation, :enum, 5, "gitaly.GetRawChangesResponse.RawChange.Operation"
209
+ optional :raw_operation, :string, 6
210
+ end
211
+ add_enum "gitaly.GetRawChangesResponse.RawChange.Operation" do
212
+ value :UNKNOWN, 0
213
+ value :ADDED, 1
214
+ value :COPIED, 2
215
+ value :DELETED, 3
216
+ value :MODIFIED, 4
217
+ value :RENAMED, 5
218
+ value :TYPE_CHANGED, 6
219
+ end
195
220
  end
196
221
 
197
222
  module Gitaly
@@ -250,4 +275,8 @@ module Gitaly
250
275
  GetSnapshotResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetSnapshotResponse").msgclass
251
276
  CreateRepositoryFromSnapshotRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromSnapshotRequest").msgclass
252
277
  CreateRepositoryFromSnapshotResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromSnapshotResponse").msgclass
278
+ GetRawChangesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesRequest").msgclass
279
+ GetRawChangesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesResponse").msgclass
280
+ GetRawChangesResponse::RawChange = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesResponse.RawChange").msgclass
281
+ GetRawChangesResponse::RawChange::Operation = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesResponse.RawChange.Operation").enummodule
253
282
  end
@@ -41,6 +41,7 @@ module Gitaly
41
41
  rpc :Cleanup, CleanupRequest, CleanupResponse
42
42
  rpc :GetSnapshot, GetSnapshotRequest, stream(GetSnapshotResponse)
43
43
  rpc :CreateRepositoryFromSnapshot, CreateRepositoryFromSnapshotRequest, CreateRepositoryFromSnapshotResponse
44
+ rpc :GetRawChanges, GetRawChangesRequest, stream(GetRawChangesResponse)
44
45
  end
45
46
 
46
47
  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.97.0"
3
+ VERSION = "0.98.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.97.0
4
+ version: 0.98.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-04-12 00:00:00.000000000 Z
11
+ date: 2018-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf