ruby/proto/gitaly/diff_services_pb.rb in gitaly-16.11.10 vs ruby/proto/gitaly/diff_services_pb.rb in gitaly-17.0.0.pre.rc1

- old
+ new

@@ -43,9 +43,12 @@ rpc :GetPatchID, ::Gitaly::GetPatchIDRequest, ::Gitaly::GetPatchIDResponse # RawRangeDiff outputs the raw range diff data for a given range specification. rpc :RawRangeDiff, ::Gitaly::RawRangeDiffRequest, stream(::Gitaly::RawRangeDiffResponse) # RangeDiff outputs the parsed commit pairs from range diff for a given range specification. rpc :RangeDiff, ::Gitaly::RangeDiffRequest, stream(::Gitaly::RangeDiffResponse) + # DiffBlobs computes diffs between pairs of blobs. A batch of blob pairs is sent to the server. + # The resulting patches are then chucked across response messages and streamed to the client. + rpc :DiffBlobs, ::Gitaly::DiffBlobsRequest, stream(::Gitaly::DiffBlobsResponse) end Stub = Service.rpc_stub_class end end