Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.14.9 #1294

Merged
merged 25 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
85df4ef
NPM Dev(deps-dev): Bump @wordpress/env from 10.5.0 to 10.6.0
dependabot[bot] Sep 2, 2024
35e3cf8
NPM Dev(deps-dev): Bump @tailwindcss/forms from 0.5.7 to 0.5.8
dependabot[bot] Sep 2, 2024
e12d31b
NPM(deps): Bump @wordpress/icons from 10.5.0 to 10.6.0
dependabot[bot] Sep 2, 2024
e62b2c6
NPM(deps): Bump @wordpress/dom-ready from 4.5.0 to 4.6.0
dependabot[bot] Sep 2, 2024
5da5f14
ecommerce version 1.3.42
ramyakrishnai Sep 4, 2024
21fe234
Composer(deps): Bump newfold-labs/wp-module-patterns from 2.4.0 to 2.4.1
dependabot[bot] Sep 4, 2024
1e32735
Merge pull request #1291 from bluehost/dependabot/composer/develop/ne…
wpalani Sep 4, 2024
417ae63
Merge branch 'main' into develop
wpalani Sep 4, 2024
c6e712c
Merge branch 'develop' into update/ecommerce-version-1.3.42
wpalani Sep 4, 2024
62b30d2
Fix lock conflict
wpalani Sep 4, 2024
ec7c41b
update ecomm module version in lock file
wpalani Sep 4, 2024
aa123fe
Merge pull request #1289 from bluehost/update/ecommerce-version-1.3.42
wpalani Sep 4, 2024
7305c50
Merge pull request #1283 from bluehost/dependabot/npm_and_yarn/develo…
wpalani Sep 4, 2024
36bc086
Merge pull request #1284 from bluehost/dependabot/npm_and_yarn/develo…
wpalani Sep 4, 2024
e897330
Merge pull request #1285 from bluehost/dependabot/npm_and_yarn/develo…
wpalani Sep 4, 2024
c7e14ba
NPM Dev(deps-dev): Bump cypress from 13.13.3 to 13.14.2
dependabot[bot] Sep 4, 2024
6c1a58c
Merge pull request #1293 from bluehost/dependabot/npm_and_yarn/develo…
wpalani Sep 4, 2024
0bbd189
Merge pull request #1287 from bluehost/dependabot/npm_and_yarn/develo…
wpalani Sep 4, 2024
6f270c2
Update plugin version to 3.14.9
wpalani Sep 5, 2024
44bf4a5
Ecommerce version bump 1.3.43
aratidgr8 Sep 5, 2024
e1d997c
Merge pull request #1296 from bluehost/update/ecommerce-version-1.3.43
circlecube Sep 5, 2024
e314341
Re-add My Products module and components
wpalani Sep 5, 2024
0e8039d
Bump my products module to 1.0.4
wpalani Sep 5, 2024
db96364
Bump my products module to 1.0.5
wpalani Sep 7, 2024
7d05b7d
Add WP 6.6.2 support
wpalani Sep 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .wp-env.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"core": "WordPress/WordPress#tags/6.6.1",
"core": "WordPress/WordPress#tags/6.6.2",
"config": {
"WP_DEBUG": true,
"WP_DEBUG_LOG": true,
Expand Down
6 changes: 3 additions & 3 deletions bluehost-wordpress-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
* 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.14.8
* Version: 3.14.9
* Requires at least: 6.4
* Requires PHP: 7.3
* Tested up to: 6.6.1
* Tested up to: 6.6.2
* Author: Bluehost
* Author URI: https://bluehost.com
* Text Domain: wp-plugin-bluehost
Expand All @@ -32,7 +32,7 @@
}

// Define constants
define( 'BLUEHOST_PLUGIN_VERSION', '3.14.8' );
define( 'BLUEHOST_PLUGIN_VERSION', '3.14.9' );
define( 'BLUEHOST_PLUGIN_FILE', __FILE__ );
define( 'BLUEHOST_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'BLUEHOST_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,15 @@
"newfold-labs/wp-module-context": "^1.0.1",
"newfold-labs/wp-module-data": "^2.6.3",
"newfold-labs/wp-module-deactivation": "^1.2.3",
"newfold-labs/wp-module-ecommerce": "^1.3.41",
"newfold-labs/wp-module-ecommerce": "^1.3.43",
"newfold-labs/wp-module-facebook": "^1.0.9",
"newfold-labs/wp-module-features": "^1.4.2",
"newfold-labs/wp-module-global-ctb": "^1.0.13",
"newfold-labs/wp-module-help-center": "^2.1.0",
"newfold-labs/wp-module-loader": "^1.0.10",
"newfold-labs/wp-module-marketplace": "^2.4.0",
"newfold-labs/wp-module-migration": "^1.0.11",
"newfold-labs/wp-module-my-products": "^1.0.5",
"newfold-labs/wp-module-notifications": "^1.5.0",
"newfold-labs/wp-module-onboarding": "^2.3.11",
"newfold-labs/wp-module-patterns": "^2.4.1",
Expand Down
112 changes: 86 additions & 26 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading