|
| 1 | +# docs https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms |
| 2 | +# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema |
| 3 | + |
| 4 | +name: Create a bug report regarding GeoAlchemy 2 runtime behavior |
| 5 | +description: Errors and regression reports with complete reproducing test cases and/or stack traces. |
| 6 | +labels: [bug] |
| 7 | +title: "[Bug report] " |
| 8 | +body: |
| 9 | + - type: markdown |
| 10 | + attributes: |
| 11 | + value: " |
| 12 | +Thanks for taking the time to fill out this bug report! |
| 13 | +
|
| 14 | +
|
| 15 | +Before submitting, make sure you search in the [issue list](https://github.com/geoalchemy/geoalchemy2/issues) that a similar issue was not already reported. |
| 16 | +If it is not the case, please read the following guidelines. |
| 17 | +
|
| 18 | +### GUIDELINES FOR REPORTING BUGS |
| 19 | +
|
| 20 | +Bug reports that are not properly formulated and formatted or without enough details can be very hard for us to understand and fix. |
| 21 | +In order to ensure we can help you fixing your bug, please follow these guidelines. |
| 22 | +
|
| 23 | +
|
| 24 | +Your reports must include the following features: |
| 25 | +
|
| 26 | +1. **succinct description** of the problem - typically a line or two at most. |
| 27 | +
|
| 28 | +2. **succinct, dependency-free code** which reproduces the problem, otherwise known as a [Minimal, Complete, and Verifiable](https://stackoverflow.com/help/mcve) example. |
| 29 | + IF YOU DO NOT HAVE A COMPLETE, RUNNABLE TEST CASE WRITTEN DIRECTLY IN THE TEXTAREA BELOW, YOUR ISSUE MAY BE CLOSED. |
| 30 | +
|
| 31 | +3. **complete stack traces for all errors** - please avoid screenshots, use formatted text inside issues. |
| 32 | +
|
| 33 | +4. other relevant things as applicable: **dependencies**, **comparative performance timings** for performance issues, etc. |
| 34 | +" |
| 35 | + |
| 36 | + - type: textarea |
| 37 | + attributes: |
| 38 | + label: Describe the bug |
| 39 | + description: A clear and concise description of what the bug is. |
| 40 | + validations: |
| 41 | + required: true |
| 42 | + |
| 43 | + - type: input |
| 44 | + id: relevant_documentation |
| 45 | + attributes: |
| 46 | + label: Optional link from https://geoalchemy-2.readthedocs.io which documents the behavior that is expected |
| 47 | + description: " |
| 48 | +Please make sure the behavior you are seeing is definitely in contradiction to what's documented as the correct behavior. |
| 49 | +" |
| 50 | + validations: |
| 51 | + required: false |
| 52 | + |
| 53 | + - type: textarea |
| 54 | + attributes: |
| 55 | + label: To Reproduce |
| 56 | + description: " |
| 57 | +Provide your [Minimal, Complete, and Verifiable](https://stackoverflow.com/help/mcve) example here." |
| 58 | + placeholder: "# Insert code here (text area already python formatted)" |
| 59 | + render: Python |
| 60 | + validations: |
| 61 | + required: true |
| 62 | + |
| 63 | + - type: textarea |
| 64 | + attributes: |
| 65 | + label: Error |
| 66 | + description: " |
| 67 | +Provide the complete text of any errors received **including the complete stack trace**. |
| 68 | +If the message is a warning, run your program with the ``-Werror`` flag: ``python -Werror myprogram.py`` |
| 69 | +" |
| 70 | + placeholder: "# Copy the complete stack trace and error message here (text area already formatted for Python backtrace)" |
| 71 | + render: Python traceback |
| 72 | + validations: |
| 73 | + required: true |
| 74 | + |
| 75 | + - type: textarea |
| 76 | + attributes: |
| 77 | + label: Additional context |
| 78 | + description: Add any other context about the problem here. |
| 79 | + validations: |
| 80 | + required: false |
| 81 | + |
| 82 | + - type: input |
| 83 | + id: package_version |
| 84 | + attributes: |
| 85 | + label: GeoAlchemy 2 Version in Use |
| 86 | + description: e.g. 1.4.42, 2.0.2, etc or commit hash |
| 87 | + validations: |
| 88 | + required: true |
| 89 | + |
| 90 | + - type: input |
| 91 | + id: python_version |
| 92 | + attributes: |
| 93 | + label: Python Version |
| 94 | + description: Assumes cpython unless otherwise stated, e.g. 3.10, 3.11, pypy |
| 95 | + validations: |
| 96 | + required: true |
| 97 | + |
| 98 | + - type: dropdown |
| 99 | + id: os |
| 100 | + attributes: |
| 101 | + label: Operating system |
| 102 | + description: Check all that apply |
| 103 | + multiple: true |
| 104 | + options: |
| 105 | + - Linux |
| 106 | + - MacOS |
| 107 | + - Windows |
| 108 | + - Other |
| 109 | + validations: |
| 110 | + required: true |
| 111 | + |
| 112 | + - type: markdown |
| 113 | + attributes: |
| 114 | + value: "### Thanks! Have a nice day!" |
0 commit comments