|
| 1 | +name: 🐛 Bug Report |
| 2 | +description: File a bug report |
| 3 | +labels: ["Status: Awaiting triage"] |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: > |
| 8 | + ### ⚠️ Please remember: issues are for *bugs* only! |
| 9 | +
|
| 10 | + - type: markdown |
| 11 | + attributes: |
| 12 | + value: | |
| 13 | + #### Unsure? Have a questions? 👉 [Start a new discussion](https://github.com/ESP32Async/ESPAsyncWebServer/discussions/new) |
| 14 | +
|
| 15 | + #### Before opening a new issue, please make sure you double check: |
| 16 | +
|
| 17 | + - [Documentation](https://github.com/ESP32Async/ESPAsyncWebServer). |
| 18 | + - [Existing discussions](https://github.com/ESP32Async/ESPAsyncWebServer/discussions). |
| 19 | + - [Existing issues](https://github.com/ESP32Async/ESPAsyncWebServer/issues). |
| 20 | + - You are using the [latest version of ESPAsyncWebServer](https://github.com/ESP32Async/ESPAsyncWebServer/releases) |
| 21 | + - You are using the [latest version of AsyncTCP](https://github.com/ESP32Async/AsyncTCP/releases) (for ESP32) |
| 22 | +
|
| 23 | + - type: textarea |
| 24 | + id: what-happened |
| 25 | + attributes: |
| 26 | + label: What happened? |
| 27 | + description: A clear and concise description of the issue. |
| 28 | + placeholder: A clear and concise description of the issue. |
| 29 | + validations: |
| 30 | + required: true |
| 31 | + |
| 32 | + - type: textarea |
| 33 | + id: stack-trace |
| 34 | + attributes: |
| 35 | + label: Stack Trace |
| 36 | + description: Please provide a debug message or error message. If you have a Guru Meditation Error or Backtrace, [please decode it](https://maximeborges.github.io/esp-stacktrace-decoder/). |
| 37 | + placeholder: For Arduino IDE, Enable Core debug level - Debug on tools menu, then put the serial output here. |
| 38 | + validations: |
| 39 | + required: true |
| 40 | + |
| 41 | + - type: textarea |
| 42 | + id: how-to-reproduce |
| 43 | + attributes: |
| 44 | + label: Minimal Reproductible Example (MRE) |
| 45 | + description: Post the code or the steps to reproduce the issue. |
| 46 | + placeholder: Post the code or the steps to reproduce the issue. |
| 47 | + validations: |
| 48 | + required: true |
| 49 | + |
| 50 | + - type: dropdown |
| 51 | + id: platform |
| 52 | + attributes: |
| 53 | + label: Platform |
| 54 | + options: |
| 55 | + - ESP32 |
| 56 | + - ESP8266 |
| 57 | + - RP2040 |
| 58 | + validations: |
| 59 | + required: true |
| 60 | + |
| 61 | + - type: checkboxes |
| 62 | + id: confirmation |
| 63 | + attributes: |
| 64 | + label: "I confirm that:" |
| 65 | + options: |
| 66 | + - label: I have searched for similar [issues](https://github.com/ESP32Async/ESPAsyncWebServer/issues). |
| 67 | + required: true |
| 68 | + - label: I have searched for similar [discussions](https://github.com/ESP32Async/ESPAsyncWebServer/discussions). |
| 69 | + required: true |
| 70 | + - label: I have read the [documentation](https://github.com/ESP32Async/ESPAsyncWebServer). |
| 71 | + required: true |
| 72 | + - label: I have upgraded to the lasted version of ESPAsyncWebServer (and AsyncTCP for ESP32). |
| 73 | + required: true |
0 commit comments