|
| 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 have searched: |
| 16 | +
|
| 17 | + - In the [documentation](https://github.com/ESP32Async/ESPAsyncWebServer) |
| 18 | + - In the [discussions](https://github.com/ESP32Async/ESPAsyncWebServer/discussions) |
| 19 | + - In the [issues](https://github.com/ESP32Async/ESPAsyncWebServer/issues) |
| 20 | + - In the [examples](https://github.com/ESP32Async/ESPAsyncWebServer/tree/main/examples) |
| 21 | +
|
| 22 | + #### Make sure you are using: |
| 23 | +
|
| 24 | + - The [latest version of ESPAsyncWebServer](https://github.com/ESP32Async/ESPAsyncWebServer/releases) |
| 25 | + - The [latest version of AsyncTCP](https://github.com/ESP32Async/AsyncTCP/releases) (for ESP32) |
| 26 | +
|
| 27 | + - type: dropdown |
| 28 | + id: platform |
| 29 | + attributes: |
| 30 | + label: Platform |
| 31 | + options: |
| 32 | + - ESP32 |
| 33 | + - ESP8266 |
| 34 | + - RP2040 |
| 35 | + validations: |
| 36 | + required: true |
| 37 | + |
| 38 | + - type: dropdown |
| 39 | + id: tooling |
| 40 | + attributes: |
| 41 | + label: IDE / Tooling |
| 42 | + options: |
| 43 | + - Arduino (IDE/CLI) |
| 44 | + - pioarduino |
| 45 | + - ESP-IDF |
| 46 | + - PlatformIO |
| 47 | + validations: |
| 48 | + required: true |
| 49 | + |
| 50 | + - type: textarea |
| 51 | + id: what-happened |
| 52 | + attributes: |
| 53 | + label: What happened? |
| 54 | + description: A clear and concise description of the issue. |
| 55 | + placeholder: A clear and concise description of the issue. |
| 56 | + validations: |
| 57 | + required: true |
| 58 | + |
| 59 | + - type: textarea |
| 60 | + id: stack-trace |
| 61 | + attributes: |
| 62 | + label: Stack Trace |
| 63 | + 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/). |
| 64 | + placeholder: For Arduino IDE, Enable Core debug level - Debug on tools menu, then put the serial output here. |
| 65 | + validations: |
| 66 | + required: true |
| 67 | + |
| 68 | + - type: textarea |
| 69 | + id: how-to-reproduce |
| 70 | + attributes: |
| 71 | + label: Minimal Reproductible Example (MRE) |
| 72 | + description: Post the code or the steps to reproduce the issue. |
| 73 | + placeholder: Post the code or the steps to reproduce the issue. |
| 74 | + validations: |
| 75 | + required: true |
| 76 | + |
| 77 | + - type: checkboxes |
| 78 | + id: confirmation |
| 79 | + attributes: |
| 80 | + label: "I confirm that:" |
| 81 | + options: |
| 82 | + - label: I have read the documentation. |
| 83 | + required: true |
| 84 | + - label: I have searched for similar discussions. |
| 85 | + required: true |
| 86 | + - label: I have searched for similar issues. |
| 87 | + required: true |
| 88 | + - label: I have looked at the examples. |
| 89 | + required: true |
| 90 | + - label: I have upgraded to the lasted version of ESPAsyncWebServer (and AsyncTCP for ESP32). |
| 91 | + required: true |
0 commit comments