|
| 1 | +## Description |
| 2 | +Brief description of the changes in this pull request. |
| 3 | + |
| 4 | +## Type of Change |
| 5 | +Please check the relevant option(s): |
| 6 | + |
| 7 | +- [ ] 🐛 Bug fix (non-breaking change which fixes an issue) |
| 8 | +- [ ] ✨ New feature (non-breaking change which adds functionality) |
| 9 | +- [ ] 💥 Breaking change (fix or feature that would cause existing functionality to not work as expected) |
| 10 | +- [ ] 📝 Documentation update (changes to documentation only) |
| 11 | +- [ ] 🔧 Refactoring (code changes that neither fix bugs nor add features) |
| 12 | +- [ ] ⚡ Performance improvement |
| 13 | +- [ ] 🧪 Test improvements (adding or updating tests) |
| 14 | +- [ ] 🚀 Build/CI improvements |
| 15 | +- [ ] 🧹 Chore (maintenance, dependency updates, etc.) |
| 16 | + |
| 17 | +## Related Issues |
| 18 | +Closes #(issue_number) |
| 19 | +Fixes #(issue_number) |
| 20 | +Related to #(issue_number) |
| 21 | + |
| 22 | +## Changes Made |
| 23 | +Please describe the changes made in detail: |
| 24 | + |
| 25 | +- Change 1 |
| 26 | +- Change 2 |
| 27 | +- Change 3 |
| 28 | + |
| 29 | +## Testing Performed |
| 30 | +Describe the testing you have performed: |
| 31 | + |
| 32 | +- [ ] Unit tests added/updated and passing |
| 33 | +- [ ] Integration tests passing |
| 34 | +- [ ] Manual testing performed |
| 35 | +- [ ] Tested on multiple platforms (specify which ones) |
| 36 | +- [ ] Performance impact assessed |
| 37 | + |
| 38 | +### Test Commands Run |
| 39 | +```bash |
| 40 | +make test |
| 41 | +make test-verbose |
| 42 | +dub build --build=release |
| 43 | +./qboot --help |
| 44 | +``` |
| 45 | + |
| 46 | +## Configuration Changes |
| 47 | +If this PR introduces configuration changes: |
| 48 | + |
| 49 | +- [ ] Updated default configuration |
| 50 | +- [ ] Added new configuration options |
| 51 | +- [ ] Deprecated existing options |
| 52 | +- [ ] Updated configuration documentation |
| 53 | + |
| 54 | +Example configuration: |
| 55 | +```json |
| 56 | +{ |
| 57 | + "new_option": "default_value" |
| 58 | +} |
| 59 | +``` |
| 60 | + |
| 61 | +## Breaking Changes |
| 62 | +If this is a breaking change, describe: |
| 63 | + |
| 64 | +- What breaks |
| 65 | +- Migration path for users |
| 66 | +- Deprecation timeline (if applicable) |
| 67 | + |
| 68 | +## Documentation |
| 69 | +- [ ] Code is self-documenting with clear variable/function names |
| 70 | +- [ ] Added/updated inline code comments where needed |
| 71 | +- [ ] Updated README.md (if applicable) |
| 72 | +- [ ] Updated TESTING.md (if applicable) |
| 73 | +- [ ] Updated CONTRIBUTING.md (if applicable) |
| 74 | +- [ ] Updated CHANGELOG.md |
| 75 | + |
| 76 | +## Code Quality |
| 77 | +- [ ] Code follows the project's coding standards |
| 78 | +- [ ] Self-review of code completed |
| 79 | +- [ ] Code is properly formatted (`make format`) |
| 80 | +- [ ] No lint warnings (`make lint`) |
| 81 | +- [ ] No compiler warnings |
| 82 | +- [ ] Memory safety considerations addressed |
| 83 | + |
| 84 | +## Performance Impact |
| 85 | +- [ ] No performance impact |
| 86 | +- [ ] Performance improved |
| 87 | +- [ ] Performance regression (justified and documented) |
| 88 | +- [ ] Performance benchmarks run (attach results) |
| 89 | + |
| 90 | +## Security Considerations |
| 91 | +- [ ] No security impact |
| 92 | +- [ ] Security improvement |
| 93 | +- [ ] Potential security implications (documented and reviewed) |
| 94 | +- [ ] Input validation added/updated |
| 95 | +- [ ] Error handling doesn't leak sensitive information |
| 96 | + |
| 97 | +## Platform Compatibility |
| 98 | +Tested on: |
| 99 | +- [ ] Linux (Ubuntu/Debian) |
| 100 | +- [ ] Linux (CentOS/RHEL) |
| 101 | +- [ ] macOS |
| 102 | +- [ ] Windows |
| 103 | +- [ ] Other: _______________ |
| 104 | + |
| 105 | +## Dependencies |
| 106 | +- [ ] No new dependencies added |
| 107 | +- [ ] New dependencies added (justified and documented) |
| 108 | +- [ ] Dependencies updated |
| 109 | +- [ ] Dependencies removed |
| 110 | + |
| 111 | +## Deployment Notes |
| 112 | +Any special deployment considerations: |
| 113 | +- Environment variables |
| 114 | +- Configuration file changes |
| 115 | +- Database migrations |
| 116 | +- Service restarts required |
| 117 | + |
| 118 | +## Screenshots/Examples |
| 119 | +If applicable, add screenshots or examples of the changes: |
| 120 | + |
| 121 | +```bash |
| 122 | +# Example command |
| 123 | +qboot -d disk.img --new-feature |
| 124 | +``` |
| 125 | + |
| 126 | +## Checklist |
| 127 | +- [ ] I have performed a self-review of my code |
| 128 | +- [ ] I have commented my code, particularly in hard-to-understand areas |
| 129 | +- [ ] I have made corresponding changes to the documentation |
| 130 | +- [ ] My changes generate no new warnings |
| 131 | +- [ ] I have added tests that prove my fix is effective or that my feature works |
| 132 | +- [ ] New and existing unit tests pass locally with my changes |
| 133 | +- [ ] Any dependent changes have been merged and published |
| 134 | + |
| 135 | +## Additional Notes |
| 136 | +Add any additional notes, concerns, or questions for reviewers: |
| 137 | + |
| 138 | +--- |
| 139 | + |
| 140 | +**For Reviewers:** |
| 141 | +Please ensure all checklist items are completed before approving. |
0 commit comments