5.44.11
(fix): Fix AI example enhancement to backfill missing required fields from the auto-generated
example. When the AI Lambda produces a partial example (e.g., missing fields from nested
allOf chains), the missing fields are now merged from the correct auto-generated example,
ensuring all required fields are present in published documentation.
5.44.10
(fix): Fix false positive warnings in the missing-redirects check for changelog
entries and embedded content pages. FDR stores an empty slug for pages that
don’t resolve to a standalone navigation node; these are no longer reported as
removed pages whose previously published URL was ”/”, even when the site’s home
page lives under a non-root slug or basepath.
5.44.9
(fix): Fix fern check validators (valid-local-references, no-non-component-refs) incorrectly reporting $ref values found inside YAML comments.
5.44.8
(fix): Fix example generation for nested allOf $ref chains. When a schema uses
multi-level allOf (e.g. UserPost → UserBase → UserStrict), properties from
grandparent schemas were missing from generated code snippets because
mergeAllOfProperties only resolved one level of allOf. Now recursively
resolves the full chain so all required fields appear in examples.