Skip to content

Commit 1306ed6

Browse files
update changelogs
1 parent a1174a1 commit 1306ed6

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+

0 commit comments

Comments
 (0)