{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":375330004,"defaultBranch":"main","name":"hasura-auth","ownerLogin":"nhost","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2021-06-09T11:24:21.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/48448799?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1719998046.0","currentOid":""},"activityList":{"items":[{"before":"c6792e3c7e72c738382a721103892d8665fc7ba9","after":null,"ref":"refs/heads/clean","pushedAt":"2024-07-03T09:14:06.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"}},{"before":"c48e7226761c6df9054ec2c96cde6241116a3e11","after":"8e8275240c1c6650b21b2bd0fb583407368e529a","ref":"refs/heads/main","pushedAt":"2024-07-03T09:14:04.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"chore: nodejs: remove migrated endpoints (#537)\n\n### **PR Type**\r\nEnhancement, Other\r\n\r\n\r\n___\r\n\r\n### **Description**\r\n- Removed OpenAPI route setup and related schema definitions.\r\n- Removed various routes and handlers including Personal Access Token\r\n(PAT), email-password sign-in, passwordless email sign-in, and sign-up\r\nroutes.\r\n- Cleaned up middleware and route usage in the main application file.\r\n\r\n\r\n\r\n___\r\n\r\n\r\n\r\n### **Changes walkthrough** đź“ť\r\n
Relevant\r\nfiles
Enhancement
22\r\nfiles\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n
\r\n
\r\napp.ts
Remove OpenAPI route and clean\r\nup middleware usage           \r\n 
\r\n
\r\n \r\nsrc/app.ts\r\n\r\n
  • Removed the import and usage of addOpenApiRoute.
    \r\n
  • Cleaned up middleware and route usage.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-3 \r\n   
    \r\n
    \r\nindex.ts
    Remove OpenAPI route setup\r\nand schema definitions           \r\n   
    \r\n
    \r\n \r\nsrc/openapi/index.ts\r\n\r\n
  • Deleted the entire file which contained OpenAPI route setup and\r\nschema
    definitions.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-119 \r\n
    \r\n
    \r\nresponses.ts
    Remove OpenAPI response\r\nmodels               \r\n                   \r\n                 \r\n
    \r\n
    \r\n \r\nsrc/openapi/responses.ts\r\n\r\n
  • Deleted the entire file which contained response models for OpenAPI\r\n
    schemas.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-66 \r\n 
    \r\n
    \r\nindex.ts
    Remove PAT and sign-up\r\nroutes               \r\n                   \r\n                   \r\n
    \r\n
    \r\n \r\nsrc/routes/index.ts\r\n\r\n- Removed imports and usage of `patRouter` and `signUpRouter`.\r\n\r\n\r\n\r\n
    \r\n \r\n\r\n
    +0/-4 \r\n   
    \r\n
    \r\nindex.ts
    Remove Personal Access Token\r\n(PAT) route             \r\n                   \r\n
    \r\n
    \r\n \r\nsrc/routes/pat/index.ts\r\n\r\n
  • Deleted the entire file which contained the Personal Access Token\r\n
    (PAT) route.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-26 \r\n 
    \r\n
    \r\npat.ts
    Remove PAT handler and\r\nschema               \r\n                   \r\n                   \r\n
    \r\n
    \r\n \r\nsrc/routes/pat/pat.ts\r\n\r\n
  • Deleted the entire file which contained the handler and schema for\r\n
    creating PATs.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-66 \r\n 
    \r\n
    \r\nemail-password.ts
    Remove\r\nemail-password sign-in handler and schema     \r\n           
    \r\n
    \r\n \r\nsrc/routes/signin/email-password.ts\r\n\r\n
  • Deleted the entire file which contained the email-password sign-in\r\n
    handler and schema.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-55 \r\n 
    \r\n
    \r\nindex.ts
    Remove email-password, PAT,\r\nand passwordless email sign-in routes
    \r\n
    \r\n \r\nsrc/routes/signin/index.ts\r\n\r\n
  • Removed imports and usage of email-password, PAT, and passwordless\r\n
    email sign-in handlers and schemas.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-53 \r\n 
    \r\n
    \r\nemail.ts
    Remove passwordless email\r\nsign-in handler and schema         \r\n
    \r\n
    \r\n \r\nsrc/routes/signin/passwordless/email.ts\r\n\r\n
  • Deleted the entire file which contained the passwordless email\r\nsign-in
    handler and schema.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-134 \r\n
    \r\n
    \r\nindex.ts
    Remove passwordless email\r\nsign-in export             \r\n                   \r\n
    \r\n
    \r\n \r\nsrc/routes/signin/passwordless/index.ts\r\n\r\n- Removed export of passwordless email sign-in.\r\n\r\n\r\n\r\n
    \r\n \r\n\r\n
    +0/-1 \r\n   
    \r\n
    \r\npat.ts
    Remove PAT sign-in handler and\r\nschema               \r\n                   \r\n   
    \r\n
    \r\n \r\nsrc/routes/signin/pat.ts\r\n\r\n
  • Deleted the entire file which contained the PAT sign-in handler and\r\n
    schema.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-60 \r\n 
    \r\n
    \r\nemail-password.ts
    Remove\r\nemail-password sign-up handler and schema     \r\n           
    \r\n
    \r\n \r\nsrc/routes/signup/email-password.ts\r\n\r\n
  • Deleted the entire file which contained the email-password sign-up\r\n
    handler and schema.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-54 \r\n 
    \r\n
    \r\nindex.ts
    Remove sign-up\r\nroutes               \r\n                   \r\n                   \r\n               
    \r\n
    \r\n \r\nsrc/routes/signup/index.ts\r\n\r\n- Deleted the entire file which contained the sign-up routes.\r\n\r\n\r\n\r\n
    \r\n \r\n\r\n
    +0/-66 \r\n 
    \r\n
    \r\nindex.ts
    Remove WebAuthn sign-up and\r\nverification exports           \r\n     
    \r\n
    \r\n \r\nsrc/routes/signup/webauthn/index.ts\r\n\r\n- Removed exports for WebAuthn sign-up and verification.\r\n\r\n\r\n\r\n
    \r\n \r\n\r\n
    +0/-2 \r\n   
    \r\n
    \r\nsignup.ts
    Remove WebAuthn sign-up\r\nhandler and schema           \r\n                 \r\n
    \r\n
    \r\n \r\nsrc/routes/signup/webauthn/signup.ts\r\n\r\n
  • Deleted the entire file which contained the WebAuthn sign-up handler\r\n
    and schema.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-82 \r\n 
    \r\n
    \r\nverify.ts
    Remove WebAuthn sign-up\r\nverification handler and schema   
    \r\n
    \r\n \r\nsrc/routes/signup/webauthn/verify.ts\r\n\r\n
  • Deleted the entire file which contained the WebAuthn sign-up\r\n
    verification handler and schema.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-162 \r\n
    \r\n
    \r\nindex.ts
    Remove token refresh\r\nroute               \r\n                   \r\n                   \r\n     
    \r\n
    \r\n \r\nsrc/routes/token/index.ts\r\n\r\n- Removed import and usage of token refresh handler and schema.\r\n\r\n\r\n\r\n
    \r\n \r\n\r\n
    +0/-12 \r\n 
    \r\n
    \r\ndeanonymize.ts
    Remove user\r\ndeanonymize handler and schema         \r\n                   \r\n
    \r\n
    \r\n \r\nsrc/routes/user/deanonymize.ts\r\n\r\n
  • Deleted the entire file which contained the user deanonymize handler\r\n
    and schema.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-53 \r\n 
    \r\n
    \r\nchange.ts
    Remove user email change\r\nhandler and schema           \r\n               
    \r\n
    \r\n \r\nsrc/routes/user/email/change.ts\r\n\r\n
  • Deleted the entire file which contained the user email change\r\nhandler
    and schema.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-112 \r\n
    \r\n
    \r\nindex.ts
    Remove user email change and\r\nverification exports           \r\n   
    \r\n
    \r\n \r\nsrc/routes/user/email/index.ts\r\n\r\n
  • Removed exports for user email change and send verification email\r\n
    handlers.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-2 \r\n   
    \r\n
    \r\nsend-verification-email.ts
    Remove\r\nuser email send verification email handler and\r\nschema
    \r\n
    \r\n \r\nsrc/routes/user/email/send-verification-email.ts\r\n\r\n
  • Deleted the entire file which contained the user email send\r\n
    verification email handler and schema.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-106 \r\n
    \r\n
    \r\nindex.ts
    Remove user email, password\r\nreset, and deanonymize routes
    \r\n
    \r\n \r\nsrc/routes/user/index.ts\r\n\r\n
  • Removed imports and usage of user email change, send verification\r\n
    email, password reset, and deanonymize handlers and schemas.
    \r\n\r\n\r\n
  • \r\n \r\n\r\n
    +0/-73 \r\n 
    \r\n\r\n___\r\n\r\n> đź’ˇ **PR-Agent usage**:\r\n>Comment `/help` on the PR to get a list of all available PR-Agent tools\r\nand their descriptions","shortMessageHtmlLink":"chore: nodejs: remove migrated endpoints (#537)"}},{"before":null,"after":"a08c181c1a7491bbb5fba330b842fabc3ccd269a","ref":"refs/heads/sso","pushedAt":"2024-07-02T07:38:54.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"sso","shortMessageHtmlLink":"sso"}},{"before":null,"after":"2db4c067c1704af0950103e488c5ee875cf238b3","ref":"refs/heads/automated/update-deps","pushedAt":"2024-07-01T02:22:37.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Update dependencies","shortMessageHtmlLink":"Update dependencies"}},{"before":null,"after":"c6792e3c7e72c738382a721103892d8665fc7ba9","ref":"refs/heads/clean","pushedAt":"2024-06-29T17:36:07.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"chore: nodejs: remove migrated endpoints","shortMessageHtmlLink":"chore: nodejs: remove migrated endpoints"}},{"before":null,"after":"9e46e41178f004a80a5a84ff29b570c5d394a6c6","ref":"refs/heads/oauth2","pushedAt":"2024-06-28T14:30:54.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"asd","shortMessageHtmlLink":"asd"}},{"before":"01e022f32e0a6d6799a002a3ed453a5f2a4f4a76","after":null,"ref":"refs/heads/remove-helmet","pushedAt":"2024-06-27T08:05:08.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"}},{"before":"4f5b2e124ba710b688a8d87ce41f43f4161876d9","after":"c48e7226761c6df9054ec2c96cde6241116a3e11","ref":"refs/heads/main","pushedAt":"2024-06-27T08:05:05.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"fix: nodejs: remove helmet (#535)","shortMessageHtmlLink":"fix: nodejs: remove helmet (#535)"}},{"before":"4021fee211e29dc921bdb9fef7cc90ae7a34d0d8","after":"01e022f32e0a6d6799a002a3ed453a5f2a4f4a76","ref":"refs/heads/remove-helmet","pushedAt":"2024-06-26T18:35:11.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"asd","shortMessageHtmlLink":"asd"}},{"before":"cca7ef4d60041c046707540cb86874d3a8b18567","after":"4021fee211e29dc921bdb9fef7cc90ae7a34d0d8","ref":"refs/heads/remove-helmet","pushedAt":"2024-06-26T18:24:46.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"asd","shortMessageHtmlLink":"asd"}},{"before":"fea23007a24e1bb15575291b76c8c55427f369dd","after":"cca7ef4d60041c046707540cb86874d3a8b18567","ref":"refs/heads/remove-helmet","pushedAt":"2024-06-26T18:21:30.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"asd","shortMessageHtmlLink":"asd"}},{"before":"95e72c4ddfb9fa6fc2e09c79d6c02136ce1aa37d","after":"fea23007a24e1bb15575291b76c8c55427f369dd","ref":"refs/heads/remove-helmet","pushedAt":"2024-06-26T18:12:13.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"asd","shortMessageHtmlLink":"asd"}},{"before":null,"after":"95e72c4ddfb9fa6fc2e09c79d6c02136ce1aa37d","ref":"refs/heads/remove-helmet","pushedAt":"2024-06-26T17:59:26.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"fix: nodejs: remove helmet","shortMessageHtmlLink":"fix: nodejs: remove helmet"}},{"before":"f8ca2980128be9adf36b5c8d7e9e6dd5fecc926c","after":"4f5b2e124ba710b688a8d87ce41f43f4161876d9","ref":"refs/heads/main","pushedAt":"2024-06-26T17:42:48.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"chore: fix CI","shortMessageHtmlLink":"chore: fix CI"}},{"before":"3bc6703f1703ff3169dd3356ca3ab47ae5107ab4","after":"f8ca2980128be9adf36b5c8d7e9e6dd5fecc926c","ref":"refs/heads/main","pushedAt":"2024-06-20T06:51:39.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"chore: update CI","shortMessageHtmlLink":"chore: update CI"}},{"before":"93dc3cfecfc8456d8bdcc478d19aa541a45ab93a","after":"3bc6703f1703ff3169dd3356ca3ab47ae5107ab4","ref":"refs/heads/main","pushedAt":"2024-06-19T20:06:45.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"chore: bump actions/checkout from 2 to 4 (#530)\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 2 to\r\n4.\r\n
    \r\nRelease notes\r\n

    Sourced from actions/checkout's\r\nreleases.

    \r\n
    \r\n

    v4.0.0

    \r\n

    What's Changed

    \r\n\r\n

    New Contributors

    \r\n\r\n

    Full Changelog: https://github.com/actions/checkout/compare/v3...v4.0.0

    \r\n

    v3.6.0

    \r\n

    What's Changed

    \r\n\r\n

    New Contributors

    \r\n\r\n

    Full Changelog: https://github.com/actions/checkout/compare/v3.5.3...v3.6.0

    \r\n

    v3.5.3

    \r\n

    What's Changed

    \r\n\r\n

    New Contributors

    \r\n\r\n

    Full Changelog: https://github.com/actions/checkout/compare/v3...v3.5.3

    \r\n

    v3.5.2

    \r\n

    What's Changed

    \r\n\r\n

    Full Changelog: https://github.com/actions/checkout/compare/v3.5.1...v3.5.2

    \r\n

    v3.5.1

    \r\n

    What's Changed

    \r\n\r\n

    New Contributors

    \r\n\r\n\r\n
    \r\n

    ... (truncated)

    \r\n
    \r\n
    \r\nChangelog\r\n

    Sourced from actions/checkout's\r\nchangelog.

    \r\n
    \r\n

    Changelog

    \r\n

    v4.1.7

    \r\n\r\n

    v4.1.6

    \r\n\r\n

    v4.1.5

    \r\n\r\n

    v4.1.4

    \r\n\r\n

    v4.1.3

    \r\n\r\n

    v4.1.2

    \r\n\r\n

    v4.1.1

    \r\n\r\n

    v4.1.0

    \r\n\r\n

    v4.0.0

    \r\n\r\n

    v3.6.0

    \r\n\r\n

    v3.5.3

    \r\n\r\n\r\n
    \r\n

    ... (truncated)

    \r\n
    \r\n
    \r\nCommits\r\n\r\n
    \r\n
    \r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/checkout&package-manager=github_actions&previous-version=2&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
    \r\nDependabot commands and options\r\n
    \r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n
    \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore: bump actions/checkout from 2 to 4 (#530)"}},{"before":"3bc6703f1703ff3169dd3356ca3ab47ae5107ab4","after":"93dc3cfecfc8456d8bdcc478d19aa541a45ab93a","ref":"refs/heads/main","pushedAt":"2024-06-19T20:05:33.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"asd","shortMessageHtmlLink":"asd"}},{"before":"fc3606593c2863f9163210a5c35ea17286015ab5","after":"9c6076bcbfebbdbb0507166d8ad2a6d74c52d58c","ref":"refs/heads/dumb-test","pushedAt":"2024-06-19T20:03:55.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"asd","shortMessageHtmlLink":"asd"}},{"before":"fc6ee4ea158483ff2b2f29a01bf7b2f536b09e3f","after":"fc3606593c2863f9163210a5c35ea17286015ab5","ref":"refs/heads/dumb-test","pushedAt":"2024-06-19T19:58:40.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"asd","shortMessageHtmlLink":"asd"}},{"before":null,"after":"fc6ee4ea158483ff2b2f29a01bf7b2f536b09e3f","ref":"refs/heads/dumb-test","pushedAt":"2024-06-19T19:56:09.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"asd","shortMessageHtmlLink":"asd"}},{"before":"b6cc705d23df206d421936fddaf210f2f4ecc6f5","after":null,"ref":"refs/heads/dependabot/github_actions/actions/checkout-4","pushedAt":"2024-06-14T09:48:22.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"}},{"before":"05ab45b5b839f6c83958571b69567b9dd83236ef","after":"3bc6703f1703ff3169dd3356ca3ab47ae5107ab4","ref":"refs/heads/main","pushedAt":"2024-06-14T09:48:21.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"chore: bump actions/checkout from 2 to 4 (#530)\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 2 to\r\n4.\r\n
    \r\nRelease notes\r\n

    Sourced from actions/checkout's\r\nreleases.

    \r\n
    \r\n

    v4.0.0

    \r\n

    What's Changed

    \r\n
      \r\n
    • Update default runtime to node20 by @​takost in actions/checkout#1436
    • \r\n
    • Support fetching without the --progress option by @​simonbaird in actions/checkout#1067
    • \r\n
    • Release 4.0.0 by @​takost in actions/checkout#1447
    • \r\n
    \r\n

    New Contributors

    \r\n
      \r\n
    • @​takost made\r\ntheir first contribution in actions/checkout#1436
    • \r\n
    • @​simonbaird made\r\ntheir first contribution in actions/checkout#1067
    • \r\n
    \r\n

    Full Changelog: https://github.com/actions/checkout/compare/v3...v4.0.0

    \r\n

    v3.6.0

    \r\n

    What's Changed

    \r\n
      \r\n
    • Mark test scripts with Bash'isms to be run via Bash by @​dscho in actions/checkout#1377
    • \r\n
    • Add option to fetch tags even if fetch-depth > 0 by @​RobertWieczoreck\r\nin actions/checkout#579
    • \r\n
    • Release 3.6.0 by @​luketomlinson\r\nin actions/checkout#1437
    • \r\n
    \r\n

    New Contributors

    \r\n
      \r\n
    • @​RobertWieczoreck\r\nmade their first contribution in actions/checkout#579
    • \r\n
    • @​luketomlinson\r\nmade their first contribution in actions/checkout#1437
    • \r\n
    \r\n

    Full Changelog: https://github.com/actions/checkout/compare/v3.5.3...v3.6.0

    \r\n

    v3.5.3

    \r\n

    What's Changed

    \r\n
      \r\n
    • Fix: Checkout Issue in self hosted runner due to faulty submodule\r\ncheck-ins by @​megamanics in actions/checkout#1196
    • \r\n
    • Fix typos found by codespell by @​DimitriPapadopoulos\r\nin actions/checkout#1287
    • \r\n
    • Add support for sparse checkouts by @​dscho and @​dfdez in actions/checkout#1369
    • \r\n
    • Release v3.5.3 by @​TingluoHuang\r\nin actions/checkout#1376
    • \r\n
    \r\n

    New Contributors

    \r\n
      \r\n
    • @​megamanics made\r\ntheir first contribution in actions/checkout#1196
    • \r\n
    • @​DimitriPapadopoulos\r\nmade their first contribution in actions/checkout#1287
    • \r\n
    • @​dfdez made\r\ntheir first contribution in actions/checkout#1369
    • \r\n
    \r\n

    Full Changelog: https://github.com/actions/checkout/compare/v3...v3.5.3

    \r\n

    v3.5.2

    \r\n

    What's Changed

    \r\n
      \r\n
    • Fix: Use correct API url / endpoint in GHES by @​fhammerl in actions/checkout#1289\r\nbased on #1286\r\nby @​1newsr
    • \r\n
    \r\n

    Full Changelog: https://github.com/actions/checkout/compare/v3.5.1...v3.5.2

    \r\n

    v3.5.1

    \r\n

    What's Changed

    \r\n
      \r\n
    • Improve checkout performance on Windows runners by upgrading\r\n@​actions/github dependency by @​BrettDong in actions/checkout#1246
    • \r\n
    \r\n

    New Contributors

    \r\n\r\n\r\n
    \r\n

    ... (truncated)

    \r\n
    \r\n
    \r\nChangelog\r\n

    Sourced from actions/checkout's\r\nchangelog.

    \r\n
    \r\n

    Changelog

    \r\n

    v4.1.7

    \r\n
      \r\n
    • Bump the minor-npm-dependencies group across 1 directory with 4\r\nupdates by @​dependabot in actions/checkout#1739
    • \r\n
    • Bump actions/checkout from 3 to 4 by @​dependabot in actions/checkout#1697
    • \r\n
    • Check out other refs/* by commit by @​orhantoy in actions/checkout#1774
    • \r\n
    • Pin actions/checkout's own workflows to a known, good, stable\r\nversion. by @​jww3 in\r\nactions/checkout#1776
    • \r\n
    \r\n

    v4.1.6

    \r\n
      \r\n
    • Check platform to set archive extension appropriately by @​cory-miller in\r\nactions/checkout#1732
    • \r\n
    \r\n

    v4.1.5

    \r\n
      \r\n
    • Update NPM dependencies by @​cory-miller in\r\nactions/checkout#1703
    • \r\n
    • Bump github/codeql-action from 2 to 3 by @​dependabot in actions/checkout#1694
    • \r\n
    • Bump actions/setup-node from 1 to 4 by @​dependabot in actions/checkout#1696
    • \r\n
    • Bump actions/upload-artifact from 2 to 4 by @​dependabot in actions/checkout#1695
    • \r\n
    • README: Suggest user.email to be\r\n41898282+github-actions[bot]@users.noreply.github.com by @​cory-miller in\r\nactions/checkout#1707
    • \r\n
    \r\n

    v4.1.4

    \r\n
      \r\n
    • Disable extensions.worktreeConfig when disabling\r\nsparse-checkout by @​jww3 in actions/checkout#1692
    • \r\n
    • Add dependabot config by @​cory-miller in\r\nactions/checkout#1688
    • \r\n
    • Bump the minor-actions-dependencies group with 2 updates by @​dependabot in actions/checkout#1693
    • \r\n
    • Bump word-wrap from 1.2.3 to 1.2.5 by @​dependabot in actions/checkout#1643
    • \r\n
    \r\n

    v4.1.3

    \r\n
      \r\n
    • Check git version before attempting to disable\r\nsparse-checkout by @​jww3 in actions/checkout#1656
    • \r\n
    • Add SSH user parameter by @​cory-miller in\r\nactions/checkout#1685
    • \r\n
    • Update actions/checkout version in\r\nupdate-main-version.yml by @​jww3 in actions/checkout#1650
    • \r\n
    \r\n

    v4.1.2

    \r\n
      \r\n
    • Fix: Disable sparse checkout whenever sparse-checkout\r\noption is not present @​dscho in actions/checkout#1598
    • \r\n
    \r\n

    v4.1.1

    \r\n
      \r\n
    • Correct link to GitHub Docs by @​peterbe in actions/checkout#1511
    • \r\n
    • Link to release page from what's new section by @​cory-miller in\r\nactions/checkout#1514
    • \r\n
    \r\n

    v4.1.0

    \r\n\r\n

    v4.0.0

    \r\n
      \r\n
    • Support\r\nfetching without the --progress option
    • \r\n
    • Update to\r\nnode20
    • \r\n
    \r\n

    v3.6.0

    \r\n\r\n

    v3.5.3

    \r\n\r\n\r\n
    \r\n

    ... (truncated)

    \r\n
    \r\n
    \r\nCommits\r\n\r\n
    \r\n
    \r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/checkout&package-manager=github_actions&previous-version=2&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
    \r\nDependabot commands and options\r\n
    \r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n
    \r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore: bump actions/checkout from 2 to 4 (#530)"}},{"before":null,"after":"b6cc705d23df206d421936fddaf210f2f4ecc6f5","ref":"refs/heads/dependabot/github_actions/actions/checkout-4","pushedAt":"2024-06-14T05:08:53.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"chore: bump actions/checkout from 2 to 4\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v2...v4)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore: bump actions/checkout from 2 to 4"}},{"before":"14ed6acf68d65459368c523fe443107a8c53912c","after":null,"ref":"refs/heads/allow-empty-email-in-session","pushedAt":"2024-06-13T12:35:03.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"}},{"before":"067dd7b76110a42f6d89dbcac5284be0eb818779","after":"05ab45b5b839f6c83958571b69567b9dd83236ef","ref":"refs/heads/main","pushedAt":"2024-06-13T12:35:02.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"fix: remove email from required fields as some users may not have one (#529)\n\nFixes #526","shortMessageHtmlLink":"fix: remove email from required fields as some users may not have one (…"}},{"before":"082f136d52c7f41f6b3b10a152eeba0dd526e2db","after":"14ed6acf68d65459368c523fe443107a8c53912c","ref":"refs/heads/allow-empty-email-in-session","pushedAt":"2024-06-13T11:30:07.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"asd","shortMessageHtmlLink":"asd"}},{"before":"2f4e79f0e48fd21a919d29c38c9ca4f3f4fae579","after":"082f136d52c7f41f6b3b10a152eeba0dd526e2db","ref":"refs/heads/allow-empty-email-in-session","pushedAt":"2024-06-13T11:26:12.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"asd","shortMessageHtmlLink":"asd"}},{"before":"89749ff56c24bcedf0c24fdf1c4c3aab428cff33","after":"067dd7b76110a42f6d89dbcac5284be0eb818779","ref":"refs/heads/main","pushedAt":"2024-06-13T11:25:35.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"chore: fix ci","shortMessageHtmlLink":"chore: fix ci"}},{"before":"e288fc1b40ab6893c6a41c6a1e9e0281dd4e989b","after":"2f4e79f0e48fd21a919d29c38c9ca4f3f4fae579","ref":"refs/heads/allow-empty-email-in-session","pushedAt":"2024-06-13T11:22:11.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"asd","shortMessageHtmlLink":"asd"}},{"before":"878492116ab91128e80a764f5fda9e89c37facc8","after":"89749ff56c24bcedf0c24fdf1c4c3aab428cff33","ref":"refs/heads/main","pushedAt":"2024-06-13T11:21:57.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dbarrosop","name":"David Barroso","path":"/dbarrosop","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6246622?s=80&v=4"},"commit":{"message":"chore: fix ci","shortMessageHtmlLink":"chore: fix ci"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEdayafwA","startCursor":null,"endCursor":null}},"title":"Activity · nhost/hasura-auth"}