Version Description
02/September/2022 =
FIX: The user can't login if the user set forced logout and the site's timezone is different than UTC.
Download this release
Release Info
Developer | DavidAnderson |
Plugin | All In One WP Security & Firewall |
Version | 5.0.1 |
Comparing to | |
See all releases |
Code changes from version 5.0.0 to 5.0.1
- readme.txt +7 -3
- vendor/composer/installed.php +2 -2
- wp-security-core.php +1 -1
- wp-security.php +1 -1
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: security, secure, Anti Virus, antivirus, ban, ban hacker, virus, firewall,
|
|
5 |
Requires PHP: 5.6
|
6 |
Requires at least: 5.0
|
7 |
Tested up to: 6.0
|
8 |
-
Stable tag: 5.0.
|
9 |
License: GPLv3 or later
|
10 |
|
11 |
A comprehensive, user-friendly, all in one WordPress security and firewall plugin for your site.
|
@@ -182,7 +182,11 @@ None
|
|
182 |
|
183 |
== Changelog ==
|
184 |
|
185 |
-
= 5.0.
|
|
|
|
|
|
|
|
|
186 |
|
187 |
* FEATURE: Two-Factor Authentication (2FA) functionality & related settings.
|
188 |
* FEATURE: Set up a mechanism to load the firewall PHP file early.
|
@@ -1018,4 +1022,4 @@ those who want to enable the basic firewall but do not have "AllowOverride" opti
|
|
1018 |
|
1019 |
|
1020 |
== Upgrade Notice ==
|
1021 |
-
* 5.0.
|
5 |
Requires PHP: 5.6
|
6 |
Requires at least: 5.0
|
7 |
Tested up to: 6.0
|
8 |
+
Stable tag: 5.0.1
|
9 |
License: GPLv3 or later
|
10 |
|
11 |
A comprehensive, user-friendly, all in one WordPress security and firewall plugin for your site.
|
182 |
|
183 |
== Changelog ==
|
184 |
|
185 |
+
= 5.0.1 - 02/September/2022 =
|
186 |
+
|
187 |
+
* FIX: The user can't login if the user set forced logout and the site's timezone is different than UTC.
|
188 |
+
|
189 |
+
= 5.0.0 - 01/September/2022 =
|
190 |
|
191 |
* FEATURE: Two-Factor Authentication (2FA) functionality & related settings.
|
192 |
* FEATURE: Set up a mechanism to load the firewall PHP file early.
|
1022 |
|
1023 |
|
1024 |
== Upgrade Notice ==
|
1025 |
+
* 5.0.1: New features such as a PHP-based firewall, Two Factor Authentication, and WHOIS lookup have been added. It contains various fixes and tweaks. A recommended update for all.
|
vendor/composer/installed.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
'type' => 'project',
|
6 |
'install_path' => __DIR__ . '/../../',
|
7 |
'aliases' => array(),
|
8 |
-
'reference' => '
|
9 |
'name' => 'updraftplus/all-in-one-wp-security-and-firewall',
|
10 |
'dev' => false,
|
11 |
),
|
@@ -34,7 +34,7 @@
|
|
34 |
'type' => 'project',
|
35 |
'install_path' => __DIR__ . '/../../',
|
36 |
'aliases' => array(),
|
37 |
-
'reference' => '
|
38 |
'dev_requirement' => false,
|
39 |
),
|
40 |
),
|
5 |
'type' => 'project',
|
6 |
'install_path' => __DIR__ . '/../../',
|
7 |
'aliases' => array(),
|
8 |
+
'reference' => '62c45d03175fdcff55369ef3c690712e2c09b3df',
|
9 |
'name' => 'updraftplus/all-in-one-wp-security-and-firewall',
|
10 |
'dev' => false,
|
11 |
),
|
34 |
'type' => 'project',
|
35 |
'install_path' => __DIR__ . '/../../',
|
36 |
'aliases' => array(),
|
37 |
+
'reference' => '62c45d03175fdcff55369ef3c690712e2c09b3df',
|
38 |
'dev_requirement' => false,
|
39 |
),
|
40 |
),
|
wp-security-core.php
CHANGED
@@ -8,7 +8,7 @@ if (!class_exists('AIO_WP_Security')) {
|
|
8 |
|
9 |
class AIO_WP_Security {
|
10 |
|
11 |
-
public $version = '5.0.
|
12 |
|
13 |
public $db_version = '1.9.2';
|
14 |
|
8 |
|
9 |
class AIO_WP_Security {
|
10 |
|
11 |
+
public $version = '5.0.1';
|
12 |
|
13 |
public $db_version = '1.9.2';
|
14 |
|
wp-security.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
// @codingStandardsIgnoreStart
|
3 |
/*
|
4 |
Plugin Name: All In One WP Security
|
5 |
-
Version: 5.0.
|
6 |
Plugin URI: https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/
|
7 |
Update URI: https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/
|
8 |
Author: All In One WP Security & Firewall Team
|
2 |
// @codingStandardsIgnoreStart
|
3 |
/*
|
4 |
Plugin Name: All In One WP Security
|
5 |
+
Version: 5.0.1
|
6 |
Plugin URI: https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/
|
7 |
Update URI: https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/
|
8 |
Author: All In One WP Security & Firewall Team
|