0.57.15

(fix): Add support for handling nullable and optional references in the OpenAPI parser. When a reference is marked with nullable: true or is not included in the required properties list, the parser now correctly wraps the referenced type in a nullable or optional container. This ensures that references respect the same nullability and optionality rules as inline schemas.

0.57.14

(chore): Adds support for the command-a model in AI chat, while removing support for the command-r-plus model.

0.57.12

(feat): Add additional-properties-defaults-to setting for OpenAPI specs in generators.yml. This setting lets you change the default value for the additionalProperties field in the generated IR.

0.57.10

(fix): Add support for handling integer types without a specified format in the new OpenAPI parser. When a schema defines a property with type: integer but doesn’t specify a format (like int32, int64, etc.), the parser now defaults to treating it as a standard integer type. This ensures consistent behavior for integer fields regardless of whether a format is explicitly provided.

0.57.6

(fix): Reduce CLI output from the legacy OpenAPI parser when using the experimental openapiParserV3 option. This makes the logs cleaner and more focused on relevant information when using the newer parser.

0.57.2

(feat): Add support for parsing type: enum in OpenAPI schemas. This allows for proper conversion of enum types that use the non-standard type: enum format instead of the standard type: string with enum values.

0.57.0

(feat): Add use-bytes-for-binary-response configuration option to specify whether to use the bytes type for binary responses.

0.56.31

(feat): Added support for default values in example generation to prevent SDK generation failures due to corrupted OpenAPI examples.

0.56.30

(feat): The default behavior of fern generate now excludes broken link checking by default. This can be overridden by passing --broken-links or --strict-broken-links.