Skip to content

Commit dc7e153

Browse files
authored
Update changelogs from fern repo (#3326)
1 parent 512c0d4 commit dc7e153

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## 1.0.0-rc83
2+
**`(fix):`** Fix request body serialization bug where path/query/header parameters were incorrectly
3+
serialized as nil values in the request body. For endpoints with inlined request bodies
4+
that also have path, query, or header parameters, the wrapper type (which includes all
5+
endpoint parameters) was being created with only body properties, causing non-body fields
6+
to be nil and serialized as null in the JSON body. The fix uses a serialize-then-split
7+
pattern: serialize ALL params through the wrapper type first, then remove non-body params
8+
from the serialized result. This ensures proper type conversion while keeping non-body
9+
params out of the request body.
10+
11+

0 commit comments

Comments
 (0)