Releases: bpolaszek/php-iterable-functions
Releases · bpolaszek/php-iterable-functions
2.3
2.2
2.1.3
2.1.2
2.1.1
2.1
2.0.1
What's Changed
- Send type coverage to Shepherd by @simPod in #39
- Fix: broken tests since Pest 1.14 by @bpolaszek in #40
- CI: Add PHP 8.1 by @bpolaszek in #41
- Disable GA scheduling since it disables CI after 60 days by @simPod in #43
- Drop phpstan workarounds for old versions by @simPod in #42
Full Changelog: 2.0...2.0.1
2.0 - New major version
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()
andwithFilter()
methods of fluent interface in favor ofmap()
andfilter()
- #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
Introduce iterable_reduce()
- Introduced
iterable_reduce()
function. Thanks @simPod