Plugin Directory

Changeset 3382784


Ignore:
Timestamp:
10/22/2025 04:21:21 PM (8 weeks ago)
Author:
bitmachina
Message:

Releasing version 3.2.8

Location:
ithemes-sync
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ithemes-sync/tags/3.2.8/history.txt

    r3331711 r3382784  
    2902903.2.7 - 2025-07-21 - Lisa Canini
    291291    Tweak: Update SolidWP logo
     2923.2.8 - 2025-10-21 - Lisa Canini
     293    New: Add filter to return Central IPs.
  • ithemes-sync/tags/3.2.8/init.php

    r3331711 r3382784  
    55 * Description: Maximize and amplify your admin with remote, multi-site management. One centralized dashboard to save time.
    66 * Author: SolidWP
    7  * Version: 3.2.7
     7 * Version: 3.2.8
    88 * Requires at least: 6.4
    99 * Requires PHP: 7.0
  • ithemes-sync/tags/3.2.8/load.php

    r3312793 r3382784  
    129129
    130130/**
    131  * Whitelist the Central Server IP addresses in Solid Security to prevent
    132  * Central from being blacklisted by a customer on their own site
    133  *
    134  * @param array<int,string> $white_ips The IPs to filter.
    135  *
    136  * @return array<int,string> The filtered Solid Security whitelisted IPs.
    137  */
    138 function ithemes_sync_itsec_white_ips( array $white_ips ): array {
    139     $white_ips[] = '69.167.144.237';
    140     $white_ips[] = '54.159.83.156';
    141     return $white_ips;
    142 }
    143 add_filter( 'itsec_white_ips', 'ithemes_sync_itsec_white_ips' );
     131 * Trust the Central Server IP addresses in Solid Security to allow
     132 * Central to perform requests to the customer's site
     133 *
     134 * @param array<int,string> $trusted_ips The IPs to filter.
     135 *
     136 * @return array<int,string> The filtered Solid Security trusted IPs.
     137 */
     138function solid_central_solid_security_trusted_ips( array $trusted_ips ): array {
     139    $trusted_ips[] = '207.246.254.118';
     140    $trusted_ips[] = '207.246.255.233';
     141    $trusted_ips[] = '207.246.255.133';
     142    return $trusted_ips;
     143}
     144add_filter( 'solid_security_trusted_ips', 'solid_central_solid_security_trusted_ips' );
    144145
    145146/**
  • ithemes-sync/tags/3.2.8/readme.txt

    r3331711 r3382784  
    55Requires PHP: 7.0
    66Tested up to: 6.8
    7 Stable tag: 3.2.7
     7Stable tag: 3.2.8
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
     
    131131== Changelog ==
    132132
     133= 3.2.8 =
     134* New: Add filter to return Central IPs.
     135
    133136= 3.2.7 =
    134137* Tweak: Update SolidWP logo
  • ithemes-sync/trunk/history.txt

    r3331711 r3382784  
    2902903.2.7 - 2025-07-21 - Lisa Canini
    291291    Tweak: Update SolidWP logo
     2923.2.8 - 2025-10-21 - Lisa Canini
     293    New: Add filter to return Central IPs.
  • ithemes-sync/trunk/init.php

    r3331711 r3382784  
    55 * Description: Maximize and amplify your admin with remote, multi-site management. One centralized dashboard to save time.
    66 * Author: SolidWP
    7  * Version: 3.2.7
     7 * Version: 3.2.8
    88 * Requires at least: 6.4
    99 * Requires PHP: 7.0
  • ithemes-sync/trunk/load.php

    r3312793 r3382784  
    129129
    130130/**
    131  * Whitelist the Central Server IP addresses in Solid Security to prevent
    132  * Central from being blacklisted by a customer on their own site
    133  *
    134  * @param array<int,string> $white_ips The IPs to filter.
    135  *
    136  * @return array<int,string> The filtered Solid Security whitelisted IPs.
    137  */
    138 function ithemes_sync_itsec_white_ips( array $white_ips ): array {
    139     $white_ips[] = '69.167.144.237';
    140     $white_ips[] = '54.159.83.156';
    141     return $white_ips;
    142 }
    143 add_filter( 'itsec_white_ips', 'ithemes_sync_itsec_white_ips' );
     131 * Trust the Central Server IP addresses in Solid Security to allow
     132 * Central to perform requests to the customer's site
     133 *
     134 * @param array<int,string> $trusted_ips The IPs to filter.
     135 *
     136 * @return array<int,string> The filtered Solid Security trusted IPs.
     137 */
     138function solid_central_solid_security_trusted_ips( array $trusted_ips ): array {
     139    $trusted_ips[] = '207.246.254.118';
     140    $trusted_ips[] = '207.246.255.233';
     141    $trusted_ips[] = '207.246.255.133';
     142    return $trusted_ips;
     143}
     144add_filter( 'solid_security_trusted_ips', 'solid_central_solid_security_trusted_ips' );
    144145
    145146/**
  • ithemes-sync/trunk/readme.txt

    r3331711 r3382784  
    55Requires PHP: 7.0
    66Tested up to: 6.8
    7 Stable tag: 3.2.7
     7Stable tag: 3.2.8
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
     
    131131== Changelog ==
    132132
     133= 3.2.8 =
     134* New: Add filter to return Central IPs.
     135
    133136= 3.2.7 =
    134137* Tweak: Update SolidWP logo
Note: See TracChangeset for help on using the changeset viewer.