From 853c2713405801626c97136464bc6c44c7cba3f3 Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:26:33 -0800 Subject: [PATCH] :herb: :sparkles: [Scheduled] Upgrade Fern Go SDK Generator: (`go-sdk`) (#87) ## Upgrading from `0.28.0` to `0.30.0` - Changelog
0.30.0
feat:
Add support for nil-safe getter methods. Callers can
more easily access nested properties by chaining together getter method
calls instead of a long series of `!= nil` checks.
0.29.0
feat:
All SDKs now include an exported `FileParam` type
that can be used to configure the `Content-Type` of file upload
properties.
fix:
Resolves an issue where multipart/form-data lists were
incorrectly serialized as JSON. They are now added as individual parts.
internal:
Refactor file upload endpoint generation with the
new `core.MultipartWriter`. This significantly improves the aesthetics
of the generated code.
0.28.3
internal:
Upgrade to IRv53.
0.28.2
fix:
Fix an issue where undiscriminated unions were not
round-trippable whenever the union is the zero value of the type (e.g.
`0` for `int`).
0.28.1
fix:
Fix an issue where optional, allow-multiple query
parameter snippets were not rendered.
fix:
Fix an issue where service headers were not included
in the generated in-lined request.
fix:
Fix an issue where literal types were included as path
parameter arguments.