3.86.0

(feat): Add support for x-fern-sdk-method-name extension on AsyncAPI WebSocket channels to customize the connection method name in generated SDKs. This field is now available in both AsyncAPI v2 and v3 specifications.

AsyncAPI example — use x-fern-sdk-method-name to customize the WebSocket connection method instead of the default “connect”:

1asyncapi: 3.0.0
2info:
3 title: Chat API
4 version: 1.0.0
5channels:
6 /chat:
7 x-fern-sdk-method-name: createChatConnection
8 messages:
9 userMessage:
10 payload:
11 type: object
12 properties:
13 content:
14 type: string

This generates client.createChatConnection() instead of client.connect(), avoiding confusing APIs where both wrapper creation and actual connection use “connect”.

3.85.6

(chore): Complete document-level webhook-signature configuration parsing. Adds validation for webhook signature configs (algorithms, encodings, timestamp settings, JWKS consistency).

3.85.5

(fix): Report broken AsyncAPI V3 message references as visible warnings instead of silently dropping entire specs. When an operation references a non-existent channel or message (e.g. $ref: "#/channels/auth/messages/authenticate" when no auth channel exists), the parser now logs a warning with the specific broken $ref and continues processing the remaining valid messages and channels.

3.85.4

(fix): Skip compatible IR version validation when running in local development mode (CLI version 0.0.0). This prevents noisy 404 errors from the FDR registry when the CLI version is not a real published release.

3.85.3

(fix): Remove unhelpful “Unable to analyze changes with AI” fallback message from changelog entries when AI analysis fails during AUTO versioning. The changelog now shows just the version header with no body instead.

3.85.1

(fix): Fix AUTO versioning failing for new SDK repositories. When generating an SDK into an empty or newly initialized repository, the version extraction would fail because all files are new additions with no previous version lines in the diff. Now returns 0.0.1 as the initial version instead of throwing an error.