Changeset 3296585
- Timestamp:
- 05/19/2025 03:12:30 PM (11 months ago)
- Location:
- restricted-site-access
- Files:
-
- 11 edited
- 1 copied
-
assets/blueprints/blueprint.json (modified) (1 diff)
-
tags/7.5.3 (copied) (copied from restricted-site-access/trunk)
-
tags/7.5.3/readme.txt (modified) (3 diffs)
-
tags/7.5.3/restricted_site_access.php (modified) (5 diffs)
-
tags/7.5.3/vendor/autoload.php (modified) (1 diff)
-
tags/7.5.3/vendor/composer/InstalledVersions.php (modified) (3 diffs)
-
tags/7.5.3/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/restricted_site_access.php (modified) (5 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/InstalledVersions.php (modified) (3 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
restricted-site-access/assets/blueprints/blueprint.json
r3235480 r3296585 33 33 ] 34 34 }, 35 "rsa_activation_version": "7.5. 2"35 "rsa_activation_version": "7.5.3" 36 36 } 37 37 } -
restricted-site-access/tags/7.5.3/readme.txt
r3280152 r3296585 3 3 Donate link: https://10up.com/plugins/restricted-site-access-wordpress/ 4 4 Tags: privacy, restrict, limited, permissions, security 5 Requires at least: 6.66 5 Tested up to: 6.8 7 Stable tag: 7.5. 26 Stable tag: 7.5.3 8 7 License: GPL-2.0-or-later 9 8 License URI: https://spdx.org/licenses/GPL-2.0-or-later.html … … 203 202 204 203 == Changelog == 204 205 = 7.5.3 - 2025-05-19 = 206 207 **Note that this version bumps the WordPress minimum supported version from 6.5 to 6.6.** 208 209 * **Changed:** Bump WordPress "tested up to" version 6.8 (props [@kmgalanakis](https://github.com/kmgalanakis), [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter) via [#349](https://github.com/10up/restricted-site-access/pull/349), [#352](https://github.com/10up/restricted-site-access/pull/352)). 210 * **Changed:** Bump WordPress minimum from 6.5 to 6.6 (props [@jeffpaul](https://github.com/jeffpaul) via [#351](https://github.com/10up/restricted-site-access/pull/351), [#352](https://github.com/10up/restricted-site-access/pull/352)). 211 * **Fixed:** PHP Notice that the function `_load_textdomain_just_in_time` was called incorrectly (props [@kmgalanakis](https://github.com/kmgalanakis), [@dkotter](https://github.com/dkotter) via [#350](https://github.com/10up/restricted-site-access/pull/350)). 212 * **Security:** Bump `axios` from 1.7.4 to 1.8.3 (props [@dependabot](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh) via [#346](https://github.com/10up/restricted-site-access/pull/346)). 205 213 206 214 = 7.5.2 - 2025-02-05 = … … 279 287 == Upgrade Notice == 280 288 289 = 7.5.3 = 290 **Note that this version bumps the WordPress minimum supported version from 6.5 to 6.6.** 291 281 292 = 7.5.2 = 282 293 This version bumps the WordPress minimum supported version from 6.4 to 6.5. -
restricted-site-access/tags/7.5.3/restricted_site_access.php
r3235480 r3296585 4 4 * Plugin URI: https://10up.com/plugins/restricted-site-access-wordpress/ 5 5 * Description: <strong>Limit access your site</strong> to visitors who are logged in or accessing the site from a set of specific IP addresses. Send restricted visitors to the log in page, redirect them, or display a message or page. <strong>Powerful control over redirection</strong>, including <strong>SEO friendly redirect headers</strong>. Great solution for Extranets, publicly hosted Intranets, or parallel development sites. 6 * Version: 7.5. 27 * Requires at least: 6. 56 * Version: 7.5.3 7 * Requires at least: 6.6 8 8 * Requires PHP: 7.4 9 9 * Author: 10up … … 58 58 } 59 59 60 define( 'RSA_VERSION', '7.5. 2' );60 define( 'RSA_VERSION', '7.5.3' ); 61 61 62 62 /** … … 113 113 $instance = new self(); 114 114 self::add_actions(); 115 self::populate_fields_array();116 115 } 117 116 … … 136 135 add_action( 'admin_init', array( __CLASS__, 'admin_init' ), 1 ); 137 136 add_action( 'init', array( __CLASS__, 'generate_nonce' ) ); 137 add_action( 'init', array( __CLASS__, 'populate_fields' ) ); 138 138 add_action( 'wp_ajax_rsa_ip_check', array( __CLASS__, 'ajax_rsa_ip_check' ) ); 139 139 … … 159 159 public static function generate_nonce() { 160 160 self::$redirection_nonce = wp_create_nonce( 'redirection_nonce' ); 161 } 162 163 /** 164 * Populates the fields array with the field information. 165 */ 166 public static function populate_fields() { 167 self::populate_fields_array(); 161 168 } 162 169 -
restricted-site-access/tags/7.5.3/vendor/autoload.php
r2995798 r3296585 15 15 } 16 16 } 17 trigger_error( 18 $err, 19 E_USER_ERROR 20 ); 17 throw new RuntimeException($err); 21 18 } 22 19 -
restricted-site-access/tags/7.5.3/vendor/composer/InstalledVersions.php
r3235480 r3296585 27 27 class InstalledVersions 28 28 { 29 /** 30 * @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to 31 * @internal 32 */ 33 private static $selfDir = null; 34 29 35 /** 30 36 * @var mixed[]|null … … 324 330 325 331 /** 332 * @return string 333 */ 334 private static function getSelfDir() 335 { 336 if (self::$selfDir === null) { 337 self::$selfDir = strtr(__DIR__, '\\', '/'); 338 } 339 340 return self::$selfDir; 341 } 342 343 /** 326 344 * @return array[] 327 345 * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> … … 337 355 338 356 if (self::$canGetVendors) { 339 $selfDir = s trtr(__DIR__, '\\', '/');357 $selfDir = self::getSelfDir(); 340 358 foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { 341 359 $vendorDir = strtr($vendorDir, '\\', '/'); -
restricted-site-access/tags/7.5.3/vendor/composer/installed.php
r3235480 r3296585 2 2 'root' => array( 3 3 'name' => '10up/restricted-site-access', 4 'pretty_version' => '7.5. 2',5 'version' => '7.5. 2.0',6 'reference' => ' a6d986596ea6be4f7c927f0dc22c577d864ff5f9',4 'pretty_version' => '7.5.3', 5 'version' => '7.5.3.0', 6 'reference' => '671e3e7de877cfb6f19a5c70065fa89e719e7367', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '10up/restricted-site-access' => array( 14 'pretty_version' => '7.5. 2',15 'version' => '7.5. 2.0',16 'reference' => ' a6d986596ea6be4f7c927f0dc22c577d864ff5f9',14 'pretty_version' => '7.5.3', 15 'version' => '7.5.3.0', 16 'reference' => '671e3e7de877cfb6f19a5c70065fa89e719e7367', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
restricted-site-access/trunk/readme.txt
r3280152 r3296585 3 3 Donate link: https://10up.com/plugins/restricted-site-access-wordpress/ 4 4 Tags: privacy, restrict, limited, permissions, security 5 Requires at least: 6.66 5 Tested up to: 6.8 7 Stable tag: 7.5. 26 Stable tag: 7.5.3 8 7 License: GPL-2.0-or-later 9 8 License URI: https://spdx.org/licenses/GPL-2.0-or-later.html … … 203 202 204 203 == Changelog == 204 205 = 7.5.3 - 2025-05-19 = 206 207 **Note that this version bumps the WordPress minimum supported version from 6.5 to 6.6.** 208 209 * **Changed:** Bump WordPress "tested up to" version 6.8 (props [@kmgalanakis](https://github.com/kmgalanakis), [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter) via [#349](https://github.com/10up/restricted-site-access/pull/349), [#352](https://github.com/10up/restricted-site-access/pull/352)). 210 * **Changed:** Bump WordPress minimum from 6.5 to 6.6 (props [@jeffpaul](https://github.com/jeffpaul) via [#351](https://github.com/10up/restricted-site-access/pull/351), [#352](https://github.com/10up/restricted-site-access/pull/352)). 211 * **Fixed:** PHP Notice that the function `_load_textdomain_just_in_time` was called incorrectly (props [@kmgalanakis](https://github.com/kmgalanakis), [@dkotter](https://github.com/dkotter) via [#350](https://github.com/10up/restricted-site-access/pull/350)). 212 * **Security:** Bump `axios` from 1.7.4 to 1.8.3 (props [@dependabot](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh) via [#346](https://github.com/10up/restricted-site-access/pull/346)). 205 213 206 214 = 7.5.2 - 2025-02-05 = … … 279 287 == Upgrade Notice == 280 288 289 = 7.5.3 = 290 **Note that this version bumps the WordPress minimum supported version from 6.5 to 6.6.** 291 281 292 = 7.5.2 = 282 293 This version bumps the WordPress minimum supported version from 6.4 to 6.5. -
restricted-site-access/trunk/restricted_site_access.php
r3235480 r3296585 4 4 * Plugin URI: https://10up.com/plugins/restricted-site-access-wordpress/ 5 5 * Description: <strong>Limit access your site</strong> to visitors who are logged in or accessing the site from a set of specific IP addresses. Send restricted visitors to the log in page, redirect them, or display a message or page. <strong>Powerful control over redirection</strong>, including <strong>SEO friendly redirect headers</strong>. Great solution for Extranets, publicly hosted Intranets, or parallel development sites. 6 * Version: 7.5. 27 * Requires at least: 6. 56 * Version: 7.5.3 7 * Requires at least: 6.6 8 8 * Requires PHP: 7.4 9 9 * Author: 10up … … 58 58 } 59 59 60 define( 'RSA_VERSION', '7.5. 2' );60 define( 'RSA_VERSION', '7.5.3' ); 61 61 62 62 /** … … 113 113 $instance = new self(); 114 114 self::add_actions(); 115 self::populate_fields_array();116 115 } 117 116 … … 136 135 add_action( 'admin_init', array( __CLASS__, 'admin_init' ), 1 ); 137 136 add_action( 'init', array( __CLASS__, 'generate_nonce' ) ); 137 add_action( 'init', array( __CLASS__, 'populate_fields' ) ); 138 138 add_action( 'wp_ajax_rsa_ip_check', array( __CLASS__, 'ajax_rsa_ip_check' ) ); 139 139 … … 159 159 public static function generate_nonce() { 160 160 self::$redirection_nonce = wp_create_nonce( 'redirection_nonce' ); 161 } 162 163 /** 164 * Populates the fields array with the field information. 165 */ 166 public static function populate_fields() { 167 self::populate_fields_array(); 161 168 } 162 169 -
restricted-site-access/trunk/vendor/autoload.php
r2995798 r3296585 15 15 } 16 16 } 17 trigger_error( 18 $err, 19 E_USER_ERROR 20 ); 17 throw new RuntimeException($err); 21 18 } 22 19 -
restricted-site-access/trunk/vendor/composer/InstalledVersions.php
r3235480 r3296585 27 27 class InstalledVersions 28 28 { 29 /** 30 * @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to 31 * @internal 32 */ 33 private static $selfDir = null; 34 29 35 /** 30 36 * @var mixed[]|null … … 324 330 325 331 /** 332 * @return string 333 */ 334 private static function getSelfDir() 335 { 336 if (self::$selfDir === null) { 337 self::$selfDir = strtr(__DIR__, '\\', '/'); 338 } 339 340 return self::$selfDir; 341 } 342 343 /** 326 344 * @return array[] 327 345 * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> … … 337 355 338 356 if (self::$canGetVendors) { 339 $selfDir = s trtr(__DIR__, '\\', '/');357 $selfDir = self::getSelfDir(); 340 358 foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { 341 359 $vendorDir = strtr($vendorDir, '\\', '/'); -
restricted-site-access/trunk/vendor/composer/installed.php
r3235480 r3296585 2 2 'root' => array( 3 3 'name' => '10up/restricted-site-access', 4 'pretty_version' => '7.5. 2',5 'version' => '7.5. 2.0',6 'reference' => ' a6d986596ea6be4f7c927f0dc22c577d864ff5f9',4 'pretty_version' => '7.5.3', 5 'version' => '7.5.3.0', 6 'reference' => '671e3e7de877cfb6f19a5c70065fa89e719e7367', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '10up/restricted-site-access' => array( 14 'pretty_version' => '7.5. 2',15 'version' => '7.5. 2.0',16 'reference' => ' a6d986596ea6be4f7c927f0dc22c577d864ff5f9',14 'pretty_version' => '7.5.3', 15 'version' => '7.5.3.0', 16 'reference' => '671e3e7de877cfb6f19a5c70065fa89e719e7367', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.