Spaces:
Sleeping
Sleeping
File size: 3,847 Bytes
079a30f | 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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | <h1 id="bug-report-tracker">Bug Report Tracker</h1>
<p>This document serves as a central repository for tracking bug reports
at various stages of the development process. It includes sections for
known bugs, fixed bugs, and bugs currently under testing. Each entry
should contain sufficient details to understand and address the issue
effectively.</p>
<h2 id="table-of-contents">Table of Contents</h2>
<ul>
<li><a href="#known-bugs">Known Bugs</a></li>
<li><a href="#fixed-bugs">Fixed Bugs</a></li>
<li><a href="#bugs-under-testing">Bugs Under Testing</a></li>
<li><a href="#reporting-a-new-bug">Reporting A New Bug</a></li>
</ul>
<hr />
<h2 id="known-bugs">Known Bugs</h2>
<p>List of bugs that have been reported and are acknowledged but not yet
fixed.</p>
<table>
<colgroup>
<col style="width: 10%" />
<col style="width: 8%" />
<col style="width: 18%" />
<col style="width: 13%" />
<col style="width: 18%" />
<col style="width: 18%" />
<col style="width: 13%" />
</colgroup>
<thead>
<tr class="header">
<th>Bug ID</th>
<th>Title</th>
<th>Description</th>
<th>Severity</th>
<th>Reported On</th>
<th>Reported By</th>
<th>Comments</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
</tr>
</tbody>
</table>
<hr />
<h2 id="fixed-bugs">Fixed Bugs</h2>
<p>List of bugs that have been fixed. Include the version or commit
where the fix was applied.</p>
<table>
<colgroup>
<col style="width: 3%" />
<col style="width: 53%" />
<col style="width: 15%" />
<col style="width: 7%" />
<col style="width: 6%" />
<col style="width: 13%" />
</colgroup>
<thead>
<tr class="header">
<th>Bug ID</th>
<th>Title</th>
<th>Fixed In Version/Commit</th>
<th>Fixed On</th>
<th>Fixed By</th>
<th>Comments</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>001</td>
<td>Lack of pre-processing during inferencing was resulting in missing
most detections.</td>
<td>Latest</td>
<td>2024-01-22</td>
<td>David</td>
<td>Added pre-processing</td>
</tr>
<tr class="even">
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
</tr>
</tbody>
</table>
<hr />
<h2 id="bugs-under-testing">Bugs Under Testing</h2>
<p>List of bugs that have been fixed and are currently under
testing.</p>
<table>
<colgroup>
<col style="width: 3%" />
<col style="width: 46%" />
<col style="width: 14%" />
<col style="width: 9%" />
<col style="width: 10%" />
<col style="width: 15%" />
</colgroup>
<thead>
<tr class="header">
<th>Bug ID</th>
<th>Title</th>
<th>Fixed In Version/Commit</th>
<th>Testing Since</th>
<th>Being Tested By</th>
<th>Comments</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>001</td>
<td>Gradio with HuggingFace does not work in Safari. Finding alternative
fix..</td>
<td>Not yet fixed</td>
<td>2024-01-22</td>
<td>David</td>
<td>Use alternative browser</td>
</tr>
<tr class="even">
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
</tr>
</tbody>
</table>
<hr />
<h2 id="reporting-a-new-bug">Reporting A New Bug</h2>
<p>To report a new bug, please provide the following information:</p>
<ul>
<li><strong>Title</strong>: A concise title that summarizes the
bug.</li>
<li><strong>Description</strong>: A detailed description of the
bug.</li>
<li><strong>Steps to Reproduce</strong>: Step-by-step process to
reproduce the issue.</li>
<li><strong>Expected Result</strong>: What you expect to happen.</li>
<li><strong>Actual Result</strong>: What actually happens.</li>
<li><strong>Screenshots/Logs</strong>: Attach any relevant screenshots
or log files.</li>
<li><strong>Severity</strong>: Rate the bug’s severity (Critical, High,
Medium, Low).</li>
<li><strong>Environment</strong>: Details about the environment where
the bug occurred (OS, browser, app version, etc.).</li>
<li><strong>Reported By</strong>: Your name and role.</li>
</ul>
<hr />
|