Skip to content

Releases: kutyel/linq.ts

v3.2.0

09 Sep 11:59

Choose a tag to compare

3.2.0 (2025-09-09)

Features

  • tsconfig.json: improve type safety (2c701a9)

v3.1.0

23 Jul 10:16
e303521

Choose a tag to compare

3.1.0 (2025-07-23)

Features

  • list: Refactor Min/Max methods with better selector and comparer overload support (#187) (e303521)

v3.0.0

21 Jul 08:43
83b9adb

Choose a tag to compare

3.0.0 (2025-07-21)

Features

  • list: Generic implementation of Max and Min functions. (#186) (83b9adb)

BREAKING CHANGES

  • list: Min() and Max() functions are now generic.

v2.0.0

01 Aug 11:52
ab21580

Choose a tag to compare

2.0.0 (2024-08-01)

Features

BREAKING CHANGES

  • list: ToDictionary() and all *OrDefault() functions now behave differently

v1.15.0

16 May 08:56

Choose a tag to compare

1.15.0 (2023-05-16)

Features

  • list: Make List iterable and spreadable using generator (#184) (86e7747)

v1.14.4

12 Jan 12:13
f8b9364

Choose a tag to compare

1.14.4 (2021-01-12)

Bug Fixes

  • set module to CommonJS for ts projects (#176) (f8b9364)

v1.14.3

19 Aug 12:57
c37100c

Choose a tag to compare

1.14.3 (2020-08-19)

Bug Fixes

  • list: Improve Join and GroupJoin typings (#173) (c37100c)

v1.14.2

05 Jun 14:51
74d316b

Choose a tag to compare

1.14.2 (2020-06-05)

Bug Fixes

  • package.json: fix main entry to point at the correct file (74d316b)

v1.14.1

05 Jun 14:45

Choose a tag to compare

1.14.1 (2020-06-05)

Bug Fixes

  • package.json: point types to the correct place (db26ff5), closes #172

v1.14.0

01 Jun 12:22

Choose a tag to compare

Fix ElementAtOrDefault to return undefined instead of error when index is out of range

Added new methods

  • Append
    • Appends an object to the end of the List.
  • Prepend
    • Add an object to the start of the List.
  • SkipLast
    • Omit the last specified number of elements in a sequence and then returns the remaining elements.
  • TakeLast
    • Returns a specified number of contiguous elements from the end of a sequence.