> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt.

## 1.46.2

**`(fix):`** 修复 v2 GoTypeMapper 和 DynamicTypeMapper 中可空 \$ref 别名字段的双指针类型，
与 model.go 中 v1 的修复保持一致。

## 1.46.1

**`(fix):`** 修复通过 \$ref 引用共享组件 schema 的可空日期字段生成双指针类型的问题。
当可空类型别名（例如 `type Iso8601DateNullable = *time.Time`）用作字段类型时，
生成器错误地生成了 `*Iso8601DateNullable`（实际上是 `**time.Time`），
导致 Go 编译错误。生成器现在检测已解析为指针类型的别名并避免额外的指针包装。