1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!--
👋 Welcome! Thank you for contributing a bug fix.
Please fill out the sections below to help us review your PR efficiently.
-->
# Bug Fix PR
## Overview
<!-- Provide a concise description of the bug and its fix -->
## Related Issues
<!-- Link to the related issue(s): e.g., Fixes #123 -->
## Root Cause
<!-- Explain why the bug occurred and the technical background -->
```
// Problematic code or configuration (if applicable)
```
## Solution Implemented
<!-- Describe how you fixed the bug -->
## Test Coverage
<!-- Describe how you verified the fix works correctly -->
- [ ] Unit tests added/updated
- [ ] Integration tests added/updated
- [ ] Manual testing completed
- [ ] Edge cases considered and tested
## Screenshots/Videos
<!-- If applicable, add screenshots or videos to help explain the fix -->
## User Impact
<!-- How did this bug affect users? How does the fix improve their experience? -->
## Documentation
<!-- Document any changes needed for this fix -->
- [ ] Code comments updated
- [ ] README/docs updated
- [ ] No documentation changes needed
## Deployment Notes
<!-- Any special considerations for deployment? -->
## Rollback Plan
<!-- How can this change be reverted if necessary? -->
## PR Checklist
- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective