Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## 2.66.5
**`(fix):`** Mock-server tests now serialize nullable date-time query and header parameters with millisecond precision so they match what the runtime sends. Previously, when a date-time field was wrapped in a nullable container (e.g. with `respect-nullable-schemas: true` and `coerce-optional-schemas-to-nullable: false`), the generated `WithParam("since", "2024-01-15T09:30:00Z")` omitted milliseconds while the SDK actually sent `2024-01-15T09:30:00.000Z`, causing WireMock to return 404.


9 changes: 9 additions & 0 deletions fern/products/sdks/generators/go/changelog/2026-05-20.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## 1.42.1
**`(fix):`** Fix dynamic snippet generation for enum path parameters. Path parameters inlined as
struct fields on a wrapped request now use the enum value directly (e.g.
`Action: prelude.ActionAllow`) instead of `.Ptr()`, which produced a typecheck error
when the struct field is a non-pointer required enum. Path parameters passed as
positional function arguments continue to use `.Ptr()` when the SDK signature takes
a pointer.


Loading