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

supabase / auth / 31620207061
71%

Build:
DEFAULT BRANCH: master
Ran 12 Aug 2026 05:03PM UTC
Jobs 1
Files 202
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

12 Aug 2026 04:57PM UTC coverage: 72.353% (+0.03%) from 72.32%
31620207061

push

github

web-flow
feat(scim): implement `/scim/v2/ServiceProviderConfig` (#2662)

## What kind of change does this PR introduce?

Feature. `GET /scim/v2/ServiceProviderConfig` returns a real RFC-7643
document.

Extracted from https://github.com/supabase/auth/pull/2643

## What is the current behavior?

All three discovery endpoints return 501 in the RFC-7644 error form.
Nothing describes what this server supports, so a SCIM client has no way
to discover its capabilities.

## What is the new behavior?

A new `scim/core` package holds the SCIM 2.0 core schema types from
RFC-7643.

The `/ServiceProviderConfig` endpoint reports every attribute RFC-7643
marks as `REQUIRED`. Each capability is set to `supported: false`.

`authenticationSchemes` advertises the OAuth bearer token scheme. A
later PR will enforce it.

```bash
$ curl -s http://localhost:9999/scim/v2/ServiceProviderConfig | jq
{
  "schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
  ],
  "patch": { "supported": false },
  "bulk": { "supported": false, "maxOperations": 0, "maxPayloadSize": 0 },
  "filter": { "supported": false, "maxResults": 0 },
  "changePassword": { "supported": false },
  "sort": { "supported": false },
  "etag": { "supported": false },
  "authenticationSchemes": [
    {
      "type": "oauthbearertoken",
      "name": "OAuth Bearer Token",
      "description": "Authentication scheme using the OAuth Bearer Token Standard",
      "specUri": "http://www.rfc-editor.org/info/rfc6750",
      "primary": true
    }
  ],
  "meta": {
    "resourceType": "ServiceProviderConfig",
    "location": "http://localhost:9999/scim/v2/ServiceProviderConfig"
  }
}
```

## Additional context

32 of 32 new or added lines in 3 files covered. (100.0%)

18552 of 25641 relevant lines covered (72.35%)

678.87 hits per line

Jobs
ID Job ID Ran Files Coverage
1 31620207061.1 12 Aug 2026 05:03PM UTC 202
72.35
GitHub Action Run
Source Files on build 31620207061
  • Tree
  • List 202
  • Changed 1
  • Source Changed 0
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • 3ac36207 on github
  • Prev Build on master (#31599781809)
  • Next Build on master (#31647220889)
  • Delete
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc