MailPoet Newsletters (New) - Version 3.92.1

Version Description

  • 2022-07-20 =
  • Fixed: A database table could not be created in some installations.
Download this release

Release Info

Developer MailPoet
Plugin Icon 128x128 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 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.0\n"
6
  "Report-Msgid-Bugs-To: http://support.mailpoet.com/\n"
7
- "POT-Creation-Date: 2022-07-19 09:03:38+00:00\n"
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(255) 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,',
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.0
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.0',
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.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.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 ComposerAutoloaderInitc8e176d4be07ea3663e3792bf77cba92::getLoader();
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 ComposerAutoloaderInitc8e176d4be07ea3663e3792bf77cba92
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('ComposerAutoloaderInitc8e176d4be07ea3663e3792bf77cba92', 'loadClassLoader'), true, true);
20
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
21
- spl_autoload_unregister(array('ComposerAutoloaderInitc8e176d4be07ea3663e3792bf77cba92', 'loadClassLoader'));
22
  require __DIR__ . '/autoload_static.php';
23
- call_user_func(\Composer\Autoload\ComposerStaticInitc8e176d4be07ea3663e3792bf77cba92::getInitializer($loader));
24
  $loader->register(true);
25
- $includeFiles = \Composer\Autoload\ComposerStaticInitc8e176d4be07ea3663e3792bf77cba92::$files;
26
  foreach ($includeFiles as $fileIdentifier => $file) {
27
- composerRequirec8e176d4be07ea3663e3792bf77cba92($fileIdentifier, $file);
28
  }
29
  return $loader;
30
  }
31
  }
32
- function composerRequirec8e176d4be07ea3663e3792bf77cba92($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 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 ComposerStaticInitc8e176d4be07ea3663e3792bf77cba92
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 = ComposerStaticInitc8e176d4be07ea3663e3792bf77cba92::$prefixLengthsPsr4;
1375
- $loader->prefixDirsPsr4 = ComposerStaticInitc8e176d4be07ea3663e3792bf77cba92::$prefixDirsPsr4;
1376
- $loader->classMap = ComposerStaticInitc8e176d4be07ea3663e3792bf77cba92::$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' => '81207b0a2b746368462211fe1ef22464e27d7927',
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' => '81207b0a2b746368462211fe1ef22464e27d7927',
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(