Skip to content

v1.6.0

Compare
Choose a tag to compare
@saleem-hadad saleem-hadad released this 16 Jul 23:11
· 279 commits to main since this release
262626e

What's Changed

Possible Breaking Change

If you have any custom value metric please make sure to return its value in a new form

<?php
...
class TotalIncome extends ValueMetric
{
    public function __invoke($_, array $args)
    {
        return [
            'value' => ...
        ];
    }
}

Full Changelog: v1.5.1...v1.6.0