Skip to content
Merged
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
11 changes: 11 additions & 0 deletions fern/products/sdks/generators/swift/changelog/2026-05-03.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## 0.34.2
**`(fix):`** Emit wire-test response bodies as Swift raw multi-line string literals
(`#"""..."""#`) so that JSON escape sequences such as `\n` survive
verbatim into the runtime `String` and reach `JSONDecoder` as valid
JSON. The previous regular triple-quoted literal caused Swift to
unescape `\n` into real newline characters at runtime, which
produced invalid JSON (RFC 8259 disallows raw control characters
inside JSON string values) and made `JSONDecoder` reject the body
with `dataCorrupted("The given data was not valid JSON.")`.


Loading