2.8.1

(fix): Support a lines prop for the <Code /> component to extract specific lines from a code snippet.

2.8.0

(feat): Adds an option for api.tag-description-pages: true to create summary pages from tag descriptions within an API reference.

2.7.1

(fix): Fix fern docs dev bug on Windows where asset paths were not parsing correctly

2.7.0

(feat): Support per-generator auth overrides in generators.yml. In the following example the TypeScript SDK generator will use Basic auth while the rest of the APIs use OAuth.

1# generators.yml
2auth-schemes:
3 OAuth:
4 scheme: oauth
5 type: client-credentials
6 get-token:
7 endpoint: POST /authorize
8 Basic:
9 scheme: basic
10
11api:
12 auth: OAuth
13 specs:
14 - openapi: openapi.yml
15
16groups:
17 ts-sdk:
18 generators:
19 - name: fernapi/fern-typescript-sdk
20 version: 3.33.0
21 api:
22 auth: Basic

2.6.2

(fix): Support generating examples for x-fern-type: literal<...> values in OpenAPI specs. Parameters with literal type annotations now generate examples using the underlying literal value.

2.6.1

(fix): Fix docs broken-links validator incorrectly flagging external URLs that contain the docs domain in query parameters.

2.5.2

(fix): Remove spammy “Cannot resolve source” warnings for OpenAPI sources in unioned API configurations with dependencies.