|
| 1 | +name: "\U0001F41E Bug report" |
| 2 | +description: Report an issue with a Supabase JS Library |
| 3 | +labels: [bug] |
| 4 | +type: Bug |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to fill out this bug report! |
| 10 | + - type: textarea |
| 11 | + id: bug-description |
| 12 | + attributes: |
| 13 | + label: Describe the bug |
| 14 | + description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks! |
| 15 | + placeholder: I am doing ... What I expect is ... What actually happening is ... |
| 16 | + validations: |
| 17 | + required: true |
| 18 | + - type: dropdown |
| 19 | + id: supabase-library |
| 20 | + attributes: |
| 21 | + label: Library affected |
| 22 | + description: Select the library that you think is affected by the bug |
| 23 | + options: |
| 24 | + - supabase-js |
| 25 | + - auth-js |
| 26 | + - postgrest-js |
| 27 | + - realtime-js |
| 28 | + - storage-js |
| 29 | + - functions-js |
| 30 | + - unsure/all/other |
| 31 | + validations: |
| 32 | + required: true |
| 33 | + - type: input |
| 34 | + id: reproduction |
| 35 | + attributes: |
| 36 | + label: Reproduction |
| 37 | + description: If possible, please provide a link to a repo that can reproduce the problem you ran into. A [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) is very helpful. ([Why?](https://antfu.me/posts/why-reproductions-are-required)). If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "needs reproduction" label. If no reproduction is provided after 7 days, it will be closed. |
| 38 | + placeholder: Reproduction URL |
| 39 | + validations: |
| 40 | + required: false |
| 41 | + - type: textarea |
| 42 | + id: reproduction-steps |
| 43 | + attributes: |
| 44 | + label: Steps to reproduce |
| 45 | + description: Please provide any reproduction steps that may need to be described. |
| 46 | + placeholder: Run `npm install` followed by `npm run dev` |
| 47 | + - type: textarea |
| 48 | + id: system-info |
| 49 | + attributes: |
| 50 | + label: System Info |
| 51 | + description: Output of `npx envinfo --system --npmPackages '{supabase,@supabase/*}' --binaries --browsers` |
| 52 | + render: shell |
| 53 | + placeholder: System, Binaries, Browsers |
| 54 | + validations: |
| 55 | + required: true |
| 56 | + - type: dropdown |
| 57 | + id: package-manager |
| 58 | + attributes: |
| 59 | + label: Used Package Manager |
| 60 | + description: Select the used package manager |
| 61 | + options: |
| 62 | + - npm |
| 63 | + - yarn |
| 64 | + - pnpm |
| 65 | + - bun |
| 66 | + validations: |
| 67 | + required: true |
| 68 | + - type: textarea |
| 69 | + id: logs |
| 70 | + attributes: |
| 71 | + label: Logs |
| 72 | + description: | |
| 73 | + Optional if provided reproduction. It's very helpful to provide the log text instead of a screenshot. |
| 74 | +
|
| 75 | + Provide the error log here in the format below. |
| 76 | +
|
| 77 | + ```` |
| 78 | + <details> |
| 79 | + <summary>Click to expand!</summary> |
| 80 | +
|
| 81 | + ```shell |
| 82 | + // paste the log text here |
| 83 | + ``` |
| 84 | + </details> |
| 85 | + ```` |
| 86 | + - type: checkboxes |
| 87 | + id: checkboxes |
| 88 | + attributes: |
| 89 | + label: Validations |
| 90 | + description: Before submitting the issue, please make sure you do the following |
| 91 | + options: |
| 92 | + - label: Follow our [Code of Conduct](https://github.com/supabase/.github/blob/main/CODE_OF_CONDUCT.md) |
| 93 | + required: true |
| 94 | + - label: Read the [Contributing Guidelines](https://github.com/supabase/js-client-libs/blob/main/docs/CONTRIBUTING.md). |
| 95 | + required: true |
| 96 | + - label: Read the [docs](https://supabase.com/docs/reference/javascript/introduction). |
| 97 | + required: true |
| 98 | + - label: Check that there isn't [already an issue](https://github.com/supabase/js-client-libs/issues) that reports the same bug to avoid creating a duplicate. |
| 99 | + required: true |
| 100 | + - label: Make sure this is a Supabase JS Library issue and not an issue with the Supabase platform. If it's a Supabase platform related bug, it should likely be reported to [supabase/supabase](https://github.com/supabase/supabase) instead. |
| 101 | + required: true |
| 102 | + - label: Check that this is a concrete bug. For Q&A open a [GitHub Discussion](https://github.com/supabase/js-client-libs/discussions) or join our [Discord Chat Server](https://discord.supabase.com//). |
| 103 | + required: true |
| 104 | + - label: The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug. |
| 105 | + required: true |
0 commit comments