0.64.24

(fix): When a part in a multipart form request has Content-Type: application/json in OpenAPI or Fern Definition, interpret it as style: json.

0.64.23

(fix): Global headers are now used to create endpoint examples. When building endpoint examples, global headers are automatically included in the headers section of each example. This ensures that all endpoints have consistent header examples that match the global header configuration.

0.64.22

(feat): Make proto file target field optional in generators.yml

0.64.21

(feat): Introduce x-fern-discriminated extension to configure oneOf union behavior in OpenAPI specs.

1# Example usage in OpenAPI schema
2oneOf:
3 - $ref: '#/components/schemas/Circle'
4 - $ref: '#/components/schemas/Square'
5x-fern-discriminated: false # Treat as undiscriminated union

When x-fern-discriminated is set to false, the oneOf will be treated as an undiscriminated union instead of a discriminated union.

0.64.20

(fix): Remove ‘fern-check’ error for global header examples included with ‘x-fern-examples’

0.64.19

(fix): Pin Windows to legacy preview mode.

0.64.18

(fix):

0.64.15

(fix): Fixed ExampleTypeFactory to ignore generating parameters in example when that parameter is both optional and deprecated

0.64.14

(fix): Separate nullable and optional property handling in IR conversion.

0.64.13

(fix): Respect additional properties in docs example generation by preserving them in generated examples instead of stripping unknown properties.

0.64.10

(feat): Add configuration option to disable snippets in docs generation, speeding up generation time.

0.64.9

(fix): Update CLI for sites pinned to the legacy deployment.