Skip to content

Commit 350c428

Browse files
authored
Copy over changelogs from fern repo (#163)
1 parent 2702fee commit 350c428

File tree

96 files changed

+840
-840
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+840
-840
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.24.0
2+
**`(feat):`** Add support for reading headers from environment variables (e.g. `X-API-Version`).
3+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.25.0
2+
**`(feat):`** Add support for sending extra body properties and query parameters via `RequestOption`.
3+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.26.0
2+
**`(feat):`** Add support for sending custom Content-Type header values defined in the API.
3+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.27.0
2+
**`(feat):`** Add support for SSE (Server-Sent Events) streaming responses. The user-facing interface for streaming responses remains the same between standard HTTP streaming and SSE.
3+
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## 0.28.0
2+
**`(feat):`** Add support for the exportedClientName configuration, which can be used to customize the generated client name and constructor included in snippets.
3+
Note that this configuration option assumes that the SDK includes a hand-written client constructor defined in the client package.
4+
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## 0.28.1
2+
**`(fix):`** Fix an issue where optional, allow-multiple query parameter snippets were not rendered.
3+
4+
**`(fix):`** Fix an issue where service headers were not included in the generated in-lined request.
5+
6+
**`(fix):`** Fix an issue where literal types were included as path parameter arguments.
7+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.28.2
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`).
3+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.28.3
2+
**`(internal):`** Upgrade to IRv53.
3+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## 0.30.0
2+
**`(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.
3+
4+
## 0.29.0
5+
**`(feat):`** All SDKs now include an exported `FileParam` type that can be used to configure the `Content-Type` of file upload properties.
6+
7+
**`(fix):`** Resolves an issue where multipart/form-data lists were incorrectly serialized as JSON. They are now added as individual parts.
8+
9+
**`(internal):`** Refactor file upload endpoint generation with the new `core.MultipartWriter`. This significantly improves the aesthetics of the generated code.
10+
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## 0.31.0
2+
**`(feat):`** Improves type file layout with zero impact on backwards compatibility.
3+
Shared types are now more accurately placed in the `types.go` file, whereas types referenced by a single service are now placed in a file that matches the service's filename (e.g. user.go).
4+

0 commit comments

Comments
 (0)