Bug introduced in 14.2 and fixed in 14.2.1.
test = Tabular[
Transpose[{DateRange[DateObject@"2025-03-01", DateObject@"2025-03-31"], Range[31]}], {"date", "whatever"}]
With the above Tabular "test" I want to select the date larger or equal than yesterday.
Select[test, (#date >= DateObject@"2025-03-24") &]
works but (careful!) crashes the Kernel:
Select[test, (#date >= Yesterday) &]
This is with Wolfram { {"14.2.0 for Microsoft Windows (64-bit) (December 26, 2024)"}, {"14.2.0.0 (11186487, 202412264261)"} }
Is this only for my environment?