|
| 1 | +name: Bug Report |
| 2 | +description: Report a bug or unexpected behavior in Raptor Validator |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug", "triage"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to report a bug! Please provide as much detail as possible. |
| 10 | +
|
| 11 | + - type: dropdown |
| 12 | + id: runtime |
| 13 | + attributes: |
| 14 | + label: Runtime Environment |
| 15 | + description: Which JavaScript runtime are you using? |
| 16 | + options: |
| 17 | + - Deno |
| 18 | + - Node.js |
| 19 | + - Bun |
| 20 | + - Multiple runtimes |
| 21 | + validations: |
| 22 | + required: true |
| 23 | + |
| 24 | + - type: input |
| 25 | + id: version |
| 26 | + attributes: |
| 27 | + label: Validator Version |
| 28 | + description: Which version of Raptor Validator are you using? |
| 29 | + placeholder: "e.g., 0.14.0" |
| 30 | + validations: |
| 31 | + required: true |
| 32 | + |
| 33 | + - type: input |
| 34 | + id: framework-version |
| 35 | + attributes: |
| 36 | + label: Framework Version |
| 37 | + description: Which version of Raptor Framework are you using? |
| 38 | + placeholder: "e.g., 0.14.0" |
| 39 | + validations: |
| 40 | + required: true |
| 41 | + |
| 42 | + - type: input |
| 43 | + id: runtime-version |
| 44 | + attributes: |
| 45 | + label: Runtime Version |
| 46 | + description: Which version of your runtime are you using? |
| 47 | + placeholder: "e.g., Deno 2.1.0, Node.js 20.10.0, Bun 1.0.0" |
| 48 | + validations: |
| 49 | + required: true |
| 50 | + |
| 51 | + - type: textarea |
| 52 | + id: description |
| 53 | + attributes: |
| 54 | + label: Bug Description |
| 55 | + description: A clear description of what the bug is |
| 56 | + placeholder: What happened? What did you expect to happen? |
| 57 | + validations: |
| 58 | + required: true |
| 59 | + |
| 60 | + - type: textarea |
| 61 | + id: reproduction |
| 62 | + attributes: |
| 63 | + label: Minimal Reproduction |
| 64 | + description: Provide the smallest amount of code that reproduces the issue |
| 65 | + placeholder: | |
| 66 | + import { Kernel } from "@raptor/framework"; |
| 67 | + import { Validator } from "@raptor/validator"; |
| 68 | +
|
| 69 | + const app = new Kernel(); |
| 70 | +
|
| 71 | + const validator = new Validator(); |
| 72 | +
|
| 73 | + // Your reproduction code here |
| 74 | + render: typescript |
| 75 | + validations: |
| 76 | + required: true |
| 77 | + |
| 78 | + - type: textarea |
| 79 | + id: expected |
| 80 | + attributes: |
| 81 | + label: Expected Behavior |
| 82 | + description: What should happen instead? |
| 83 | + validations: |
| 84 | + required: true |
| 85 | + |
| 86 | + - type: textarea |
| 87 | + id: actual |
| 88 | + attributes: |
| 89 | + label: Actual Behavior |
| 90 | + description: What actually happens? Include error messages if applicable. |
| 91 | + validations: |
| 92 | + required: true |
| 93 | + |
| 94 | + - type: textarea |
| 95 | + id: additional |
| 96 | + attributes: |
| 97 | + label: Additional Context |
| 98 | + description: Any other context, screenshots, or information that might help |
0 commit comments