diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index 3beee1d9ab..6431f4f356 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -6,10 +6,13 @@ assignees: '' --- **Your question** -A clear and concise question. + **What are you trying to do** -A description of what you are trying to do, for context. + + +**Reproduction** + **Feedback** *Documentation refers to searching through [online documentation](https://next-auth.js.org), code comments and issue history. The example project refers to [next-auth-example](https://github.com/iaincollins/next-auth-example).* diff --git a/.github/stale.yml b/.github/stale.yml index 6cf5f35ebd..87267808c0 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -8,15 +8,17 @@ exemptLabels: - security - priority # Label to use when marking an issue as stale -staleLabel: wontfix +staleLabel: stale # Comment to post when marking an issue as stale. Set to `false` to disable markComment: > Hi there! It looks like this issue hasn't had any activity for a while. It will be closed if no further activity occurs. If you think your issue - is still relevant, feel free to comment on it to keep ot open. Thanks! + is still relevant, feel free to comment on it to keep it open. (Read more at #912) + Thanks! # Comment to post when closing a stale issue. Set to `false` to disable closeComment: > Hi there! It looks like this issue hasn't had any activity for a while. To keep things tidy, I am going to close this issue for now. If you think your issue is still relevant, just leave a comment - and I will reopen it. Thanks! + and I will reopen it. (Read more at #912) + Thanks! diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bfaad312c5..e97ec9e910 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,9 +4,13 @@ name: Build Test on: push: - branches: [ main ] + branches: + - main + - canary pull_request: - branches: [ main ] + branches: + - main + - canary jobs: build: diff --git a/www/docs/contributors.md b/www/docs/contributors.md index 210718f9f0..6ff49112cd 100644 --- a/www/docs/contributors.md +++ b/www/docs/contributors.md @@ -12,6 +12,7 @@ title: Contributors * Gerald Nolan * Lluis Agusti * Jefferson Bledsoe +* Balázs Orbán _Special thanks to Lori Karikari for creating most of the providers, to Nico Domino for creating this site, to Fredrik Pettersen for creating the Prisma adapter, to Gerald Nolan for adding support for Sign in with Apple, to Lluis Agusti for work to add TypeScript definitions and to Jefferson Bledsoe for working on automating testing._ diff --git a/www/docs/tutorials/testing-with-cypress.md b/www/docs/tutorials/testing-with-cypress.md index 45ab28dd7a..eeb6bf78aa 100644 --- a/www/docs/tutorials/testing-with-cypress.md +++ b/www/docs/tutorials/testing-with-cypress.md @@ -36,7 +36,7 @@ Second, a cypress file for environment variables. These can be defined in `cypre { "GOOGLE_USER": "username@company.com", "GOOGLE_PW": "password", - "COOKIE_NAME": "__Secure-next-auth.session-token", + "COOKIE_NAME": "next-auth.session-token", "SITE_NAME": "http://localhost:3000" } ``` @@ -111,8 +111,11 @@ describe('Login page', () => { }) Cypress.Cookies.defaults({ - whitelist: cookieName, + preserve: cookieName, }) + + // remove the two lines below if you need to stay logged in + // for your remaining tests cy.visit('/api/auth/signout') cy.get('form').submit() }