Version Description
- 2022-07-20 =
- Fixed: A database table could not be created in some installations.
Download this release
Release Info
Developer | MailPoet |
Plugin | MailPoet Newsletters (New) |
Version | 3.92.1 |
Comparing to | |
See all releases |
Code changes from version 3.92.0 to 3.92.1
- lang/mailpoet.pot +2 -2
- lib/Config/Migrator.php +1 -1
- mailpoet.php +2 -2
- readme.txt +4 -1
- vendor/autoload.php +1 -1
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +4 -4
- vendor/composer/installed.php +2 -2
lang/mailpoet.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the MailPoet 3 (New) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: MailPoet 3 (New) 3.92.
|
6 |
"Report-Msgid-Bugs-To: http://support.mailpoet.com/\n"
|
7 |
-
"POT-Creation-Date: 2022-07-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
2 |
# This file is distributed under the same license as the MailPoet 3 (New) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: MailPoet 3 (New) 3.92.1\n"
|
6 |
"Report-Msgid-Bugs-To: http://support.mailpoet.com/\n"
|
7 |
+
"POT-Creation-Date: 2022-07-20 08:01:30+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
lib/Config/Migrator.php
CHANGED
@@ -645,7 +645,7 @@ class Migrator {
|
|
645 |
public function tags(): string {
|
646 |
$attributes = [
|
647 |
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
648 |
-
'name varchar(
|
649 |
'description text NOT NULL DEFAULT "",',
|
650 |
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
651 |
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
645 |
public function tags(): string {
|
646 |
$attributes = [
|
647 |
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
648 |
+
'name varchar(191) NOT NULL,',
|
649 |
'description text NOT NULL DEFAULT "",',
|
650 |
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
651 |
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
mailpoet.php
CHANGED
@@ -5,7 +5,7 @@ if (!defined('ABSPATH')) exit;
|
|
5 |
|
6 |
/*
|
7 |
* Plugin Name: MailPoet 3 (New)
|
8 |
-
* Version: 3.92.
|
9 |
* Plugin URI: http://www.mailpoet.com
|
10 |
* Description: Create and send newsletters, post notifications and welcome emails from your WordPress.
|
11 |
* Author: MailPoet
|
@@ -20,7 +20,7 @@ if (!defined('ABSPATH')) exit;
|
|
20 |
*/
|
21 |
|
22 |
$mailpoetPlugin = [
|
23 |
-
'version' => '3.92.
|
24 |
'filename' => __FILE__,
|
25 |
'path' => dirname(__FILE__),
|
26 |
'autoloader' => dirname(__FILE__) . '/vendor/autoload.php',
|
5 |
|
6 |
/*
|
7 |
* Plugin Name: MailPoet 3 (New)
|
8 |
+
* Version: 3.92.1
|
9 |
* Plugin URI: http://www.mailpoet.com
|
10 |
* Description: Create and send newsletters, post notifications and welcome emails from your WordPress.
|
11 |
* Author: MailPoet
|
20 |
*/
|
21 |
|
22 |
$mailpoetPlugin = [
|
23 |
+
'version' => '3.92.1',
|
24 |
'filename' => __FILE__,
|
25 |
'path' => dirname(__FILE__),
|
26 |
'autoloader' => dirname(__FILE__) . '/vendor/autoload.php',
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: mailpoet
|
|
3 |
Tags: email, email marketing, post notification, woocommerce emails, email automation, newsletter, newsletter builder, newsletter subscribers
|
4 |
Requires at least: 5.6
|
5 |
Tested up to: 6.0
|
6 |
-
Stable tag: 3.92.
|
7 |
Requires PHP: 7.2
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
@@ -219,6 +219,9 @@ Check our [Knowledge Base](https://kb.mailpoet.com) or contact us through our [s
|
|
219 |
|
220 |
== Changelog ==
|
221 |
|
|
|
|
|
|
|
222 |
= 3.92.0 - 2022-07-19 =
|
223 |
* Added: show tags on Subscribers listing page;
|
224 |
* Added: tagging subscribers on the edit page;
|
3 |
Tags: email, email marketing, post notification, woocommerce emails, email automation, newsletter, newsletter builder, newsletter subscribers
|
4 |
Requires at least: 5.6
|
5 |
Tested up to: 6.0
|
6 |
+
Stable tag: 3.92.1
|
7 |
Requires PHP: 7.2
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
219 |
|
220 |
== Changelog ==
|
221 |
|
222 |
+
= 3.92.1 - 2022-07-20 =
|
223 |
+
* Fixed: A database table could not be created in some installations.
|
224 |
+
|
225 |
= 3.92.0 - 2022-07-19 =
|
226 |
* Added: show tags on Subscribers listing page;
|
227 |
* Added: tagging subscribers on the edit page;
|
vendor/autoload.php
CHANGED
@@ -6,4 +6,4 @@ if (PHP_VERSION_ID < 50600) {
|
|
6 |
exit(1);
|
7 |
}
|
8 |
require_once __DIR__ . '/composer/autoload_real.php';
|
9 |
-
return
|
6 |
exit(1);
|
7 |
}
|
8 |
require_once __DIR__ . '/composer/autoload_real.php';
|
9 |
+
return ComposerAutoloaderInitf03413c468a378c71a0c1a7e48f7b7f7::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
if (!defined('ABSPATH')) exit;
|
3 |
// autoload_real.php @generated by Composer
|
4 |
-
class
|
5 |
{
|
6 |
private static $loader;
|
7 |
public static function loadClassLoader($class)
|
@@ -16,20 +16,20 @@ class ComposerAutoloaderInitc8e176d4be07ea3663e3792bf77cba92
|
|
16 |
return self::$loader;
|
17 |
}
|
18 |
require __DIR__ . '/platform_check.php';
|
19 |
-
spl_autoload_register(array('
|
20 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
21 |
-
spl_autoload_unregister(array('
|
22 |
require __DIR__ . '/autoload_static.php';
|
23 |
-
call_user_func(\Composer\Autoload\
|
24 |
$loader->register(true);
|
25 |
-
$includeFiles = \Composer\Autoload\
|
26 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
27 |
-
|
28 |
}
|
29 |
return $loader;
|
30 |
}
|
31 |
}
|
32 |
-
function
|
33 |
{
|
34 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
35 |
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
1 |
<?php
|
2 |
if (!defined('ABSPATH')) exit;
|
3 |
// autoload_real.php @generated by Composer
|
4 |
+
class ComposerAutoloaderInitf03413c468a378c71a0c1a7e48f7b7f7
|
5 |
{
|
6 |
private static $loader;
|
7 |
public static function loadClassLoader($class)
|
16 |
return self::$loader;
|
17 |
}
|
18 |
require __DIR__ . '/platform_check.php';
|
19 |
+
spl_autoload_register(array('ComposerAutoloaderInitf03413c468a378c71a0c1a7e48f7b7f7', 'loadClassLoader'), true, true);
|
20 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
21 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitf03413c468a378c71a0c1a7e48f7b7f7', 'loadClassLoader'));
|
22 |
require __DIR__ . '/autoload_static.php';
|
23 |
+
call_user_func(\Composer\Autoload\ComposerStaticInitf03413c468a378c71a0c1a7e48f7b7f7::getInitializer($loader));
|
24 |
$loader->register(true);
|
25 |
+
$includeFiles = \Composer\Autoload\ComposerStaticInitf03413c468a378c71a0c1a7e48f7b7f7::$files;
|
26 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
27 |
+
composerRequiref03413c468a378c71a0c1a7e48f7b7f7($fileIdentifier, $file);
|
28 |
}
|
29 |
return $loader;
|
30 |
}
|
31 |
}
|
32 |
+
function composerRequiref03413c468a378c71a0c1a7e48f7b7f7($fileIdentifier, $file)
|
33 |
{
|
34 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
35 |
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
vendor/composer/autoload_static.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
// autoload_static.php @generated by Composer
|
3 |
namespace Composer\Autoload;
|
4 |
if (!defined('ABSPATH')) exit;
|
5 |
-
class
|
6 |
{
|
7 |
public static $files = array (
|
8 |
'e65c52a9094ad098d9369d5cad5421fa' => __DIR__ . '/../..' . '/lib/exceptions.php',
|
@@ -1371,9 +1371,9 @@ class ComposerStaticInitc8e176d4be07ea3663e3792bf77cba92
|
|
1371 |
public static function getInitializer(ClassLoader $loader)
|
1372 |
{
|
1373 |
return \Closure::bind(function () use ($loader) {
|
1374 |
-
$loader->prefixLengthsPsr4 =
|
1375 |
-
$loader->prefixDirsPsr4 =
|
1376 |
-
$loader->classMap =
|
1377 |
}, null, ClassLoader::class);
|
1378 |
}
|
1379 |
}
|
2 |
// autoload_static.php @generated by Composer
|
3 |
namespace Composer\Autoload;
|
4 |
if (!defined('ABSPATH')) exit;
|
5 |
+
class ComposerStaticInitf03413c468a378c71a0c1a7e48f7b7f7
|
6 |
{
|
7 |
public static $files = array (
|
8 |
'e65c52a9094ad098d9369d5cad5421fa' => __DIR__ . '/../..' . '/lib/exceptions.php',
|
1371 |
public static function getInitializer(ClassLoader $loader)
|
1372 |
{
|
1373 |
return \Closure::bind(function () use ($loader) {
|
1374 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInitf03413c468a378c71a0c1a7e48f7b7f7::$prefixLengthsPsr4;
|
1375 |
+
$loader->prefixDirsPsr4 = ComposerStaticInitf03413c468a378c71a0c1a7e48f7b7f7::$prefixDirsPsr4;
|
1376 |
+
$loader->classMap = ComposerStaticInitf03413c468a378c71a0c1a7e48f7b7f7::$classMap;
|
1377 |
}, null, ClassLoader::class);
|
1378 |
}
|
1379 |
}
|
vendor/composer/installed.php
CHANGED
@@ -7,7 +7,7 @@ if (!defined('ABSPATH')) exit;
|
|
7 |
'type' => 'library',
|
8 |
'install_path' => __DIR__ . '/../../',
|
9 |
'aliases' => array(),
|
10 |
-
'reference' => '
|
11 |
'name' => '__root__',
|
12 |
'dev' => false,
|
13 |
),
|
@@ -18,7 +18,7 @@ if (!defined('ABSPATH')) exit;
|
|
18 |
'type' => 'library',
|
19 |
'install_path' => __DIR__ . '/../../',
|
20 |
'aliases' => array(),
|
21 |
-
'reference' => '
|
22 |
'dev_requirement' => false,
|
23 |
),
|
24 |
'mtdowling/cron-expression' => array(
|
7 |
'type' => 'library',
|
8 |
'install_path' => __DIR__ . '/../../',
|
9 |
'aliases' => array(),
|
10 |
+
'reference' => 'c26f6eff84d26fa1c533407fcf2c4d3142f976fa',
|
11 |
'name' => '__root__',
|
12 |
'dev' => false,
|
13 |
),
|
18 |
'type' => 'library',
|
19 |
'install_path' => __DIR__ . '/../../',
|
20 |
'aliases' => array(),
|
21 |
+
'reference' => 'c26f6eff84d26fa1c533407fcf2c4d3142f976fa',
|
22 |
'dev_requirement' => false,
|
23 |
),
|
24 |
'mtdowling/cron-expression' => array(
|