You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/RELEASE_NOTES.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,9 @@
1
+
### 1.5.25 - 03.07.2026
2
+
* leftOuterJoin: groupBy after a left outer join is now supported (SQL semantics: COUNT counts the unmatched NULL row)
3
+
* groupJoin: `groupJoin ... into g` + `for x in g do` now works (inner join semantics); aggregating the group (e.g. `g.Count()`) fails with a clear message instead of returning wrong results
4
+
* leftOuterJoin detection is now gated on the GroupJoin operator and the LINQ DefaultIfEmpty method, so an unrelated `DefaultIfEmpty` call in a projection can no longer turn an inner join into a left outer join
5
+
* Unmatched left-join rows no longer construct a throwaway entity during materialisation
6
+
1
7
### 1.5.24 - 12.06.2026
2
8
* Initial support for standard F# `leftOuterJoin .. into g` / `g.DefaultIfEmpty()` left outer joins (single/multi-key and chained over several tables): unmatched columns are None/default and a whole selected entity is null #540#697
0 commit comments