Allow missing side when listing conflicts on diffs
In https://gitlab.com/gitlab-org/gitaly/-/merge_requests/3648, support for listing conflicts even when there's a missing side has been added to ListConflictFiles RPC. This only happens when `allow_tree_conflicts` is set to `true` in the RPC request. This allows gitlab-rails to use that parameter when displaying MR diffs with conflicts. The `allow_tree_conflicts` will be set to `true` only when `display_merge_conflicts_in_diff` is enabled. Otherwise, it'll be set to `false`.
Showing
... | @@ -472,7 +472,7 @@ end | ... | @@ -472,7 +472,7 @@ end |
gem 'spamcheck', '~> 0.1.0' | gem 'spamcheck', '~> 0.1.0' | ||
# Gitaly GRPC protocol definitions | # Gitaly GRPC protocol definitions | ||
gem 'gitaly', '~> 14.1.0.pre.rc3' | gem 'gitaly', '~> 14.1.0.pre.rc4' | ||
# KAS GRPC protocol definitions | # KAS GRPC protocol definitions | ||
gem 'kas-grpc', '~> 0.0.2' | gem 'kas-grpc', '~> 0.0.2' | ||
... | ... |
Please register or sign in to comment