Previously, in order to have clang-format not format something, you had to give both:
SortIncludes: false DisableFormat: true
This is confusing to users, who would expect that DisableFormat does what it says, and prevents clang-format from editing any files it applies to. See https://stackoverflow.com/questions/55833838/clang-format-still-formatting-with-disableformat-true for example.
this no longer allows DisableFormat=true but SortInclude=true... i.e. running ClangFormat to just sort the headers.