-
Notifications
You must be signed in to change notification settings - Fork 737
feat: Add automated dependency version tracking and extraction #3547
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
dagil-nvidia
wants to merge
30
commits into
main
Choose a base branch
from
feature/dependency-extraction-DYN-1235
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
f427a8b
feat: Add automated dependency version tracking and extraction
7ea0b89
Add SPDX copyright header to extraction script
62b6e1f
Fix pre-commit issues: import order and EOF
b283998
Remove unintended files and update .gitignore
692b308
Fix pre-commit issues: executable permission and unused variables
318f45c
Fix remaining unused variables: service and critical_reason
51af209
Make baseline dependency count dynamic based on previous extraction
749d8e2
Add removed dependencies tracking and PR reporting
dagil-nvidia cc3c88f
Fix YAML syntax error in nightly workflow
dagil-nvidia d520194
Fix all pre-commit issues: YAML syntax and formatting
dagil-nvidia 9ac63de
Fix shell script extraction to skip runtime-determined versions
dagil-nvidia c0722d0
feat: Enhance dependency extraction to capture pip installs and binarβ¦
dagil-nvidia 3b0e8ab
fix: Remove trailing whitespace from extraction script
dagil-nvidia bd37921
fix: address CodeRabbit and reviewer feedback
dagil-nvidia e4619f1
Address nv-tusharma's review comments
dagil-nvidia f5a8770
feat(deps): add version discrepancy detection and composite action
dagil-nvidia 3b5a644
fix: apply black and ruff formatting fixes
dagil-nvidia 5ff3749
fix(deps): improve discrepancy detection accuracy
dagil-nvidia f547bae
fix(deps): skip sub-dependency ARGs, normalize pinning, and document β¦
dagil-nvidia a1860f0
fix: apply isort and black formatting
dagil-nvidia 3972458
feat(deps): add automated failure monitoring for dependency extractioβ¦
dagil-nvidia a86a3f5
fix: address pre-commit trailing whitespace issues
dagil-nvidia e91ff3e
refactor(deps): address nv-anants review feedback
dagil-nvidia acc4450
docs(deps): add comprehensive documentation for dependency extraction
dagil-nvidia b98d2cf
chore: trigger DCO re-check
dagil-nvidia f041e40
refactor(deps): modularize dependency extraction system
dagil-nvidia 32456dc
feat(deps): add extractor architecture and unit tests
dagil-nvidia 512c347
Merge branch 'main' into feature/dependency-extraction-DYN-1235
dagil-nvidia c163fa4
fix: apply pre-commit formatting fixes and update test markers
dagil-nvidia d20b575
feat(deps): add dynamic FRAMEWORK_VERSIONS.md generator
dagil-nvidia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
refactor(deps): address nv-anants review feedback
Implemented review comments from PR #3547: 1. **Clarified gitignore patterns** - Added detailed comments explaining why timestamped CSVs are ignored while latest/release versions are tracked 2. **Merged unversioned dependencies into main CSV** - Removed separate unversioned_dependencies.csv file. All dependencies (versioned and unversioned) now in single CSV with console warnings for unversioned ones 3. **Moved config file** - Relocated extract_dependency_versions_config.yaml to .github/dependency-extraction/config.yaml for better organization outside workflows folder 4. **Merged nightly/release workflows** - Combined dependency-extraction-nightly.yml and dependency-extraction-release.yml into single unified dependency-extraction.yml with conditional logic based on trigger type 5. **Enhanced composite action** - Expanded dependency-extraction-setup action to include checkout, reports directory creation, and configurable fetch-depth Changes: - Updated all references to new config path - Removed --report-unversioned flag from script and workflows - Added unversioned dependency summary in write_csv() console output - Unified workflow supports both nightly (schedule/manual) and release (push to release/* or manual) modes - Composite action now handles more common setup steps Documentation updated: - README.md now references unified workflow - PR description updated with comprehensive review details Signed-off-by: Dan Gil <[email protected]>
- Loading branch information
commit e91ff3ecd808142c1749dd42b48b33cc0b29b1f7
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
File renamed without changes.
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this can be extended to extract more things out of workflow i think