Add version badge for DebugTokenVerifier in documentation (#2390)

Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
Co-authored-by: Jeremiah Lowin <jlowin@users.noreply.github.com>
This commit is contained in:
Jeremiah Lowin 2025-11-06 15:25:26 -08:00 committed by GitHub
commit 0fa3097153
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -212,6 +212,8 @@ Static token verification stores tokens as plain text and should never be used i
### Debug/Custom Token Verification
<VersionBadge version="2.13.1" />
The `DebugTokenVerifier` provides maximum flexibility for testing and special cases where standard token verification isn't applicable. It delegates validation to a user-provided callable, making it useful for prototyping, testing scenarios, or handling opaque tokens without introspection endpoints.
```python