Skip to content

Commit

Permalink
Merge pull request #1094 from bluehost/release/3.11.0
Browse files Browse the repository at this point in the history
Release/3.11.0
  • Loading branch information
circlecube authored Jun 5, 2024
2 parents 7dc8fdd + 8fea1c8 commit ae8cddc
Show file tree
Hide file tree
Showing 21 changed files with 1,339 additions and 576 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/upload-asset-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
--data '{"files":["https://hiive.cloud/workers/release-api/plugins/bluehost/bluehost-wordpress-plugin"]}'
- name: Send message to ms teams
uses: dhollerbach/actions.send-message-to-ms-teams@1.0.10
uses: dhollerbach/actions.send-message-to-ms-teams@v3
with:
webhook: '${{ secrets.TEAMS_WEBHOOK_URL }}'
message: "Bluehost plugin version ${{ env.VERSION }} has been released!"
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.10.2
* Version: 3.11.0
* Requires at least: 6.0
* Requires PHP: 7.1
* Tested up to: 6.5.3
Expand All @@ -32,7 +32,7 @@
}

// Define constants
define( 'BLUEHOST_PLUGIN_VERSION', '3.10.2' );
define( 'BLUEHOST_PLUGIN_VERSION', '3.11.0' );
define( 'BLUEHOST_PLUGIN_FILE', __FILE__ );
define( 'BLUEHOST_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'BLUEHOST_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Expand Down
4 changes: 4 additions & 0 deletions bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
use NewfoldLabs\WP\ModuleLoader\Container;
use NewfoldLabs\WP\ModuleLoader\Plugin;
use NewfoldLabs\WP\Context\Context;
use NewfoldLabs\WP\Module\Features\Features;
use function NewfoldLabs\WP\ModuleLoader\container as setContainer;
use function NewfoldLabs\WP\Context\setContext;
use function NewfoldLabs\WP\Context\getContext;
Expand Down Expand Up @@ -199,3 +200,6 @@ function () {
if ( is_admin() ) {
new Admin();
}

// Instantiate the Features singleton
Features::getInstance();
25 changes: 14 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,27 +70,30 @@
"roave/security-advisories": "dev-latest",
"newfold-labs/wp-php-standards": "^1.2.3",
"wp-cli/i18n-command": "^2.6.1",
"wp-phpunit/wp-phpunit": "^6.5.2"
"wp-phpunit/wp-phpunit": "^6.5.3"
},
"require": {
"newfold-labs/wp-module-activation": "^1.0.2",
"newfold-labs/wp-module-coming-soon": "^1.2.3",
"newfold-labs/wp-module-context": "^1.0.0",
"newfold-labs/wp-module-data": "^2.5.0",
"newfold-labs/wp-module-atomic": "^1.3.0",
"newfold-labs/wp-module-coming-soon": "^1.2.4",
"newfold-labs/wp-module-context": "^1.0.1",
"newfold-labs/wp-module-data": "^2.5.2",
"newfold-labs/wp-module-deactivation": "^1.1.2",
"newfold-labs/wp-module-ecommerce": "^1.3.30",
"newfold-labs/wp-module-global-ctb": "^1.0.11",
"newfold-labs/wp-module-help-center": "^1.0.25",
"newfold-labs/wp-module-ecommerce": "^1.3.31",
"newfold-labs/wp-module-facebook": "1.0.7",
"newfold-labs/wp-module-features": "^1.4.1",
"newfold-labs/wp-module-global-ctb": "^1.0.12",
"newfold-labs/wp-module-help-center": "^2.0.0",
"newfold-labs/wp-module-loader": "^1.0.10",
"newfold-labs/wp-module-marketplace": "^2.2.4",
"newfold-labs/wp-module-notifications": "^1.3.0",
"newfold-labs/wp-module-onboarding": "^2.3.1",
"newfold-labs/wp-module-patterns": "^1.0.0",
"newfold-labs/wp-module-performance": "^1.4.1",
"newfold-labs/wp-module-onboarding": "^2.3.2",
"newfold-labs/wp-module-patterns": "2.0.0 as 1.9.9",
"newfold-labs/wp-module-performance": "2.0.0 as 1.9.9",
"newfold-labs/wp-module-runtime": "^1.0.11",
"newfold-labs/wp-module-secure-passwords": "^1.1.1",
"newfold-labs/wp-module-sso": "^1.0.5",
"newfold-labs/wp-module-staging": "^1.3.3",
"newfold-labs/wp-module-staging": "^2.0.0",
"wp-forge/wp-update-handler": "^1.0.2",
"wp-forge/wp-upgrade-handler": "^1.0"
}
Expand Down
Loading

0 comments on commit ae8cddc

Please sign in to comment.