File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
fern/products/sdks/overview/csharp/changelog Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 1+ ## 2.19.2
2+ ** ` (fix): ` ** Fixes missing references to Core utilities in interface files for the Optional wrapper.
3+
4+
5+ ## 2.19.1
6+ ** ` (fix): ` ** Fix nullable element types in collections to correctly preserve nullable markers.
7+
8+ Previously, nullable types nested inside collections would incorrectly strip the inner nullable marker:
9+ - ` nullable<list<nullable<string>>> ` incorrectly generated ` IEnumerable<string>? `
10+ - ` nullable<map<string, nullable<Address>>> ` incorrectly generated ` Dictionary<string, Address>? `
11+
12+ Now generates correctly:
13+ - ` nullable<list<nullable<string>>> ` generates ` IEnumerable<string?>? `
14+ - ` nullable<map<string, nullable<Address>>> ` generates ` Dictionary<string, Address?>? `
15+ - ` optional<map<string, nullable<string>>> ` generates ` Dictionary<string, string?>? `
16+
17+
You can’t perform that action at this time.
0 commit comments