mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* Add Supabase adapter * Add Supabase adapter * Add schema setup to docs * supabase config changes * chore: update to supabase-js v2. * chore: migrate to next_auth schema. * feat: add supabase examples. * chore: update docs. * chore: add telemetry. * fix: resolve issues after merge. * chore: extend session type. * typo * chore: remove unnecessary grants. * fix: schema constraints. Co-authored-by: thorwebdev <thor@supabase.io> Co-authored-by: Thor 雷神 Schaeff <5748289+thorwebdev@users.noreply.github.com> Co-authored-by: Thang Vu <hi@thvu.dev>
76 lines
3.5 KiB
YAML
76 lines
3.5 KiB
YAML
name: Bug report (Adapter)
|
|
description: Create an adapter-specific report
|
|
labels: [triage, adapters]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
**NOTE:** Issues that are potentially security related should be reported to us by following the [Security guidelines](https://next-auth.js.org/security) rather than on GitHub.
|
|
Thanks for taking the time to fill out this [Adapter](https://next-auth.js.org/adapters/overview) related issue!
|
|
Is this your first time contributing? Check out this video: https://www.youtube.com/watch?v=cuoNzXFLitc
|
|
|
|
### Important :exclamation:
|
|
|
|
_Providing incorrect/insufficient information or skipping steps to reproduce the issue may result in closing the issue or converting to a discussion without further explanation._
|
|
|
|
If you have a generic question specific to your project, it is best asked in Discussions under the [Questions category](https://github.com/nextauthjs/next-auth/discussions/new?category=Questions)
|
|
- type: dropdown
|
|
attributes:
|
|
label: Adapter type
|
|
description: Adapter(s) this issue is related to
|
|
multiple: true
|
|
options:
|
|
- "Custom adapter"
|
|
- "@next-auth/dgraph-adapter"
|
|
- "@next-auth/dynamodb-adapter"
|
|
- "@next-auth/fauna-adapter"
|
|
- "@next-auth/firebase-adapter"
|
|
- "@next-auth/mikro-orm-adapter"
|
|
- "@next-auth/mongodb-adapter"
|
|
- "@next-auth/neo4j-adapter"
|
|
- "@next-auth/pouchdb-adapter"
|
|
- "@next-auth/prisma-adapter"
|
|
- "@next-auth/sequelize-adapter"
|
|
- "@next-auth/supabase-adapter"
|
|
- "@next-auth/typeorm-legacy-adapter"
|
|
- "@next-auth/upstash-redis-adapter"
|
|
- "@next-auth/xata-adapter"
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
attributes:
|
|
label: Environment
|
|
description: |
|
|
Run this command in your project's root folder and paste the result:
|
|
|
|
```sh
|
|
npx envinfo --system --binaries --browsers --npmPackages "next,react,next-auth" && npx envinfo --npmPackages "@next-auth/*"
|
|
```
|
|
Alternatively, if the above command did not work, we need the version of the following packages from your package.json: "next", "react", "next-auth" and your adapter. Please also mention your OS and Node.js version, as well as the browser you are using.
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
attributes:
|
|
label: Reproduction URL
|
|
description: A URL to a repository/code that clearly reproduces your issue. You can use our [`next-auth-example`](https://github.com/nextauthjs/next-auth-example) template repository to get started more easily, or link to your project if it's public
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
attributes:
|
|
label: Describe the issue
|
|
description: Describe us what the issue is and what have you tried so far to fix it. Add any extra useful information in this section. Feel free to use screenshots (but prefer [code blocks](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks#syntax-highlighting) over a picture of your code) or a video explanation.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
attributes:
|
|
label: How to reproduce
|
|
description: Explain with clear steps how to reproduce the issue
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
attributes:
|
|
label: Expected behavior
|
|
description: Explain what should have happened instead of what actually happened
|
|
validations:
|
|
required: true
|