- Update league/fractal to ^0.20.1
- Include new user avatars in the Exports view
- Ensure all exports have an
uploaderId
. When ran in the console this defaults to the first admin
- Downgrade league/fractal to ^0.18.0 to play nicely with Element API
- Craft 4 support (Thanks, @darinlarimore!)
- Allow ability to change the size of the batch when processing reports via the
batchSize
config setting
- Only set an author if the user's identity can be determined
- Allow the ability to "skip" over an item by returning an empty array
{warning} This update modifies the permission behavior of the plugin. If you have given permissions to users or user groups for Reporter you will need to re-enable these under the "General" section of Craft's permission utility for each user/group.
- Process reports via the CLI using
php craft reporter/report --handle=myReport
- Use
$hasCpSection
to insert Reporter navigation link in the control panel. This ensures it's ordered properly in the sidebar by Craft. - Use Craft's baked-in permissions when using
$hasCpSection
instead of custom one.
- Swapped
Db::batch($query)
for$query->batch()
to obtain Craft 3.5+ compatibility
- Initial release!