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
12 changes: 12 additions & 0 deletions fern/products/sdks/generators/swift/changelog/2026-06-15.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## 0.35.11
**`(fix):`** Fixed several Swift code generation bugs around identifier and string escaping:
- Enum raw values are now escaped as raw Swift string content rather than being
JSON-encoded, fixing invalid literals (e.g. unterminated strings and bogus escapes).
- Reserved keywords used as type names, enum/case names, property names, and type
references are now backtick-escaped (e.g. `Type`), and identifiers that start with
a digit are sanitized (e.g. `3D` -> `_3D`).
- String-typed literals that are not registered as nested literal enums (such as
endpoint header/query literals) now fall back to `JSONValue` instead of crashing
generation.


Loading