Skip to content
This repository has been archived by the owner on Jan 30, 2025. It is now read-only.

Commit

Permalink
Merge pull request #1524 from bluehost/release/3.16.0
Browse files Browse the repository at this point in the history
Release 3.16.0
  • Loading branch information
circlecube authored Jan 22, 2025
2 parents 96dcee8 + 91ee276 commit 011303c
Show file tree
Hide file tree
Showing 23 changed files with 1,955 additions and 1,495 deletions.
4 changes: 2 additions & 2 deletions bluehost-wordpress-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Plugin URI: https://bluehost.com
* Update URI: https://github.com/bluehost/bluehost-wordpress-plugin
* Description: WordPress plugin that integrates a WordPress site with the Bluehost control panel, including performance, security, and update features.
* Version: 3.15.9
* Version: 3.16.0
* Requires at least: 6.5
* Requires PHP: 7.3
* Tested up to: 6.7.1
Expand All @@ -32,7 +32,7 @@
}

// Define constants
define( 'BLUEHOST_PLUGIN_VERSION', '3.15.9' );
define( 'BLUEHOST_PLUGIN_VERSION', '3.16.0' );
define( 'BLUEHOST_PLUGIN_FILE', __FILE__ );
define( 'BLUEHOST_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'BLUEHOST_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,26 +74,26 @@
"require": {
"newfold-labs/wp-module-activation": "^1.0.5",
"newfold-labs/wp-module-atomic": "^1.3.0",
"newfold-labs/wp-module-coming-soon": "^1.3.3",
"newfold-labs/wp-module-coming-soon": "^1.3.4",
"newfold-labs/wp-module-context": "^1.0.1",
"newfold-labs/wp-module-data": "^2.6.8",
"newfold-labs/wp-module-deactivation": "^1.3.0",
"newfold-labs/wp-module-ecommerce": "^1.4.6",
"newfold-labs/wp-module-facebook": "^1.0.9",
"newfold-labs/wp-module-ecommerce": "^1.5.1",
"newfold-labs/wp-module-facebook": "^1.1.1",
"newfold-labs/wp-module-features": "^1.4.2",
"newfold-labs/wp-module-global-ctb": "^1.0.13",
"newfold-labs/wp-module-global-ctb": "^1.0.14",
"newfold-labs/wp-module-help-center": "^2.2.3",
"newfold-labs/wp-module-installer": "^1.2.2",
"newfold-labs/wp-module-installer": "^1.3.0",
"newfold-labs/wp-module-loader": "^1.0.11",
"newfold-labs/wp-module-marketplace": "^2.4.0",
"newfold-labs/wp-module-marketplace": "^2.5.0",
"newfold-labs/wp-module-migration": "^1.0.12",
"newfold-labs/wp-module-notifications": "^1.6.6",
"newfold-labs/wp-module-onboarding": "^2.5.5",
"newfold-labs/wp-module-onboarding": "^2.5.6",
"newfold-labs/wp-module-onboarding-data": "^1.2.4",
"newfold-labs/wp-module-patterns": "^2.8.1",
"newfold-labs/wp-module-performance": "^2.2.0",
"newfold-labs/wp-module-performance": "^2.4.0",
"newfold-labs/wp-module-pls": "^1.0.1",
"newfold-labs/wp-module-runtime": "^1.0.12",
"newfold-labs/wp-module-runtime": "^1.1.3",
"newfold-labs/wp-module-secure-passwords": "^1.1.1",
"newfold-labs/wp-module-solutions": "^1.0.8",
"newfold-labs/wp-module-sso": "^1.0.7",
Expand Down
177 changes: 98 additions & 79 deletions composer.lock

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions inc/alt-experience/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ function () {
'manage_options',
'bluehost',
function () {
$version = BLUEHOST_PLUGIN_VERSION;
$version = BLUEHOST_PLUGIN_VERSION;
$asset_file = BLUEHOST_BUILD_DIR . '/index.asset.php';
if ( is_readable( $asset_file ) ) {
$asset = include_once $asset_file;
$asset = include_once $asset_file;
$version = $asset['version'];
}

Expand All @@ -29,3 +29,8 @@ function () {
);
}
);

$bust_mode_path = BLUEHOST_PLUGIN_DIR . 'vendor/newfold-labs/wp-module-performance/includes/BurstSafetyMode/init.php';
if ( file_exists( $bust_mode_path ) ) {
require_once $bust_mode_path;
}
Loading

0 comments on commit 011303c

Please sign in to comment.