MailPoet Newsletters (New) - Version 3.103.1

Version Description

  • 2022-11-08 =
  • Fix a database problem that affected some versions of MySQL when creating the new migrations table.
Download this release

Release Info

Developer MailPoet
Plugin Icon 128x128 MailPoet Newsletters (New)
Version 3.103.1
Comparing to
See all releases

Code changes from version 3.103.0 to 3.103.1

lang/mailpoet.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the MailPoet plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: MailPoet 3.103.0\n"
6
  "Report-Msgid-Bugs-To: http://support.mailpoet.com/\n"
7
  "Last-Translator: MailPoet i18n (https://www.transifex.com/organization/wysija)\n"
8
  "Language-Team: MailPoet i18n <https://www.transifex.com/organization/wysija>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-11-08T00:11:28+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
2
  # This file is distributed under the same license as the MailPoet plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: MailPoet 3.103.1\n"
6
  "Report-Msgid-Bugs-To: http://support.mailpoet.com/\n"
7
  "Last-Translator: MailPoet i18n (https://www.transifex.com/organization/wysija)\n"
8
  "Language-Team: MailPoet i18n <https://www.transifex.com/organization/wysija>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-11-08T15:55:54+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
lib/Migrator/Store.php CHANGED
@@ -67,7 +67,7 @@ class Store {
67
  $this->connection->executeStatement("
68
  CREATE TABLE IF NOT EXISTS {$this->table} (
69
  id int(11) unsigned NOT NULL AUTO_INCREMENT,
70
- name varchar(255) NOT NULL,
71
  started_at timestamp NOT NULL,
72
  completed_at timestamp NULL,
73
  retries int(11) unsigned NOT NULL DEFAULT 0,
67
  $this->connection->executeStatement("
68
  CREATE TABLE IF NOT EXISTS {$this->table} (
69
  id int(11) unsigned NOT NULL AUTO_INCREMENT,
70
+ name varchar(191) NOT NULL,
71
  started_at timestamp NOT NULL,
72
  completed_at timestamp NULL,
73
  retries int(11) unsigned NOT NULL DEFAULT 0,
mailpoet.php CHANGED
@@ -5,7 +5,7 @@ if (!defined('ABSPATH')) exit;
5
 
6
  /*
7
  * Plugin Name: MailPoet
8
- * Version: 3.103.0
9
  * Plugin URI: https://www.mailpoet.com
10
  * Description: Create and send newsletters, post notifications and welcome emails from your WordPress.
11
  * Author: MailPoet
@@ -23,7 +23,7 @@ if (!defined('ABSPATH')) exit;
23
  */
24
 
25
  $mailpoetPlugin = [
26
- 'version' => '3.103.0',
27
  'filename' => __FILE__,
28
  'path' => dirname(__FILE__),
29
  'autoloader' => dirname(__FILE__) . '/vendor/autoload.php',
5
 
6
  /*
7
  * Plugin Name: MailPoet
8
+ * Version: 3.103.1
9
  * Plugin URI: https://www.mailpoet.com
10
  * Description: Create and send newsletters, post notifications and welcome emails from your WordPress.
11
  * Author: MailPoet
23
  */
24
 
25
  $mailpoetPlugin = [
26
+ 'version' => '3.103.1',
27
  'filename' => __FILE__,
28
  'path' => dirname(__FILE__),
29
  '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.103.0
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.103.0 - 2022-11-07 =
223
  * Added: deleteList and updateList API methods (https://github.com/mailpoet/mailpoet/tree/trunk/doc);
224
  * Added: forms can be configured to show on product pages;
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.103.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.103.1 - 2022-11-08 =
223
+ * Fix a database problem that affected some versions of MySQL when creating the new migrations table.
224
+
225
  = 3.103.0 - 2022-11-07 =
226
  * Added: deleteList and updateList API methods (https://github.com/mailpoet/mailpoet/tree/trunk/doc);
227
  * Added: forms can be configured to show on product pages;
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 ComposerAutoloaderInit963d0db1d28df5eb7f64718b8711cf00::getLoader();
6
  exit(1);
7
  }
8
  require_once __DIR__ . '/composer/autoload_real.php';
9
+ return ComposerAutoloaderInitcb7bdccb421d04d0642ab390c9bc28bc::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 ComposerAutoloaderInit963d0db1d28df5eb7f64718b8711cf00
5
  {
6
  private static $loader;
7
  public static function loadClassLoader($class)
@@ -16,20 +16,20 @@ class ComposerAutoloaderInit963d0db1d28df5eb7f64718b8711cf00
16
  return self::$loader;
17
  }
18
  require __DIR__ . '/platform_check.php';
19
- spl_autoload_register(array('ComposerAutoloaderInit963d0db1d28df5eb7f64718b8711cf00', 'loadClassLoader'), true, true);
20
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
21
- spl_autoload_unregister(array('ComposerAutoloaderInit963d0db1d28df5eb7f64718b8711cf00', 'loadClassLoader'));
22
  require __DIR__ . '/autoload_static.php';
23
- call_user_func(\Composer\Autoload\ComposerStaticInit963d0db1d28df5eb7f64718b8711cf00::getInitializer($loader));
24
  $loader->register(true);
25
- $includeFiles = \Composer\Autoload\ComposerStaticInit963d0db1d28df5eb7f64718b8711cf00::$files;
26
  foreach ($includeFiles as $fileIdentifier => $file) {
27
- composerRequire963d0db1d28df5eb7f64718b8711cf00($fileIdentifier, $file);
28
  }
29
  return $loader;
30
  }
31
  }
32
- function composerRequire963d0db1d28df5eb7f64718b8711cf00($fileIdentifier, $file)
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 ComposerAutoloaderInitcb7bdccb421d04d0642ab390c9bc28bc
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('ComposerAutoloaderInitcb7bdccb421d04d0642ab390c9bc28bc', 'loadClassLoader'), true, true);
20
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
21
+ spl_autoload_unregister(array('ComposerAutoloaderInitcb7bdccb421d04d0642ab390c9bc28bc', 'loadClassLoader'));
22
  require __DIR__ . '/autoload_static.php';
23
+ call_user_func(\Composer\Autoload\ComposerStaticInitcb7bdccb421d04d0642ab390c9bc28bc::getInitializer($loader));
24
  $loader->register(true);
25
+ $includeFiles = \Composer\Autoload\ComposerStaticInitcb7bdccb421d04d0642ab390c9bc28bc::$files;
26
  foreach ($includeFiles as $fileIdentifier => $file) {
27
+ composerRequirecb7bdccb421d04d0642ab390c9bc28bc($fileIdentifier, $file);
28
  }
29
  return $loader;
30
  }
31
  }
32
+ function composerRequirecb7bdccb421d04d0642ab390c9bc28bc($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 ComposerStaticInit963d0db1d28df5eb7f64718b8711cf00
6
  {
7
  public static $files = array (
8
  'e65c52a9094ad098d9369d5cad5421fa' => __DIR__ . '/../..' . '/lib/exceptions.php',
@@ -1371,9 +1371,9 @@ class ComposerStaticInit963d0db1d28df5eb7f64718b8711cf00
1371
  public static function getInitializer(ClassLoader $loader)
1372
  {
1373
  return \Closure::bind(function () use ($loader) {
1374
- $loader->prefixLengthsPsr4 = ComposerStaticInit963d0db1d28df5eb7f64718b8711cf00::$prefixLengthsPsr4;
1375
- $loader->prefixDirsPsr4 = ComposerStaticInit963d0db1d28df5eb7f64718b8711cf00::$prefixDirsPsr4;
1376
- $loader->classMap = ComposerStaticInit963d0db1d28df5eb7f64718b8711cf00::$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 ComposerStaticInitcb7bdccb421d04d0642ab390c9bc28bc
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 = ComposerStaticInitcb7bdccb421d04d0642ab390c9bc28bc::$prefixLengthsPsr4;
1375
+ $loader->prefixDirsPsr4 = ComposerStaticInitcb7bdccb421d04d0642ab390c9bc28bc::$prefixDirsPsr4;
1376
+ $loader->classMap = ComposerStaticInitcb7bdccb421d04d0642ab390c9bc28bc::$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' => 'ec1eb8b54c30aa3b0a6bb8d6c66dd647c31915ed',
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' => 'ec1eb8b54c30aa3b0a6bb8d6c66dd647c31915ed',
22
  'dev_requirement' => false,
23
  ),
24
  'mtdowling/cron-expression' => array(
7
  'type' => 'library',
8
  'install_path' => __DIR__ . '/../../',
9
  'aliases' => array(),
10
+ 'reference' => '42880bb24a20131e0a5d00235399d7ff6e1465dc',
11
  'name' => '__root__',
12
  'dev' => false,
13
  ),
18
  'type' => 'library',
19
  'install_path' => __DIR__ . '/../../',
20
  'aliases' => array(),
21
+ 'reference' => '42880bb24a20131e0a5d00235399d7ff6e1465dc',
22
  'dev_requirement' => false,
23
  ),
24
  'mtdowling/cron-expression' => array(