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
17 changes: 17 additions & 0 deletions fern/products/sdks/overview/csharp/changelog/2026-01-28.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## 2.19.2
**`(fix):`** Fixes missing references to Core utilities in interface files for the Optional wrapper.


## 2.19.1
**`(fix):`** Fix nullable element types in collections to correctly preserve nullable markers.

Previously, nullable types nested inside collections would incorrectly strip the inner nullable marker:
- `nullable<list<nullable<string>>>` incorrectly generated `IEnumerable<string>?`
- `nullable<map<string, nullable<Address>>>` incorrectly generated `Dictionary<string, Address>?`

Now generates correctly:
- `nullable<list<nullable<string>>>` generates `IEnumerable<string?>?`
- `nullable<map<string, nullable<Address>>>` generates `Dictionary<string, Address?>?`
- `optional<map<string, nullable<string>>>` generates `Dictionary<string, string?>?`