Compare commits

...

1 Commits

Author SHA1 Message Date
d1aa7e689e Release 5.3.6 2024-11-05 09:33:28 +01:00
3 changed files with 11 additions and 5 deletions

View File

@ -1,5 +1,10 @@
== Changelog == == Changelog ==
= 5.3.6 - 2024-11-05 =
- Fixed: race condition in links tracking;
- Fixed: WP 6.7 compatibility issues.
= 5.3.5 - 2024-10-30 = = 5.3.5 - 2024-10-30 =
- Fixed: Post notifications now correctly select new posts by ensuring consistent UTC date comparison, preventing posts published within certain time zones from being skipped after a notification is sent. - Fixed: Post notifications now correctly select new posts by ensuring consistent UTC date comparison, preventing posts published within certain time zones from being skipped after a notification is sent.

View File

@ -2,7 +2,7 @@
/* /*
* Plugin Name: MailPoet * Plugin Name: MailPoet
* Version: 5.3.5 * Version: 5.3.6
* Plugin URI: https://www.mailpoet.com * Plugin URI: https://www.mailpoet.com
* Description: Create and send newsletters, post notifications and welcome emails from your WordPress. * Description: Create and send newsletters, post notifications and welcome emails from your WordPress.
* Author: MailPoet * Author: MailPoet
@ -20,7 +20,7 @@
*/ */
$mailpoetPlugin = [ $mailpoetPlugin = [
'version' => '5.3.5', 'version' => '5.3.6',
'filename' => __FILE__, 'filename' => __FILE__,
'path' => dirname(__FILE__), 'path' => dirname(__FILE__),
'autoloader' => dirname(__FILE__) . '/vendor/autoload.php', 'autoloader' => dirname(__FILE__) . '/vendor/autoload.php',

View File

@ -3,7 +3,7 @@ Contributors: mailpoet, woocommerce, automattic
Tags: email marketing, post notification, woocommerce emails, email automation, newsletter Tags: email marketing, post notification, woocommerce emails, email automation, newsletter
Requires at least: 6.5 Requires at least: 6.5
Tested up to: 6.6 Tested up to: 6.6
Stable tag: 5.3.5 Stable tag: 5.3.6
Requires PHP: 7.4 Requires PHP: 7.4
License: GPLv3 License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html License URI: https://www.gnu.org/licenses/gpl-3.0.html
@ -230,7 +230,8 @@ Check our [Knowledge Base](https://kb.mailpoet.com) or contact us through our [s
== Changelog == == Changelog ==
= 5.3.5 - 2024-10-30 = = 5.3.6 - 2024-11-05 =
* Fixed: Post notifications now correctly select new posts by ensuring consistent UTC date comparison, preventing posts published within certain time zones from being skipped after a notification is sent. * Fixed: race condition in links tracking;
* Fixed: WP 6.7 compatibility issues.
[See the changelog for all versions.](https://github.com/mailpoet/mailpoet/blob/trunk/mailpoet/CHANGELOG.md) [See the changelog for all versions.](https://github.com/mailpoet/mailpoet/blob/trunk/mailpoet/CHANGELOG.md)