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
@@ -1,5 +1,5 @@
## 0.51.0
**`(feat):`** Add `rawResponse` property to JavaScript errors.
**`(feat):`** Add `rawResponse` property to JavaScript errors.

```ts
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The user can choose how to consume the binary data.


## 1.7.2
**`(fix):`** Fix bug where duplicate file generation was silently allowed instead of failing. The `withSourceFile` method now properly
**`(fix):`** Fix bug where duplicate file generation was silently allowed instead of failing. The `withSourceFile` method now properly
handles the `overwrite` option to prevent unintended file overwrites.


Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The default is `Node16`. If you choose `Node18`, the `form-data`, `formdata-node


## 1.8.2
**`(fix):`** When a multipart form part is explicitly marked as JSON, serialize the data as JSON regardless of type.
**`(fix):`** When a multipart form part is explicitly marked as JSON, serialize the data as JSON regardless of type.
This also means arrays, maps, etc. will not be split into multiple parts, but serialized to JSON as a single part.


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**`(internal):`** Bump version to test Docker image rename to `fernapi/fern-typescript-sdk`

## 2.3.2
**`(fix):`** Remove ".js" extension from ESM imports in the source generator code.
**`(fix):`** Remove ".js" extension from ESM imports in the source generator code.
If `useLegacyExports` is `true`, you will not see ".js" extensions in ESM imports.
If `useLegacyExports` is `false` (default), a post process step will add the `.js` extension, so you won't see a difference.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## 2.4.2
**`(fix):`** Fixes a compile issue when WebSocket connect methods require query parameters with special characters.
**`(fix):`** Fixes a compile issue when WebSocket connect methods require query parameters with special characters.
Fixes response deserialization in websockets to respect skipping validation.


## 2.4.1
**`(fix):`** When serde layer is enabled, WebSocket channels now pass through unrecognized properties
**`(fix):`** When serde layer is enabled, WebSocket channels now pass through unrecognized properties
instead of stripping them to preserve forwards compatibility.


Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## 2.9.3
**`(feat):`** Add support for autogenerating simple tests for pagination endpoints.