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.6
**`(fix):`** `MockServerTestGenerator` now normalizes nullable date-time query and header parameters to millisecond precision, matching the fix previously applied to `MockEndpointGenerator`. Without this, mock-server tests for nullable date-time fields emitted matchers like `"2024-01-15T09:30:00Z"` while the SDK actually sent `"2024-01-15T09:30:00.000Z"`.


4 changes: 4 additions & 0 deletions fern/products/sdks/generators/go/changelog/2026-05-21.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## 1.42.2
**`(fix):`** Generated `wiremock-mappings.json` now matches nullable date-time query and header parameters with millisecond precision so the stub matches what the Go SDK actually 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: true`), the stub matcher used `"2024-01-15T09:30:00Z"` while the SDK serialized `"2024-01-15T09:30:00.000Z"`, causing WireMock to return 404.


Loading