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

Commit 011303c

Browse files
authored
Merge pull request #1524 from bluehost/release/3.16.0
Release 3.16.0
2 parents 96dcee8 + 91ee276 commit 011303c

File tree

23 files changed

+1955
-1495
lines changed

23 files changed

+1955
-1495
lines changed

bluehost-wordpress-plugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Plugin URI: https://bluehost.com
1313
* Update URI: https://github.com/bluehost/bluehost-wordpress-plugin
1414
* Description: WordPress plugin that integrates a WordPress site with the Bluehost control panel, including performance, security, and update features.
15-
* Version: 3.15.9
15+
* Version: 3.16.0
1616
* Requires at least: 6.5
1717
* Requires PHP: 7.3
1818
* Tested up to: 6.7.1
@@ -32,7 +32,7 @@
3232
}
3333

3434
// Define constants
35-
define( 'BLUEHOST_PLUGIN_VERSION', '3.15.9' );
35+
define( 'BLUEHOST_PLUGIN_VERSION', '3.16.0' );
3636
define( 'BLUEHOST_PLUGIN_FILE', __FILE__ );
3737
define( 'BLUEHOST_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
3838
define( 'BLUEHOST_PLUGIN_URL', plugin_dir_url( __FILE__ ) );

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -74,26 +74,26 @@
7474
"require": {
7575
"newfold-labs/wp-module-activation": "^1.0.5",
7676
"newfold-labs/wp-module-atomic": "^1.3.0",
77-
"newfold-labs/wp-module-coming-soon": "^1.3.3",
77+
"newfold-labs/wp-module-coming-soon": "^1.3.4",
7878
"newfold-labs/wp-module-context": "^1.0.1",
7979
"newfold-labs/wp-module-data": "^2.6.8",
8080
"newfold-labs/wp-module-deactivation": "^1.3.0",
81-
"newfold-labs/wp-module-ecommerce": "^1.4.6",
82-
"newfold-labs/wp-module-facebook": "^1.0.9",
81+
"newfold-labs/wp-module-ecommerce": "^1.5.1",
82+
"newfold-labs/wp-module-facebook": "^1.1.1",
8383
"newfold-labs/wp-module-features": "^1.4.2",
84-
"newfold-labs/wp-module-global-ctb": "^1.0.13",
84+
"newfold-labs/wp-module-global-ctb": "^1.0.14",
8585
"newfold-labs/wp-module-help-center": "^2.2.3",
86-
"newfold-labs/wp-module-installer": "^1.2.2",
86+
"newfold-labs/wp-module-installer": "^1.3.0",
8787
"newfold-labs/wp-module-loader": "^1.0.11",
88-
"newfold-labs/wp-module-marketplace": "^2.4.0",
88+
"newfold-labs/wp-module-marketplace": "^2.5.0",
8989
"newfold-labs/wp-module-migration": "^1.0.12",
9090
"newfold-labs/wp-module-notifications": "^1.6.6",
91-
"newfold-labs/wp-module-onboarding": "^2.5.5",
91+
"newfold-labs/wp-module-onboarding": "^2.5.6",
9292
"newfold-labs/wp-module-onboarding-data": "^1.2.4",
9393
"newfold-labs/wp-module-patterns": "^2.8.1",
94-
"newfold-labs/wp-module-performance": "^2.2.0",
94+
"newfold-labs/wp-module-performance": "^2.4.0",
9595
"newfold-labs/wp-module-pls": "^1.0.1",
96-
"newfold-labs/wp-module-runtime": "^1.0.12",
96+
"newfold-labs/wp-module-runtime": "^1.1.3",
9797
"newfold-labs/wp-module-secure-passwords": "^1.1.1",
9898
"newfold-labs/wp-module-solutions": "^1.0.8",
9999
"newfold-labs/wp-module-sso": "^1.0.7",

composer.lock

Lines changed: 98 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inc/alt-experience/init.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ function () {
88
'manage_options',
99
'bluehost',
1010
function () {
11-
$version = BLUEHOST_PLUGIN_VERSION;
11+
$version = BLUEHOST_PLUGIN_VERSION;
1212
$asset_file = BLUEHOST_BUILD_DIR . '/index.asset.php';
1313
if ( is_readable( $asset_file ) ) {
14-
$asset = include_once $asset_file;
14+
$asset = include_once $asset_file;
1515
$version = $asset['version'];
1616
}
1717

@@ -29,3 +29,8 @@ function () {
2929
);
3030
}
3131
);
32+
33+
$bust_mode_path = BLUEHOST_PLUGIN_DIR . 'vendor/newfold-labs/wp-module-performance/includes/BurstSafetyMode/init.php';
34+
if ( file_exists( $bust_mode_path ) ) {
35+
require_once $bust_mode_path;
36+
}

0 commit comments

Comments
 (0)