• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

supabase / auth / 24239666854
69%

Build:
DEFAULT BRANCH: master
Ran 10 Apr 2026 11:03AM UTC
Jobs 1
Files 187
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

10 Apr 2026 10:58AM UTC coverage: 69.358%. Remained the same
24239666854

push

github

web-flow
fix(passkeys): modify the passkeys request and response shapes (#2475)

Modifies some of the passkeys request/response shapes for a cleaner
interface and to better align with industry standards. In particular:

The `/options` endpoints removes unnecessary nesting (a byproduct of
serializing the go-webauthn object directly):

```
{
  "challenge_id": "some-challenge-id",
  "options": {
    "publicKey": {
      // ... the public key options
    },
  }
  "expires_at": 1234567890
}
```

becomes:

```
{
  "challenge_id": "some-challenge-id",
  "options": {
    // ... the public key options
  }
  "expires_at": 1234567890
}
```

---

Rename the `credential` in the `/verify` endpoint payload from
`credential_response` to `credential`:

```
{
  "challenge_id": "some-challenge-id",
  "credential_response": {
    // ... the response from the client
  }
}
```

becomes

```
{
  "challenge_id": "some-challenge-id",
  "credential": {
    // ... the response from the client
  }
}
```

---

Finally, remove the `backed_up`, `backup_eligible`, and `transports`
fields from the `/verify` response upon registration. We can later
expose them consistently across the API responses if/when needed.

10 of 11 new or added lines in 2 files covered. (90.91%)

1 existing line in 1 file now uncovered.

16628 of 23974 relevant lines covered (69.36%)

82.16 hits per line

Uncovered Changes

Lines Coverage ∆ File
1
70.34
0.0% internal/api/passkey_authentication.go

Coverage Regressions

Lines Coverage ∆ File
1
70.34
0.0% internal/api/passkey_authentication.go
Jobs
ID Job ID Ran Files Coverage
1 24239666854.1 10 Apr 2026 11:03AM UTC 187
69.36
GitHub Action Run
Source Files on build 24239666854
  • Tree
  • List 187
  • Changed 2
  • Source Changed 0
  • Coverage Changed 2
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • 2d8f2b61 on github
  • Prev Build on master (#24202395786)
  • Next Build on master (#24410344622)
  • Delete
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc