docs: document CIMD OAuth support - #985
Conversation
|
2 clusters identified |
There was a problem hiding this comment.
Sorry @charliecreates[bot], you have reached your weekly rate limit of 500000 diff characters.
Please try again later or upgrade to continue using Sourcery
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR updates the hosted Worker OAuth documentation to reflect current support for Client ID Metadata Documents (CIMD), clarifying that dynamic client registration via Sequence diagram for hosted Worker OAuth discovery with CIMD and /register fallbacksequenceDiagram
participant OAuthClient
participant WorkerOAuth
OAuthClient->>WorkerOAuth: GET /.well-known/openid-configuration
OAuthClient->>WorkerOAuth: GET CIMD (Client ID Metadata Document)
alt CIMD_supported
OAuthClient->>WorkerOAuth: POST /token (PKCE)
else CIMD_not_supported
OAuthClient->>WorkerOAuth: POST /register
OAuthClient->>WorkerOAuth: POST /token (PKCE)
end
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
|
Overall Grade |
Security Reliability Complexity Hygiene |
Code Review Summary
| Analyzer | Status | Updated (UTC) | Details |
|---|---|---|---|
| JavaScript | Aug 11, 2026 10:05a.m. | Review ↗ |
Important
AI Review is run only on demand for your team. We're only showing results of static analysis review right now. To trigger AI Review, comment @deepsourcebot review on this thread.
Cloudflare Worker preview
|
There was a problem hiding this comment.
✨ PR Review
LGTM
Generated by LinearB AI and added by gitStream.
AI-generated content may contain inaccuracies. Please verify before using.
💡 Tip: You can customize your AI Review using Guidelines Learn how
Bundle ReportBundle size has no change ✅ |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #985 +/- ##
=======================================
Coverage 73.75% 73.75%
=======================================
Files 92 92
Lines 6107 6107
Branches 1733 1733
=======================================
Hits 4504 4504
Misses 1023 1023
Partials 580 580 ☔ View full report in Codecov by Harness. |
Unit Test Results 1 files 78 suites 32s ⏱️ Results for commit 4d015f9. |
Summary
Document the hosted Worker's Client ID Metadata Document (CIMD) OAuth support and clarify that
/registerremains the dynamic-registration fallback.Source evidence
createHevyOAuthProviderenables CIMD and configures the/registerendpoint.Documentation
README.md(hosted Worker OAuth section).Verification
oxfmt README.md --checkgit diff --checkchangeset status --since=origin/mainnode scripts/check-package-changesets.mjs --since origin/main— charlied/docs-drift-maintainer
Summary by Sourcery
Documentation:
/registerdynamic client registration as a fallback, alongside existing PKCE token exchange details.✨ PR Description
Purpose: Update documentation to clarify CIMD OAuth support and dynamic client registration capabilities for the streaming endpoint.
Main changes:
Generated by LinearB AI and added by gitStream.
AI-generated content may contain inaccuracies. Please verify before using.
💡 Tip: You can customize your AI Description using Guidelines Learn how