-
-
Notifications
You must be signed in to change notification settings - Fork 362
feat(Asset): add fingerprint on components assets #6860
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
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR adds a fingerprinting mechanism for component assets by hashing and renaming files during the build, updates the GitHub workflow to include a new trigger and bump the .NET SDK version, and adjusts the project file to integrate the new build targets for asset packaging. Class diagram for asset fingerprinting integration in build processclassDiagram
class AssetPackager {
+string[] assets
+void HashAndRenameAssets()
+void UpdateReferences()
}
class BuildProcess {
+void Run()
+AssetPackager assetPackager
}
BuildProcess --> AssetPackager: uses
File-Level Changes
Assessment against linked issues
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Pull Request Overview
This PR adds fingerprint functionality to component assets and updates build configuration. The changes include version bumping and GitHub Actions workflow updates to support the new asset fingerprinting feature.
- Incremented version to 9.11.2-beta01 for the new fingerprint feature
- Added support for chore-pack branch in CI workflow
- Updated .NET version requirement to 10.0.x
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/BootstrapBlazor/BootstrapBlazor.csproj | Version bump to beta for fingerprint feature |
| .github/workflows/pack.yml | Added chore-pack branch support and updated .NET to 10.0.x |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
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.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #6860 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 739 739
Lines 31758 31758
Branches 4466 4466
=========================================
Hits 31758 31758
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Link issues
fixes #6834
Summary By Copilot
Regression?
Risk
Verification
Packaging changes reviewed?
☑️ Self Check before Merge
Summary by Sourcery
Update the pack workflow to include a new dispatch event and upgrade the .NET SDK version
CI: