Skip to content

Releases: bpolaszek/php-iterable-functions

2.3

04 Jun 13:24
a8d257b
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.2...2.3

2.2

12 Apr 09:56
d0df451
Compare
Choose a tag to compare
2.2

What's Changed

  • feat: drop support for EOLed PHPs by @simPod in #49

Full Changelog: 2.1.3...2.2

2.1.3

12 Apr 09:54
9bfa4d8
Compare
Choose a tag to compare

What's Changed

  • feat: add support for filtering using key by @simPod in #48

Full Changelog: 2.1.2...2.1.3

2.1.2

14 Oct 13:20
fdfdc2e
Compare
Choose a tag to compare

What's Changed

  • Make iterable_to_array return value more precise by @weph in #47

New Contributors

  • @weph made their first contribution in #47

Full Changelog: 2.1.1...2.1.2

2.1.1

21 Mar 02:34
6a094a2
Compare
Choose a tag to compare

What's Changed

  • fix: add generic key to input in iterable_to_array() by @simPod in #46

Full Changelog: 2.1...2.1.1

2.1

15 Oct 07:12
7136af2
Compare
Choose a tag to compare
2.1

What's Changed

New Contributors

Full Changelog: 2.0.1...2.1

2.0.1

28 Apr 09:45
95571ed
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.0...2.0.1

2.0 - New major version

26 Jul 10:27
c6355c1
Compare
Choose a tag to compare

Say hello to this new version! 👋

  • Drop PHP5 support (BC break) - #12
  • Functions are now namespaced (BC break) - #13
  • Removed is_iterable function, as it's now PHP7+ native
  • Removed withMap() and withFilter() methods of fluent interface in favor of map() and filter() - #9 (BC break)
  • Added iterable_values() function - #33
  • Allow objects as keys - #24
  • Add support for default filter function - #25

A huge thanks to @simPod for his contributions! 🙏

2.0-beta

28 Feb 09:58
007c483
Compare
Choose a tag to compare
2.0-beta Pre-release
Pre-release
Docs: Add missing iterable_values() into summary (#36)

Introduce iterable_reduce()

01 May 07:49
82996c6
Compare
Choose a tag to compare
  • Introduced iterable_reduce() function. Thanks @simPod