Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions fern/products/cli-api-reference/cli-changelog/2026-07-30.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 5.88.0
**`(feat):`** Support declaring OAuth public-client login flows in `auth-schemes`: `type: authorization-code`
(Authorization Code + PKCE, browser login) and `type: device-code` (RFC 8628). These lower to
the new `OAuthConfiguration.authorizationCode` / `deviceCode` IR variants for public clients
(no client secret), carrying the public client id, authorization/device/token URLs, scopes, an
optional loopback `redirect-uri`, and PKCE. The `valid-oauth` rule enforces the per-flow
required fields and that a set `redirect-uri` is a loopback address — either `127.0.0.1`
(recommended) or `localhost`, with any path — that the generated CLI then binds and sends
verbatim so it matches the redirect registered with the authorization server. Existing
`client-credentials` OAuth configurations are unchanged.


## 5.87.0
**`(feat):`** Add the `send-optional-defaults` playground setting to `docs.yml` (settable globally or
per-endpoint). When enabled, optional API Explorer parameters that declare a default
Expand Down
Loading