|
| 1 | +name: Bug Report |
| 2 | +description: Report a bug in PJS (Protocol for JSON Streaming Protocol) |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug", "triage"] |
| 5 | +assignees: [] |
| 6 | + |
| 7 | +body: |
| 8 | + - type: markdown |
| 9 | + attributes: |
| 10 | + value: | |
| 11 | + Thank you for taking the time to report a bug! Please fill out the information below to help us diagnose and fix the issue. |
| 12 | +
|
| 13 | + - type: input |
| 14 | + id: version |
| 15 | + attributes: |
| 16 | + label: SJSP Version |
| 17 | + description: What version of SJSP are you using? |
| 18 | + placeholder: "e.g., 0.3.0" |
| 19 | + validations: |
| 20 | + required: true |
| 21 | + |
| 22 | + - type: dropdown |
| 23 | + id: component |
| 24 | + attributes: |
| 25 | + label: Component |
| 26 | + description: Which component is affected? |
| 27 | + options: |
| 28 | + - pjs-core (Core library) |
| 29 | + - pjs-js-client (JavaScript client) |
| 30 | + - pjs-demo (Demo applications) |
| 31 | + - pjs-bench (Benchmarking) |
| 32 | + - Documentation |
| 33 | + - Other |
| 34 | + validations: |
| 35 | + required: true |
| 36 | + |
| 37 | + - type: textarea |
| 38 | + id: description |
| 39 | + attributes: |
| 40 | + label: Bug Description |
| 41 | + description: A clear and concise description of the bug |
| 42 | + placeholder: "Describe what happened and what you expected to happen" |
| 43 | + validations: |
| 44 | + required: true |
| 45 | + |
| 46 | + - type: textarea |
| 47 | + id: reproduction |
| 48 | + attributes: |
| 49 | + label: Steps to Reproduce |
| 50 | + description: Minimal steps to reproduce the issue |
| 51 | + placeholder: | |
| 52 | + 1. Create a stream with... |
| 53 | + 2. Send data... |
| 54 | + 3. Observe error... |
| 55 | + value: | |
| 56 | + 1. |
| 57 | + 2. |
| 58 | + 3. |
| 59 | + validations: |
| 60 | + required: true |
| 61 | + |
| 62 | + - type: textarea |
| 63 | + id: expected |
| 64 | + attributes: |
| 65 | + label: Expected Behavior |
| 66 | + description: What should have happened? |
| 67 | + placeholder: "Describe the expected behavior" |
| 68 | + validations: |
| 69 | + required: true |
| 70 | + |
| 71 | + - type: textarea |
| 72 | + id: actual |
| 73 | + attributes: |
| 74 | + label: Actual Behavior |
| 75 | + description: What actually happened? |
| 76 | + placeholder: "Describe what actually happened" |
| 77 | + validations: |
| 78 | + required: true |
| 79 | + |
| 80 | + - type: textarea |
| 81 | + id: code |
| 82 | + attributes: |
| 83 | + label: Code Sample |
| 84 | + description: Minimal code sample that reproduces the issue |
| 85 | + render: rust |
| 86 | + placeholder: | |
| 87 | + ```rust |
| 88 | + // Your minimal reproduction code here |
| 89 | + ``` |
| 90 | +
|
| 91 | + - type: textarea |
| 92 | + id: logs |
| 93 | + attributes: |
| 94 | + label: Error Logs/Output |
| 95 | + description: Any error messages, stack traces, or relevant output |
| 96 | + render: shell |
| 97 | + placeholder: "Paste any relevant logs or error messages here" |
| 98 | + |
| 99 | + - type: input |
| 100 | + id: os |
| 101 | + attributes: |
| 102 | + label: Operating System |
| 103 | + description: What OS are you running? |
| 104 | + placeholder: "e.g., Ubuntu 22.04, macOS 14.0, Windows 11" |
| 105 | + validations: |
| 106 | + required: true |
| 107 | + |
| 108 | + - type: input |
| 109 | + id: rust-version |
| 110 | + attributes: |
| 111 | + label: Rust Version |
| 112 | + description: What version of Rust are you using? |
| 113 | + placeholder: "e.g., 1.75.0" |
| 114 | + validations: |
| 115 | + required: false |
| 116 | + |
| 117 | + - type: dropdown |
| 118 | + id: severity |
| 119 | + attributes: |
| 120 | + label: Severity |
| 121 | + description: How severe is this bug? |
| 122 | + options: |
| 123 | + - Critical (System crash, data loss) |
| 124 | + - High (Major functionality broken) |
| 125 | + - Medium (Minor functionality affected) |
| 126 | + - Low (Cosmetic or enhancement) |
| 127 | + validations: |
| 128 | + required: true |
| 129 | + |
| 130 | + - type: checkboxes |
| 131 | + id: performance |
| 132 | + attributes: |
| 133 | + label: Performance Impact |
| 134 | + description: Does this bug affect performance? |
| 135 | + options: |
| 136 | + - label: This bug causes significant performance degradation |
| 137 | + - label: This bug affects memory usage |
| 138 | + - label: This bug affects network efficiency |
| 139 | + - label: This bug affects parsing speed |
| 140 | + |
| 141 | + - type: textarea |
| 142 | + id: additional |
| 143 | + attributes: |
| 144 | + label: Additional Context |
| 145 | + description: Any additional information that might be helpful |
| 146 | + placeholder: "Add any other context about the problem here" |
| 147 | + |
| 148 | + - type: checkboxes |
| 149 | + id: terms |
| 150 | + attributes: |
| 151 | + label: Confirmation |
| 152 | + description: Please confirm the following |
| 153 | + options: |
| 154 | + - label: I have searched existing issues to avoid duplicates |
| 155 | + required: true |
| 156 | + - label: I have provided a minimal reproduction case |
| 157 | + required: true |
| 158 | + - label: I am willing to help test a fix for this issue |
| 159 | + required: false |
0 commit comments