llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang-tools-extra Author: Baranov Victor (vbvictor) <details> <summary>Changes</summary> This implements: https://github.com/llvm/llvm-project/blob/30e9cbacab5b474de89992851f126fff300c1ab7/llvm/docs/DeveloperPolicy.rst?plain=1#L282-L286 >From LLVM developer policy. --- Full diff: https://github.com/llvm/llvm-project/pull/158434.diff 2 Files Affected: - (modified) clang-tools-extra/docs/ReleaseNotes.rst (+15) - (modified) clang-tools-extra/docs/ReleaseNotesTemplate.txt (+3) ``````````diff diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 34091906cbff2..7cdff86beeec6 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -46,6 +46,21 @@ infrastructure are described first, followed by tool-specific sections. Major New Features ------------------ +Potentially Breaking Changes +---------------------------- + +- Removed :program:`clang-tidy`'s global options `IgnoreMacros` and + `StrictMode`, which were documented as deprecated since + :program:`clang-tidy-20`. Users should use the check-specific options of the + same name instead. + +- Renamed :program:`clang-tidy`'s option name of check + :doc:`bugprone-easily-swappable-parameters + <clang-tidy/checks/bugprone/easily-swappable-parameters>` from + ``NamePrefixSuffixSilenceDissimilarityTreshold`` to + ``NamePrefixSuffixSilenceDissimilarityThreshold``, + correcting a spelling mistake. + Improvements to clangd ---------------------- diff --git a/clang-tools-extra/docs/ReleaseNotesTemplate.txt b/clang-tools-extra/docs/ReleaseNotesTemplate.txt index b17799b3b557d..69c3bcf67b8db 100644 --- a/clang-tools-extra/docs/ReleaseNotesTemplate.txt +++ b/clang-tools-extra/docs/ReleaseNotesTemplate.txt @@ -46,6 +46,9 @@ infrastructure are described first, followed by tool-specific sections. Major New Features ------------------ +Potentially Breaking Changes +---------------------------- + Improvements to clangd ---------------------- `````````` </details> https://github.com/llvm/llvm-project/pull/158434 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
