This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang-tools-extra.
from 5bfe385b [clangd-vscode] Do not customize uri converters in vscode new bbcaec4c [clangd] Bump vscode extension version new 3db2d00c [clang-tidy] New check calling out uses of +new in Objective-C code new d0ed0276 [clangd] Also update package-lock.json
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: clang-tidy/google/AvoidNSObjectNewCheck.cpp | 130 +++++++++++++++++++++ clang-tidy/google/AvoidNSObjectNewCheck.h | 38 ++++++ clang-tidy/google/CMakeLists.txt | 1 + clang-tidy/google/GoogleTidyModule.cpp | 3 + clangd/clients/clangd-vscode/package-lock.json | 2 +- clangd/clients/clangd-vscode/package.json | 2 +- docs/ReleaseNotes.rst | 6 + .../checks/google-objc-avoid-nsobject-new.rst | 29 +++++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/google-objc-avoid-nsobject-new.m | 80 +++++++++++++ 10 files changed, 290 insertions(+), 2 deletions(-) create mode 100644 clang-tidy/google/AvoidNSObjectNewCheck.cpp create mode 100644 clang-tidy/google/AvoidNSObjectNewCheck.h create mode 100644 docs/clang-tidy/checks/google-objc-avoid-nsobject-new.rst create mode 100644 test/clang-tidy/google-objc-avoid-nsobject-new.m