ruby/proto/gitaly/diff_services_pb.rb in gitaly-16.10.10 vs ruby/proto/gitaly/diff_services_pb.rb in gitaly-16.11.0.pre.rc1
- old
+ new
@@ -39,9 +39,13 @@
# GetPatchID computes a patch ID for a patch. Patch IDs are a unique ID computed by hashing
# a patch with some parameters like line numbers ignored. The patch ID can thus be used to compare
# whether diffs make the same change. Please refer to git-patch-id(1) for further information.
# If the difference between old and new change is empty then this RPC returns an error.
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)
end
Stub = Service.rpc_stub_class
end
end