3.1.0
July 29th, 2023
3.0.0
July 8th, 2023
This release:
- Adds support for Statamic 4
- Removes support for Antlers regex (see https://stillat.com/meerkat/installation#content-upgrading-to-meerkat-3)
- Fixes a handful of bugs, makes general improvements, and freshens up the UI a bit
2.7.0
July 29th, 2023
2.6.4
March 1st, 2023
- Improves how the routing of the "View Entry" link in the control panel (#225 )
- Improves the JSON export by adding the data keys
2.6.3
February 22nd, 2023
- Corrects an issue where subsequent reply link clicks would not work when using
{{ meerkat:replies-to }}
2.6.1
August 10th, 2022
- Corrects an issue where
Value
ID objects would trigger array offset type errors #209
2.6.0
May 30th, 2022
This release provides a way to override the "from" email address that is used when sending automated comment submitted emails. By default, the email address provided by the comment author will be used.
To set this new option, you will need to add a new entry to your site's config/meerkat/email.php
configuration file (this option is not currently available within the Control Panel UI):
<?php
return [
// ...
/*
|--------------------------------------------------------------------------
| From Address
|--------------------------------------------------------------------------
|
| By default the "from" address will be the email of the
| comment author when sending automated emails. Change
| this value from "null" to a different value to use
| a different "from" email address when sending.
|
*/
'from_address' => null,
// ...
];
To force Meerkat to use your custom "from" email address, change the value from null
to your desired email address. If your site's configuration has been cached, the cache will need to be cleared.
2.5.1
May 5th, 2022
- Prevents the dashboard from erroring out after deleting an entry that has comments #204
2.5.0
April 10th, 2022
- Bumps minimum PHP and Statamic versions
- Corrects a
toCacheableArray()
method not found error
2.4.11
February 24th, 2022
- Resolves an issue where the filter icon would take up the entire screen - thanks @katjapvl !
2.4.10
February 23rd, 2022
- Corrects an issue where thread IDs are value objects
- Corrects an issue with non-string identifiers from Statamic users
- Corrects visual display issue of publish form tabs
2.4.9-beta3
October 27th, 2021
- Fixes an issue where validation rules may not be respected if they are a string
- Guards against null comments when interacting with the comment mutation pipeline