Feature/ignore deps#18
Merged
Merged
Conversation
|
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
Joschi3
added a commit
that referenced
this pull request
May 5, 2026
Bring per-package dependency exception support (#18) into the typing branch. Conflicts touched the two files where the typing pass overlapped with the new 'exceptions' parameter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Three related dependency-handling improvements that give users finer control over what package.xml must declare:
ignore-deps/ globally (CLI) or per-package (XML comment) suppress specific dependencies so they are not flagged as missing and not auto-filled. Intended for cases like rviz2 pulling in heavy transitive GUI deps that should not be installed on every target machine.skip-launch-dep-check: skip scanning launch/, components/, and test/ folders for implicit exec_depend / test_depend entries. Useful for packages where launch-file scanning produces false positives or is otherwise undesirable.find_package(pkg QUIET)is no longer enforced: a bareQUIETlookup (withoutREQUIRED) is semantically optional in CMake (the build continues if the package is missing), so the validator now treats it as optional and does not require it to appear in package.xml. find_package( REQUIRED QUIET) remains enforced