Plugin Directory

Changeset 3333169


Ignore:
Timestamp:
07/23/2025 09:57:48 PM (8 months ago)
Author:
vasyltech
Message:

Official 7.0.8

Location:
advanced-access-manager
Files:
446 added
4 edited

Legend:

Unmodified
Added
Removed
  • advanced-access-manager/trunk/aam.php

    r3331817 r3333169  
    44 * Plugin Name: Advanced Access Manager
    55 * Description: Powerfully robust WordPress plugin designed to help you control every aspect of your website, your way.
    6  * Version: 7.0.7
     6 * Version: 7.0.8
    77 * Author: VasylTech LLC <support@aamplugin.com>
    88 * Author URI: https://aamportal.com
     
    4949        AAM_Service_SecurityAudit::class        => 'service.security_audit.enabled',
    5050        AAM_Service_Welcome::class              => 'service.welcome.enabled',
    51         AAM_Service_Policies::class             => 'service.policies.enabled',
    5251        AAM_Service_Hooks::class                => 'service.hooks.enabled',
    53         AAM_Service_Shortcodes::class           => 'service.shortcodes.enabled'
     52        AAM_Service_Shortcodes::class           => 'service.shortcodes.enabled',
     53        AAM_Service_Policies::class             => 'service.policies.enabled'
    5454    ];
    5555
     
    285285    define('AAM_MEDIA', plugins_url('/media', __FILE__));
    286286    define('AAM_KEY', 'advanced-access-manager');
    287     define('AAM_VERSION', '7.0.7');
     287    define('AAM_VERSION', '7.0.8');
    288288    define('AAM_BASEDIR', __DIR__);
    289289
  • advanced-access-manager/trunk/application/Addon/Repository.php

    r3315883 r3333169  
    3434     * @version 7.0.6
    3535     */
    36     const LATEST_PREMIUM_VERSION = '7.0.5';
     36    const LATEST_PREMIUM_VERSION = '7.0.6';
    3737
    3838    /**
  • advanced-access-manager/trunk/readme.txt

    r3331817 r3333169  
    55Requires PHP: 5.6.0
    66Tested up to: 6.8.1
    7 Stable tag: 7.0.7
     7Stable tag: 7.0.8
    88
    99Your WordPress security starts within — with AAM. Take control of your WordPress website and solve security gaps today.
     
    6060
    6161== Changelog ==
     62
     63= 7.0.8 =
     64* Changed: Move to PHP composer for vendor dependencies [https://github.com/aamplugin/advanced-access-manager/issues/480](https://github.com/aamplugin/advanced-access-manager/issues/480)
    6265
    6366= 7.0.7 =
  • advanced-access-manager/trunk/vendor/composer/platform_check.php

    r3331817 r3333169  
    55$issues = array();
    66
    7 if (!(PHP_VERSION_ID >= 80000)) {
    8     $issues[] = 'Your Composer dependencies require a PHP version ">= 8.0.0". You are running ' . PHP_VERSION . '.';
     7if (!(PHP_VERSION_ID >= 50306)) {
     8    $issues[] = 'Your Composer dependencies require a PHP version ">= 5.6.0". You are running ' . PHP_VERSION . '.';
    99}
    1010
Note: See TracChangeset for help on using the changeset viewer.