Plugin Directory

Changeset 3374321


Ignore:
Timestamp:
10/07/2025 11:28:12 AM (2 months ago)
Author:
domainsupport
Message:

Tagging version 1.8.4

Location:
deny-all-firewall
Files:
1 deleted
2 edited
8 copied

Legend:

Unmodified
Added
Removed
  • deny-all-firewall/tags/1.8.4/deny-all-firewall.php

    r3282854 r3374321  
    22/*
    33 * Plugin Name: Deny All Firewall
    4  * Version: 1.8.3
     4 * Version: 1.8.4
    55 * Plugin URI: https://webd.uk/support/
    66 * Description: Blocks access to everything except genuine site content using .htaccess
     
    2222    class daf_class {
    2323
    24         public static $version = '1.8.3';
     24        public static $version = '1.8.4';
    2525
    2626        private $black_list;
     
    13391339            }
    13401340
     1341            if (
     1342                class_exists('WooCommerce') &&
     1343                !in_array('/.well-known/apple-developer-merchantid-domain-association', $whitelisted_requests, true) &&
     1344                file_exists($_SERVER['DOCUMENT_ROOT'] . '/.well-known/apple-developer-merchantid-domain-association')
     1345            ) {
     1346
     1347                $whitelisted_requests[] = '/.well-known/apple-developer-merchantid-domain-association';
     1348
     1349            }
     1350
    13411351            $all_post_types = get_post_types(array('exclude_from_search' => false));
    13421352
  • deny-all-firewall/tags/1.8.4/readme.txt

    r3282854 r3374321  
    44Tags: htaccess, firewall, deny from all, green, carbon footprint
    55Requires at least: 4.7.0
    6 Tested up to: 6.8
     6Tested up to: 6.8.3
    77Requires PHP: 5.6
    8 Stable tag: 1.8.3
     8Stable tag: 1.8.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5050
    5151== Changelog ==
     52
     53= 1.8.4 =
     54* Added automatic whitelisting of Apple Pay verification file if WooCommerce is installed and the file is present
    5255
    5356= 1.8.3 =
     
    330333== Upgrade Notice ==
    331334
    332 = 1.8.3 =
    333 * Added an additional warning when lock down and logging are enabled at the same time
     335= 1.8.4 =
     336* Added automatic whitelisting of Apple Pay verification file if WooCommerce is installed and the file is present
  • deny-all-firewall/trunk/deny-all-firewall.php

    r3282854 r3374321  
    22/*
    33 * Plugin Name: Deny All Firewall
    4  * Version: 1.8.3
     4 * Version: 1.8.4
    55 * Plugin URI: https://webd.uk/support/
    66 * Description: Blocks access to everything except genuine site content using .htaccess
     
    2222    class daf_class {
    2323
    24         public static $version = '1.8.3';
     24        public static $version = '1.8.4';
    2525
    2626        private $black_list;
     
    13391339            }
    13401340
     1341            if (
     1342                class_exists('WooCommerce') &&
     1343                !in_array('/.well-known/apple-developer-merchantid-domain-association', $whitelisted_requests, true) &&
     1344                file_exists($_SERVER['DOCUMENT_ROOT'] . '/.well-known/apple-developer-merchantid-domain-association')
     1345            ) {
     1346
     1347                $whitelisted_requests[] = '/.well-known/apple-developer-merchantid-domain-association';
     1348
     1349            }
     1350
    13411351            $all_post_types = get_post_types(array('exclude_from_search' => false));
    13421352
  • deny-all-firewall/trunk/readme.txt

    r3282854 r3374321  
    44Tags: htaccess, firewall, deny from all, green, carbon footprint
    55Requires at least: 4.7.0
    6 Tested up to: 6.8
     6Tested up to: 6.8.3
    77Requires PHP: 5.6
    8 Stable tag: 1.8.3
     8Stable tag: 1.8.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5050
    5151== Changelog ==
     52
     53= 1.8.4 =
     54* Added automatic whitelisting of Apple Pay verification file if WooCommerce is installed and the file is present
    5255
    5356= 1.8.3 =
     
    330333== Upgrade Notice ==
    331334
    332 = 1.8.3 =
    333 * Added an additional warning when lock down and logging are enabled at the same time
     335= 1.8.4 =
     336* Added automatic whitelisting of Apple Pay verification file if WooCommerce is installed and the file is present
Note: See TracChangeset for help on using the changeset viewer.