From 3c88bf3c0a004fbe9af474be65ecfbb896a3f0f0 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Thu, 29 Feb 2024 13:32:21 -0500 Subject: [PATCH 01/14] fix plugin slug in action links filter --- inc/Admin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/Admin.php b/inc/Admin.php index 14b4fb797..4cece537e 100644 --- a/inc/Admin.php +++ b/inc/Admin.php @@ -25,7 +25,7 @@ public function __construct() { /* Load i18 files */ \add_action( 'init', array( __CLASS__, 'load_text_domain' ), 100 ); /* Add Links to WordPress Plugins list item. */ - \add_filter( 'plugin_action_links_wp-plugin-bluehost/wp-plugin-bluehost.php', array( __CLASS__, 'actions' ) ); + \add_filter( 'plugin_action_links_bluehost-wordpress-plugin/bluehost-wordpress-plugin.php', array( __CLASS__, 'actions' ) ); /* Add inline style to hide subnav link */ \add_action( 'admin_head', array( __CLASS__, 'admin_nav_style' ) ); From 7d8868fd38e90505b363c78288aa9b9bafe13d02 Mon Sep 17 00:00:00 2001 From: Brian Henry Date: Thu, 29 Feb 2024 11:00:57 -0800 Subject: [PATCH 02/14] Determine basename from `BLUEHOST_PLUGIN_FILE` --- inc/Admin.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/inc/Admin.php b/inc/Admin.php index 4cece537e..264e80231 100644 --- a/inc/Admin.php +++ b/inc/Admin.php @@ -25,7 +25,10 @@ public function __construct() { /* Load i18 files */ \add_action( 'init', array( __CLASS__, 'load_text_domain' ), 100 ); /* Add Links to WordPress Plugins list item. */ - \add_filter( 'plugin_action_links_bluehost-wordpress-plugin/bluehost-wordpress-plugin.php', array( __CLASS__, 'actions' ) ); + $plugin_basename = defined( 'BLUEHOST_PLUGIN_FILE' ) + ? plugin_basename( constant( 'BLUEHOST_PLUGIN_FILE' ) ) + : 'bluehost-wordpress-plugin/bluehost-wordpress-plugin.php'; + \add_filter( "plugin_action_links_{$plugin_basename}", array( __CLASS__, 'actions' ) ); /* Add inline style to hide subnav link */ \add_action( 'admin_head', array( __CLASS__, 'admin_nav_style' ) ); From c0e377cd5e970c655c934b10ac141f4fa9070be5 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Thu, 29 Feb 2024 15:06:15 -0500 Subject: [PATCH 03/14] update coming soon module to 1.2.3 fixes conflict with wonder blocks button and greedy styles in coming soon --- composer.json | 2 +- composer.lock | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index 7b036ab1b..a1a735c03 100644 --- a/composer.json +++ b/composer.json @@ -66,7 +66,7 @@ "wp-phpunit/wp-phpunit": "^6.4.2" }, "require": { - "newfold-labs/wp-module-coming-soon": "^1.2.2", + "newfold-labs/wp-module-coming-soon": "^1.2.3", "newfold-labs/wp-module-context": "^1.0.0", "newfold-labs/wp-module-data": "^2.4.18", "newfold-labs/wp-module-deactivation": "^1.0.5", diff --git a/composer.lock b/composer.lock index 649a5fcb6..98499c735 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "77c0c99ec0c409012051277c3afb0d49", + "content-hash": "2eb4f89f0b60e588e6795b507a4495d9", "packages": [ { "name": "doctrine/inflector", @@ -237,16 +237,16 @@ }, { "name": "newfold-labs/wp-module-coming-soon", - "version": "1.2.2", + "version": "1.2.3", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-coming-soon.git", - "reference": "66333ea1f64bb189e57edd83b5c0047d3ce5ef66" + "reference": "335bfe833ebdc072de55ed54cd6eebe0a210e43f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-coming-soon/zipball/66333ea1f64bb189e57edd83b5c0047d3ce5ef66", - "reference": "66333ea1f64bb189e57edd83b5c0047d3ce5ef66", + "url": "https://api.github.com/repos/newfold-labs/wp-module-coming-soon/zipball/335bfe833ebdc072de55ed54cd6eebe0a210e43f", + "reference": "335bfe833ebdc072de55ed54cd6eebe0a210e43f", "shasum": "" }, "require": { @@ -284,10 +284,10 @@ ], "description": "Coming Soon module for WordPress sites.", "support": { - "source": "https://github.com/newfold-labs/wp-module-coming-soon/tree/1.2.2", + "source": "https://github.com/newfold-labs/wp-module-coming-soon/tree/1.2.3", "issues": "https://github.com/newfold-labs/wp-module-coming-soon/issues" }, - "time": "2024-02-28T23:07:18+00:00" + "time": "2024-02-29T19:54:02+00:00" }, { "name": "newfold-labs/wp-module-context", From 1688a172cf30261637c2ddcf439bf5025d8c8aec Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Thu, 29 Feb 2024 16:30:30 -0500 Subject: [PATCH 04/14] fix some issues reported by lint --- assets/styles/coming-soon.css | 404 ++++++++++++++-------------- package.json | 13 +- src/app/components/app-nav/index.js | 27 +- src/app/data/routes.js | 27 +- 4 files changed, 241 insertions(+), 230 deletions(-) diff --git a/assets/styles/coming-soon.css b/assets/styles/coming-soon.css index b9b961959..69d0a3d3a 100644 --- a/assets/styles/coming-soon.css +++ b/assets/styles/coming-soon.css @@ -1,314 +1,314 @@ body { - background-color: #fff; - background-image: url('../images/cs-bluehost-bg.jpg'); - background-position: top right; - background-repeat: no-repeat; - font-family: "Open Sans", sans-serif; - overflow-x: hidden; - display: flex; - flex-direction: column; - min-height: 100vh; + background-color: #fff; + background-image: url(../images/cs-bluehost-bg.jpg); + background-position: top right; + background-repeat: no-repeat; + font-family: "Open Sans", sans-serif; + overflow-x: hidden; + display: flex; + flex-direction: column; + min-height: 100vh; } * { - box-sizing: border-box; - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; + box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; } input { - font-family: "Open Sans", sans-serif; + font-family: "Open Sans", sans-serif; } ::-webkit-input-placeholder { - color: #9DAFBD; + color: #9dafbd; } ::-moz-placeholder { - color: #9DAFBD; + color: #9dafbd; } :-ms-input-placeholder { - color: #9DAFBD; + color: #9dafbd; } :-moz-placeholder { - color: #9DAFBD; + color: #9dafbd; } #wrap { - max-width: 560px; - width: 100%; - margin: 320px auto auto; - color: #444; - text-align: center; - min-height: auto !important; + max-width: 560px; + width: 100%; + margin: 320px auto auto; + color: #444; + text-align: center; + min-height: auto !important; } #wrap .content { - background: rgba(215, 223, 236, .5); - padding-bottom: 2rem; - border-radius: 4px; + background: rgba(215, 223, 236, 0.5); + padding-bottom: 2rem; + border-radius: 4px; } #wrap h1 { - color: #111; - font-weight: 300; - font-size: 28px; + color: #111; + font-weight: 300; + font-size: 28px; } #wrap h2 { - color: #111; - font-weight: 300; - font-size: 38px; + color: #111; + font-weight: 300; + font-size: 38px; } #wrap p { - color: #111; - line-height: 1.5; + color: #111; + line-height: 1.5; } footer { - background-color: #fff; - width: 100%; - color: #666; - position:initial; + background-color: #fff; + width: 100%; + color: #666; + position: initial; } footer p { - font-size: 14px; - line-height: 22px; - color: #333; - padding: 8px; - text-align: center; + font-size: 14px; + line-height: 22px; + color: #333; + padding: 8px; + text-align: center; } footer p a { - color: #1555b3; - text-decoration: underline; + color: #1555b3; + text-decoration: underline; } footer p a:hover { - text-decoration: underline; + text-decoration: underline; } .btn { - display: inline-block; - font-weight: 400; - text-align: center; - vertical-align: middle; - -ms-touch-action: manipulation; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - white-space: nowrap; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - padding: 8px 16px; - font-size: 14px; - line-height: 1.5; - border: 1px solid #2e66ba; - background: #1555b3; - color: #fff; - box-shadow: none; - border-radius: 3px; - text-decoration: none; - margin-top: 25px; + display: inline-block; + font-weight: 400; + text-align: center; + vertical-align: middle; + -ms-touch-action: manipulation; + touch-action: manipulation; + cursor: pointer; + background-image: none; + white-space: nowrap; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + padding: 8px 16px; + font-size: 14px; + line-height: 1.5; + border: 1px solid #2e66ba; + background-color: #1555b3; + color: #fff; + box-shadow: none; + border-radius: 3px; + text-decoration: none; + margin-top: 25px; } .btn:hover { - border: 1px solid #2e66ba; - background-color: #fff; - color: #2e66ba; + border: 1px solid #2e66ba; + background-color: #fff; + color: #2e66ba; } -.subscription_widget { +.comingsoon_links { + font-size: 13px; +} + +.comingsoon_links a { + text-decoration: none; + line-height: 18px; + color: #1555b3; } .subscription_widget h2 { - color: #5B5B5B; - font-size: 38px; - letter-spacing: -1px; - line-height: 54px; - margin-bottom: 10px; + color: #5b5b5b; + font-size: 38px; + letter-spacing: -1px; + line-height: 54px; + margin-bottom: 10px; } .subscription_widget #subscribe-text p { - color: #5B5B5B; - font-size: 16px; - letter-spacing: 0; - line-height: 24px; - margin-bottom: 25px; + color: #5b5b5b; + font-size: 16px; + letter-spacing: 0; + line-height: 24px; + margin-bottom: 25px; } .subscription_widget #success, .subscription_widget #error { - border-radius: 4px; - font-size: 14px; - line-height: 24px; - color: #5B5B5B; - margin-bottom: 25px; - display: none; - padding: 8px 40px; + border-radius: 4px; + font-size: 14px; + line-height: 24px; + color: #5b5b5b; + margin-bottom: 25px; + display: none; + padding: 8px 40px; } .subscription_widget #success { - background: #CCE9D0; - border: 1px solid #009013; + background: #cce9d0; + border: 1px solid #009013; } .subscription_widget #error { - background: #FFEAE9; - border: 1px solid #F72F26; + background: #ffeae9; + border: 1px solid #f72f26; } .subscription_widget form .inputs { - display: inline-block; - position: relative; - vertical-align: middle; - margin-bottom: 10px; - -webkit-transition: all 0.1s ease-in-out; - -moz-transition: all 0.1s ease-in-out; - -o-transition: all 0.1s ease-in-out; - transition: all 0.1s ease-in-out; + display: inline-block; + position: relative; + vertical-align: middle; + margin-bottom: 10px; + -webkit-transition: all 0.1s ease-in-out; + -moz-transition: all 0.1s ease-in-out; + -o-transition: all 0.1s ease-in-out; + transition: all 0.1s ease-in-out; } .subscription_widget form .inputs.active { - -webkit-transition: all 0.1s ease-in-out; - -moz-transition: all 0.1s ease-in-out; - -o-transition: all 0.1s ease-in-out; - transition: all 0.1s ease-in-out; + -webkit-transition: all 0.1s ease-in-out; + -moz-transition: all 0.1s ease-in-out; + -o-transition: all 0.1s ease-in-out; + transition: all 0.1s ease-in-out; } .subscription_widget form .inputs.email.active #subscribe-label { - color: #5B5B5B; - clip: auto !important; - height: auto !important; - position: absolute !important; - overflow: visible !important; - width: auto !important; - left: 16px; - font-size: 11px; - top: 2px; + color: #5b5b5b; + clip: auto !important; + height: auto !important; + position: absolute !important; + overflow: visible !important; + width: auto !important; + left: 16px; + font-size: 11px; + top: 2px; } .subscription_widget form .inputs.email input[type="email"] { - background-color: #fff; - background-image: url('images/icon-email.svg'); - background-position: 10px center; - background-repeat: no-repeat; - border: 1px solid #5B5B5B; - border-radius: 3px; - color: #5B5B5B; - font-size: 13.5px; - margin-top: 5px; - margin-right: 6px; - min-width: 300px; - padding: 14px 15px 14px 45px; - max-height: 45px; - -webkit-transition: all 0.05s ease-in-out; - -moz-transition: all 0.05s ease-in-out; - -o-transition: all 0.05s ease-in-out; - transition: all 0.05s ease-in-out; + background-color: #fff; + background-image: url(images/icon-email.svg); + background-position: 10px center; + background-repeat: no-repeat; + border: 1px solid #5b5b5b; + border-radius: 3px; + color: #5b5b5b; + font-size: 13.5px; + margin-top: 5px; + margin-right: 6px; + min-width: 300px; + padding: 14px 15px 14px 45px; + max-height: 45px; + -webkit-transition: all 0.05s ease-in-out; + -moz-transition: all 0.05s ease-in-out; + -o-transition: all 0.05s ease-in-out; + transition: all 0.05s ease-in-out; } .subscription_widget form .inputs.email.active input[type="email"] { - background-image: none; - font-size: 14px; - padding: 16px 15px 12px 15px; - max-height: 45px; + background-image: none; + font-size: 14px; + padding: 16px 15px 12px 15px; + max-height: 45px; } .subscription_widget form .inputs.submit input[type="submit"] { - background-color: #3575D3; - border: none; - border-radius: 4px; - color: #fff; - font-size: 14px; - font-weight: 600; - line-height: 13px; - margin: 0; - padding: 15px 30px; - border: 1px solid #3575D3; - -webkit-transition: all 0.1s ease-in-out; - -moz-transition: all 0.1s ease-in-out; - -o-transition: all 0.1s ease-in-out; - transition: all 0.1s ease-in-out; + background-color: #3575d3; + border-radius: 4px; + color: #fff; + font-size: 14px; + font-weight: 600; + line-height: 13px; + margin: 0; + padding: 15px 30px; + border: 1px solid #3575d3; + -webkit-transition: all 0.1s ease-in-out; + -moz-transition: all 0.1s ease-in-out; + -o-transition: all 0.1s ease-in-out; + transition: all 0.1s ease-in-out; } .subscription_widget form .inputs.submit input[type="submit"]:hover { - background-color: #5B5B5B; - border-color: #5B5B5B; - -webkit-transition: all 0.1s ease-in-out; - -moz-transition: all 0.1s ease-in-out; - -o-transition: all 0.1s ease-in-out; - transition: all 0.1s ease-in-out; + background-color: #5b5b5b; + border-color: #5b5b5b; + -webkit-transition: all 0.1s ease-in-out; + -moz-transition: all 0.1s ease-in-out; + -o-transition: all 0.1s ease-in-out; + transition: all 0.1s ease-in-out; } @media (min-width: 1920px) { - body { - background-position-x: center; - } + + body { + background-position-x: center; + } } @media (max-width: 1024px) { - #wrap { - margin: 240px auto auto; - } + + #wrap { + margin: 240px auto auto; + } } @media (max-width: 960px) { - #wrap { - margin: 120px auto auto; - } + + #wrap { + margin: 120px auto auto; + } } @media (max-width: 640px) { - #wrap { - margin: 60px auto auto; - max-width: 100%; - color: #444; - padding: 0 20px; - } - .content { - padding: 20px; - } + #wrap { + margin: 60px auto auto; + max-width: 100%; + color: #444; + padding: 0 20px; + } + + .content { + padding: 20px; + } - .btn { - margin-top: 10px; - } + .btn { + margin-top: 10px; + } - .subscription_widget form .inputs, - .subscription_widget form .inputs.email input[type="email"], - .subscription_widget form .inputs.submit input[type="submit"] { - width: 100%; - } + .subscription_widget form .inputs, + .subscription_widget form .inputs.email input[type="email"], + .subscription_widget form .inputs.submit input[type="submit"] { + width: 100%; + } - .subscription_widget form .inputs.email input[type="email"] { - min-width: 0; - } + .subscription_widget form .inputs.email input[type="email"] { + min-width: 0; + } } @media (max-width: 360px) { - #wrap h1 { - font-size: 26px; - } - .btn { - margin-top: 40px; - } -} + #wrap h1 { + font-size: 26px; + } -.comingsoon_links { - font-size:13px; - } - -.comingsoon_links a { - text-decoration: none; - line-height: 18px; - color: #1555b3; -} \ No newline at end of file + .btn { + margin-top: 40px; + } +} diff --git a/package.json b/package.json index a3eac23b3..db799d59b 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,18 @@ { + "name": "bluehost-wordpress-plugin", + "version": "3.9.0", "description": "WordPress plugin that integrates your WordPress site with the Bluehost control panel, including performance, security, and update features.", + "author": { + "name": "Bluehost", + "homepage": "https://bluehost.com" + }, "license": "GPL-2.0-or-later", - "version": "3.9.0", "private": true, + "keywords": [ + "wordpress", + "plugin" + ], + "homepage": "https://github.com/bluehost/bluehost-wordpress-plugin#readme", "repository": { "type": "git", "url": "git+https://github.com/bluehost/bluehost-wordpress-plugin.git" @@ -10,7 +20,6 @@ "bugs": { "url": "https://github.com/bluehost/bluehost-wordpress-plugin/issues" }, - "homepage": "https://github.com/bluehost/bluehost-wordpress-plugin#readme", "contributors": [ "Abdulrahman Al Ani (https://alani.dev/)", "Evan Mullins (https://evanmullins.com)", diff --git a/src/app/components/app-nav/index.js b/src/app/components/app-nav/index.js index 45f844b08..95a7bba73 100644 --- a/src/app/components/app-nav/index.js +++ b/src/app/components/app-nav/index.js @@ -21,19 +21,20 @@ export const SideNavMenu = () => { const primaryMenu = () => { return (
    - { topRoutes.map( ( page ) => ( - true === page.condition && ( - - ) - ) ) } + { topRoutes.map( + ( page ) => + true === page.condition && ( + + ) + ) }
); }; diff --git a/src/app/data/routes.js b/src/app/data/routes.js index 53ead493d..03a4d68e2 100644 --- a/src/app/data/routes.js +++ b/src/app/data/routes.js @@ -30,19 +30,20 @@ const HelpCenterAI = ( e ) => { export const AppRoutes = () => { return ( - { routes.map( ( page ) => ( - true === page.condition && ( - } - /> - ) - ) ) } + { routes.map( + ( page ) => + true === page.condition && ( + } + /> + ) + ) } } /> Date: Fri, 1 Mar 2024 12:27:40 +0530 Subject: [PATCH 05/14] Update cypress.config.js --- cypress.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/cypress.config.js b/cypress.config.js index a99c86590..c46a69944 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -71,7 +71,6 @@ module.exports = defineConfig( { testIsolation: false, excludeSpecPattern: [ 'vendor/newfold-labs/**/tests/cypress/integration/wp-module-support/*.cy.js', // skip any module's wp-module-support files - 'vendor/newfold-labs/wp-module-onboarding/tests/cypress/integration/5-AI-SiteGen-onboarding-flow/*.cy.js', // skip onboarding sitegen tests for now ], experimentalRunAllSpecs: true, }, From 5f16f6c0c617b5a120b219e066f82293da11b798 Mon Sep 17 00:00:00 2001 From: diDroid Date: Mon, 4 Mar 2024 20:02:47 +0530 Subject: [PATCH 06/14] version bump onboarding changes --- composer.json | 2 +- composer.lock | 60 +++++++++++++++++++++++++-------------------------- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/composer.json b/composer.json index 7b036ab1b..392e60f2f 100644 --- a/composer.json +++ b/composer.json @@ -76,7 +76,7 @@ "newfold-labs/wp-module-loader": "^1.0.10", "newfold-labs/wp-module-marketplace": "^2.2.4", "newfold-labs/wp-module-notifications": "^1.2.5", - "newfold-labs/wp-module-onboarding": "^2.1.4", + "newfold-labs/wp-module-onboarding": "^2.1.5", "newfold-labs/wp-module-patterns": "^0.1.14", "newfold-labs/wp-module-performance": "^1.4.0", "newfold-labs/wp-module-runtime": "^1.0.9", diff --git a/composer.lock b/composer.lock index 649a5fcb6..5ac81dfb6 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "77c0c99ec0c409012051277c3afb0d49", + "content-hash": "7fb71ec86afd38fc32f75dc8d210f991", "packages": [ { "name": "doctrine/inflector", @@ -192,16 +192,16 @@ }, { "name": "newfold-labs/wp-module-ai", - "version": "1.1.5", + "version": "1.1.6", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-ai.git", - "reference": "c8b776496904213476a7b79f0b431aac5837e1b3" + "reference": "de39aa47b11d68c763087ac26cca674068d47161" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-ai/zipball/c8b776496904213476a7b79f0b431aac5837e1b3", - "reference": "c8b776496904213476a7b79f0b431aac5837e1b3", + "url": "https://api.github.com/repos/newfold-labs/wp-module-ai/zipball/de39aa47b11d68c763087ac26cca674068d47161", + "reference": "de39aa47b11d68c763087ac26cca674068d47161", "shasum": "" }, "require": { @@ -230,23 +230,23 @@ ], "description": "A module for providing artificial intelligence capabilities.", "support": { - "source": "https://github.com/newfold-labs/wp-module-ai/tree/1.1.5", + "source": "https://github.com/newfold-labs/wp-module-ai/tree/1.1.6", "issues": "https://github.com/newfold-labs/wp-module-ai/issues" }, - "time": "2024-02-27T15:16:54+00:00" + "time": "2024-02-29T10:39:41+00:00" }, { "name": "newfold-labs/wp-module-coming-soon", - "version": "1.2.2", + "version": "1.2.3", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-coming-soon.git", - "reference": "66333ea1f64bb189e57edd83b5c0047d3ce5ef66" + "reference": "335bfe833ebdc072de55ed54cd6eebe0a210e43f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-coming-soon/zipball/66333ea1f64bb189e57edd83b5c0047d3ce5ef66", - "reference": "66333ea1f64bb189e57edd83b5c0047d3ce5ef66", + "url": "https://api.github.com/repos/newfold-labs/wp-module-coming-soon/zipball/335bfe833ebdc072de55ed54cd6eebe0a210e43f", + "reference": "335bfe833ebdc072de55ed54cd6eebe0a210e43f", "shasum": "" }, "require": { @@ -284,10 +284,10 @@ ], "description": "Coming Soon module for WordPress sites.", "support": { - "source": "https://github.com/newfold-labs/wp-module-coming-soon/tree/1.2.2", + "source": "https://github.com/newfold-labs/wp-module-coming-soon/tree/1.2.3", "issues": "https://github.com/newfold-labs/wp-module-coming-soon/issues" }, - "time": "2024-02-28T23:07:18+00:00" + "time": "2024-02-29T19:54:02+00:00" }, { "name": "newfold-labs/wp-module-context", @@ -881,23 +881,23 @@ }, { "name": "newfold-labs/wp-module-onboarding", - "version": "2.1.4", + "version": "2.1.5", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding.git", - "reference": "aa10d23eda61a48c364da1dfd7dcfcd3c588649f" + "reference": "fe18103ab00e27d8033915abc712fc97c3e55b29" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/aa10d23eda61a48c364da1dfd7dcfcd3c588649f", - "reference": "aa10d23eda61a48c364da1dfd7dcfcd3c588649f", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/fe18103ab00e27d8033915abc712fc97c3e55b29", + "reference": "fe18103ab00e27d8033915abc712fc97c3e55b29", "shasum": "" }, "require": { "mustache/mustache": "^2.14", "newfold-labs/wp-module-facebook": "^1.0.6", "newfold-labs/wp-module-install-checker": "^1.0", - "newfold-labs/wp-module-onboarding-data": "^1.1.2", + "newfold-labs/wp-module-onboarding-data": "^1.1.3", "newfold-labs/wp-module-patterns": "^0.1.14", "wp-cli/wp-config-transformer": "^1.3", "wp-forge/helpers": "^2.0" @@ -936,33 +936,33 @@ ], "description": "Next-generation WordPress Onboarding for WordPress sites at Newfold Digital.", "support": { - "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.1.4", + "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.1.5", "issues": "https://github.com/newfold-labs/wp-module-onboarding/issues" }, - "time": "2024-02-28T14:36:50+00:00" + "time": "2024-03-04T14:20:44+00:00" }, { "name": "newfold-labs/wp-module-onboarding-data", - "version": "1.1.2", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding-data.git", - "reference": "aadf22bc17b6fb98cababa2e16dcff4d2c3a3dd6" + "reference": "a5e90dbdb748e2710f82654131b51973a6dabd12" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding-data/zipball/aadf22bc17b6fb98cababa2e16dcff4d2c3a3dd6", - "reference": "aadf22bc17b6fb98cababa2e16dcff4d2c3a3dd6", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding-data/zipball/a5e90dbdb748e2710f82654131b51973a6dabd12", + "reference": "a5e90dbdb748e2710f82654131b51973a6dabd12", "shasum": "" }, "require": { "mustache/mustache": "^2.14", - "newfold-labs/wp-module-ai": "^1.1.5", - "newfold-labs/wp-module-coming-soon": "^1.2.0", + "newfold-labs/wp-module-ai": "^1.1.6", + "newfold-labs/wp-module-coming-soon": "^1.2.3", "newfold-labs/wp-module-data": "^2.4.18", "newfold-labs/wp-module-installer": "^1.1", "newfold-labs/wp-module-patterns": "^0.1.14", - "newfold-labs/wp-module-performance": "^1.3.0", + "newfold-labs/wp-module-performance": "^1.4.0", "wp-forge/wp-upgrade-handler": "^1.0" }, "require-dev": { @@ -982,10 +982,10 @@ ], "description": "A non-toggleable module containing a standardized interface for interacting with Onboarding data.", "support": { - "source": "https://github.com/newfold-labs/wp-module-onboarding-data/tree/1.1.2", + "source": "https://github.com/newfold-labs/wp-module-onboarding-data/tree/1.1.3", "issues": "https://github.com/newfold-labs/wp-module-onboarding-data/issues" }, - "time": "2024-02-28T11:25:20+00:00" + "time": "2024-03-04T13:57:20+00:00" }, { "name": "newfold-labs/wp-module-patterns", @@ -3810,5 +3810,5 @@ "platform-overrides": { "php": "7.3.0" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } From 6564c71a4d1126767328e524a1dae5ea6c1e05d2 Mon Sep 17 00:00:00 2001 From: diDroid Date: Mon, 4 Mar 2024 20:07:01 +0530 Subject: [PATCH 07/14] updated composer --- composer.lock | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.lock b/composer.lock index 5ac81dfb6..861156df8 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "7fb71ec86afd38fc32f75dc8d210f991", + "content-hash": "85d8836f2abbd14674e30268b5c2183d", "packages": [ { "name": "doctrine/inflector", @@ -2406,12 +2406,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "cca68bc8c5e35d0bc657c6c47bd40d28184abd87" + "reference": "8f1e484da92817191c75c9b00108f13fb62fd741" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/cca68bc8c5e35d0bc657c6c47bd40d28184abd87", - "reference": "cca68bc8c5e35d0bc657c6c47bd40d28184abd87", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/8f1e484da92817191c75c9b00108f13fb62fd741", + "reference": "8f1e484da92817191c75c9b00108f13fb62fd741", "shasum": "" }, "conflict": { @@ -2451,7 +2451,7 @@ "backpack/crud": "<3.4.9", "bacula-web/bacula-web": "<8.0.0.0-RC2-dev", "badaso/core": "<2.7", - "bagisto/bagisto": "<1.3.2", + "bagisto/bagisto": "<2.1", "barrelstrength/sprout-base-email": "<1.2.7", "barrelstrength/sprout-forms": "<3.9", "barryvdh/laravel-translation-manager": "<0.6.2", @@ -2487,7 +2487,7 @@ "chriskacerguis/codeigniter-restserver": "<=2.7.1", "civicrm/civicrm-core": ">=4.2,<4.2.9|>=4.3,<4.3.3", "ckeditor/ckeditor": "<4.24", - "cockpit-hq/cockpit": "<=2.6.3", + "cockpit-hq/cockpit": "<=2.6.3|==2.7", "codeception/codeception": "<3.1.3|>=4,<4.1.22", "codeigniter/framework": "<3.1.9", "codeigniter4/framework": "<=4.4.2", @@ -3138,7 +3138,7 @@ "type": "tidelift" } ], - "time": "2024-02-27T22:04:41+00:00" + "time": "2024-03-01T21:04:56+00:00" }, { "name": "squizlabs/php_codesniffer", From c160016f6a018ab84cb241b917543dc740d23c3e Mon Sep 17 00:00:00 2001 From: diDroid Date: Tue, 5 Mar 2024 17:41:00 +0530 Subject: [PATCH 08/14] dummy commit --- cypress.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cypress.config.js b/cypress.config.js index c46a69944..5ce194bf8 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -62,6 +62,7 @@ module.exports = defineConfig( { return config; }, + baseUrl: 'http://localhost:8882', specPattern: [ 'tests/cypress/integration/**/*.cy.{js,jsx,ts,tsx}', From eca26d505fc187f57d503fd9db06afe13be158c1 Mon Sep 17 00:00:00 2001 From: diDroid Date: Tue, 5 Mar 2024 17:41:35 +0530 Subject: [PATCH 09/14] dummy commit revert --- cypress.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/cypress.config.js b/cypress.config.js index 5ce194bf8..c46a69944 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -62,7 +62,6 @@ module.exports = defineConfig( { return config; }, - baseUrl: 'http://localhost:8882', specPattern: [ 'tests/cypress/integration/**/*.cy.{js,jsx,ts,tsx}', From 383926d6eea0ebb7d056902d2952ae248c6e4ee7 Mon Sep 17 00:00:00 2001 From: diDroid Date: Tue, 5 Mar 2024 17:43:49 +0530 Subject: [PATCH 10/14] composer update --- composer.lock | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/composer.lock b/composer.lock index 861156df8..1abadcd26 100644 --- a/composer.lock +++ b/composer.lock @@ -1976,16 +1976,16 @@ }, { "name": "mck89/peast", - "version": "v1.16.1", + "version": "v1.16.2", "source": { "type": "git", "url": "https://github.com/mck89/peast.git", - "reference": "f6e681062bb25c8dacbd30e079f4ad3fd890d7ad" + "reference": "2791b08ffcc1862fe18eef85675da3aa58c406fe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mck89/peast/zipball/f6e681062bb25c8dacbd30e079f4ad3fd890d7ad", - "reference": "f6e681062bb25c8dacbd30e079f4ad3fd890d7ad", + "url": "https://api.github.com/repos/mck89/peast/zipball/2791b08ffcc1862fe18eef85675da3aa58c406fe", + "reference": "2791b08ffcc1862fe18eef85675da3aa58c406fe", "shasum": "" }, "require": { @@ -1998,7 +1998,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.16.1-dev" + "dev-master": "1.16.2-dev" } }, "autoload": { @@ -2019,9 +2019,9 @@ "description": "Peast is PHP library that generates AST for JavaScript code", "support": { "issues": "https://github.com/mck89/peast/issues", - "source": "https://github.com/mck89/peast/tree/v1.16.1" + "source": "https://github.com/mck89/peast/tree/v1.16.2" }, - "time": "2024-02-14T08:15:19+00:00" + "time": "2024-03-05T09:16:03+00:00" }, { "name": "newfold-labs/wp-php-standards", @@ -2406,12 +2406,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "8f1e484da92817191c75c9b00108f13fb62fd741" + "reference": "da77e3d08db7ecddce118186977b21d04149b2f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/8f1e484da92817191c75c9b00108f13fb62fd741", - "reference": "8f1e484da92817191c75c9b00108f13fb62fd741", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/da77e3d08db7ecddce118186977b21d04149b2f9", + "reference": "da77e3d08db7ecddce118186977b21d04149b2f9", "shasum": "" }, "conflict": { @@ -2805,7 +2805,7 @@ "phpmyfaq/phpmyfaq": "<3.2.5", "phpoffice/phpexcel": "<1.8", "phpoffice/phpspreadsheet": "<1.16", - "phpseclib/phpseclib": "<2.0.31|>=3,<3.0.34", + "phpseclib/phpseclib": "<2.0.47|>=3,<3.0.36", "phpservermon/phpservermon": "<3.6", "phpsysinfo/phpsysinfo": "<3.4.3", "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3", @@ -2923,7 +2923,7 @@ "studio-42/elfinder": "<2.1.62", "subhh/libconnect": "<7.0.8|>=8,<8.1", "sukohi/surpass": "<1", - "sulu/sulu": "<1.6.44|>=2,<2.4.16|>=2.5,<2.5.12", + "sulu/sulu": "<1.6.44|>=2,<2.4.17|>=2.5,<2.5.13", "sumocoders/framework-user-bundle": "<1.4", "superbig/craft-audit": "<3.0.2", "swag/paypal": "<5.4.4", @@ -3138,7 +3138,7 @@ "type": "tidelift" } ], - "time": "2024-03-01T21:04:56+00:00" + "time": "2024-03-04T21:04:58+00:00" }, { "name": "squizlabs/php_codesniffer", From bdef27a5d4a39dfcd34277c090f8e473365a42a1 Mon Sep 17 00:00:00 2001 From: diDroid Date: Tue, 5 Mar 2024 19:57:19 +0530 Subject: [PATCH 11/14] bump onboarding to 2.1.6 --- composer.json | 2 +- composer.lock | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index c57928a64..0b2c8e9a4 100644 --- a/composer.json +++ b/composer.json @@ -76,7 +76,7 @@ "newfold-labs/wp-module-loader": "^1.0.10", "newfold-labs/wp-module-marketplace": "^2.2.4", "newfold-labs/wp-module-notifications": "^1.2.5", - "newfold-labs/wp-module-onboarding": "^2.1.5", + "newfold-labs/wp-module-onboarding": "^2.1.6", "newfold-labs/wp-module-patterns": "^0.1.14", "newfold-labs/wp-module-performance": "^1.4.0", "newfold-labs/wp-module-runtime": "^1.0.9", diff --git a/composer.lock b/composer.lock index 1abadcd26..b5a1c80f5 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "85d8836f2abbd14674e30268b5c2183d", + "content-hash": "1b815b78141cad500f340b28f31690db", "packages": [ { "name": "doctrine/inflector", @@ -881,16 +881,16 @@ }, { "name": "newfold-labs/wp-module-onboarding", - "version": "2.1.5", + "version": "2.1.6", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding.git", - "reference": "fe18103ab00e27d8033915abc712fc97c3e55b29" + "reference": "35910872d3bca2ae8095308d559716ecfddb579c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/fe18103ab00e27d8033915abc712fc97c3e55b29", - "reference": "fe18103ab00e27d8033915abc712fc97c3e55b29", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/35910872d3bca2ae8095308d559716ecfddb579c", + "reference": "35910872d3bca2ae8095308d559716ecfddb579c", "shasum": "" }, "require": { @@ -936,10 +936,10 @@ ], "description": "Next-generation WordPress Onboarding for WordPress sites at Newfold Digital.", "support": { - "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.1.5", + "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.1.6", "issues": "https://github.com/newfold-labs/wp-module-onboarding/issues" }, - "time": "2024-03-04T14:20:44+00:00" + "time": "2024-03-05T14:14:41+00:00" }, { "name": "newfold-labs/wp-module-onboarding-data", From f3dc3c00c7e51118967e38bc0e3c6a4e651627d1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 15:47:37 +0000 Subject: [PATCH 12/14] Composer(deps): Bump newfold-labs/wp-module-onboarding Bumps [newfold-labs/wp-module-onboarding](https://github.com/newfold-labs/wp-module-onboarding) from 2.1.4 to 2.1.6. - [Release notes](https://github.com/newfold-labs/wp-module-onboarding/releases) - [Commits](https://github.com/newfold-labs/wp-module-onboarding/compare/2.1.4...2.1.6) --- updated-dependencies: - dependency-name: newfold-labs/wp-module-onboarding dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- composer.lock | 46 +++++++++++++++++++++++----------------------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/composer.json b/composer.json index a1a735c03..0b2c8e9a4 100644 --- a/composer.json +++ b/composer.json @@ -76,7 +76,7 @@ "newfold-labs/wp-module-loader": "^1.0.10", "newfold-labs/wp-module-marketplace": "^2.2.4", "newfold-labs/wp-module-notifications": "^1.2.5", - "newfold-labs/wp-module-onboarding": "^2.1.4", + "newfold-labs/wp-module-onboarding": "^2.1.6", "newfold-labs/wp-module-patterns": "^0.1.14", "newfold-labs/wp-module-performance": "^1.4.0", "newfold-labs/wp-module-runtime": "^1.0.9", diff --git a/composer.lock b/composer.lock index 98499c735..4c06e63c0 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "2eb4f89f0b60e588e6795b507a4495d9", + "content-hash": "1b815b78141cad500f340b28f31690db", "packages": [ { "name": "doctrine/inflector", @@ -192,16 +192,16 @@ }, { "name": "newfold-labs/wp-module-ai", - "version": "1.1.5", + "version": "1.1.6", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-ai.git", - "reference": "c8b776496904213476a7b79f0b431aac5837e1b3" + "reference": "de39aa47b11d68c763087ac26cca674068d47161" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-ai/zipball/c8b776496904213476a7b79f0b431aac5837e1b3", - "reference": "c8b776496904213476a7b79f0b431aac5837e1b3", + "url": "https://api.github.com/repos/newfold-labs/wp-module-ai/zipball/de39aa47b11d68c763087ac26cca674068d47161", + "reference": "de39aa47b11d68c763087ac26cca674068d47161", "shasum": "" }, "require": { @@ -230,10 +230,10 @@ ], "description": "A module for providing artificial intelligence capabilities.", "support": { - "source": "https://github.com/newfold-labs/wp-module-ai/tree/1.1.5", + "source": "https://github.com/newfold-labs/wp-module-ai/tree/1.1.6", "issues": "https://github.com/newfold-labs/wp-module-ai/issues" }, - "time": "2024-02-27T15:16:54+00:00" + "time": "2024-02-29T10:39:41+00:00" }, { "name": "newfold-labs/wp-module-coming-soon", @@ -881,23 +881,23 @@ }, { "name": "newfold-labs/wp-module-onboarding", - "version": "2.1.4", + "version": "2.1.6", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding.git", - "reference": "aa10d23eda61a48c364da1dfd7dcfcd3c588649f" + "reference": "35910872d3bca2ae8095308d559716ecfddb579c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/aa10d23eda61a48c364da1dfd7dcfcd3c588649f", - "reference": "aa10d23eda61a48c364da1dfd7dcfcd3c588649f", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/35910872d3bca2ae8095308d559716ecfddb579c", + "reference": "35910872d3bca2ae8095308d559716ecfddb579c", "shasum": "" }, "require": { "mustache/mustache": "^2.14", "newfold-labs/wp-module-facebook": "^1.0.6", "newfold-labs/wp-module-install-checker": "^1.0", - "newfold-labs/wp-module-onboarding-data": "^1.1.2", + "newfold-labs/wp-module-onboarding-data": "^1.1.3", "newfold-labs/wp-module-patterns": "^0.1.14", "wp-cli/wp-config-transformer": "^1.3", "wp-forge/helpers": "^2.0" @@ -936,33 +936,33 @@ ], "description": "Next-generation WordPress Onboarding for WordPress sites at Newfold Digital.", "support": { - "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.1.4", + "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.1.6", "issues": "https://github.com/newfold-labs/wp-module-onboarding/issues" }, - "time": "2024-02-28T14:36:50+00:00" + "time": "2024-03-05T14:14:41+00:00" }, { "name": "newfold-labs/wp-module-onboarding-data", - "version": "1.1.2", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding-data.git", - "reference": "aadf22bc17b6fb98cababa2e16dcff4d2c3a3dd6" + "reference": "a5e90dbdb748e2710f82654131b51973a6dabd12" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding-data/zipball/aadf22bc17b6fb98cababa2e16dcff4d2c3a3dd6", - "reference": "aadf22bc17b6fb98cababa2e16dcff4d2c3a3dd6", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding-data/zipball/a5e90dbdb748e2710f82654131b51973a6dabd12", + "reference": "a5e90dbdb748e2710f82654131b51973a6dabd12", "shasum": "" }, "require": { "mustache/mustache": "^2.14", - "newfold-labs/wp-module-ai": "^1.1.5", - "newfold-labs/wp-module-coming-soon": "^1.2.0", + "newfold-labs/wp-module-ai": "^1.1.6", + "newfold-labs/wp-module-coming-soon": "^1.2.3", "newfold-labs/wp-module-data": "^2.4.18", "newfold-labs/wp-module-installer": "^1.1", "newfold-labs/wp-module-patterns": "^0.1.14", - "newfold-labs/wp-module-performance": "^1.3.0", + "newfold-labs/wp-module-performance": "^1.4.0", "wp-forge/wp-upgrade-handler": "^1.0" }, "require-dev": { @@ -982,10 +982,10 @@ ], "description": "A non-toggleable module containing a standardized interface for interacting with Onboarding data.", "support": { - "source": "https://github.com/newfold-labs/wp-module-onboarding-data/tree/1.1.2", + "source": "https://github.com/newfold-labs/wp-module-onboarding-data/tree/1.1.3", "issues": "https://github.com/newfold-labs/wp-module-onboarding-data/issues" }, - "time": "2024-02-28T11:25:20+00:00" + "time": "2024-03-04T13:57:20+00:00" }, { "name": "newfold-labs/wp-module-patterns", From ed9577da0afb5902af8f36b808369120c0636e1f Mon Sep 17 00:00:00 2001 From: wpalani Date: Tue, 5 Mar 2024 12:42:37 -0700 Subject: [PATCH 13/14] Bump version to `3.9.1` --- bluehost-wordpress-plugin.php | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bluehost-wordpress-plugin.php b/bluehost-wordpress-plugin.php index 580bef286..45a4bf525 100644 --- a/bluehost-wordpress-plugin.php +++ b/bluehost-wordpress-plugin.php @@ -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.9.0 + * Version: 3.9.1 * Requires at least: 6.0 * Requires PHP: 7.1 * Tested up to: 6.4.3 @@ -32,7 +32,7 @@ } // Define constants -define( 'BLUEHOST_PLUGIN_VERSION', '3.9.0' ); +define( 'BLUEHOST_PLUGIN_VERSION', '3.9.1' ); define( 'BLUEHOST_PLUGIN_FILE', __FILE__ ); define( 'BLUEHOST_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); define( 'BLUEHOST_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); diff --git a/package.json b/package.json index db799d59b..77d475117 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bluehost-wordpress-plugin", - "version": "3.9.0", + "version": "3.9.1", "description": "WordPress plugin that integrates your WordPress site with the Bluehost control panel, including performance, security, and update features.", "author": { "name": "Bluehost", From ab1cbec20bc26edd660cddba774e727df079302e Mon Sep 17 00:00:00 2001 From: diDroid Date: Wed, 6 Mar 2024 14:49:58 +0530 Subject: [PATCH 14/14] updated build 2.1.6 --- composer.lock | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.lock b/composer.lock index b5a1c80f5..75c1720ea 100644 --- a/composer.lock +++ b/composer.lock @@ -885,12 +885,12 @@ "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding.git", - "reference": "35910872d3bca2ae8095308d559716ecfddb579c" + "reference": "8fc1a49b43b3db5d65bc42261c174dd7fd110c70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/35910872d3bca2ae8095308d559716ecfddb579c", - "reference": "35910872d3bca2ae8095308d559716ecfddb579c", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/8fc1a49b43b3db5d65bc42261c174dd7fd110c70", + "reference": "8fc1a49b43b3db5d65bc42261c174dd7fd110c70", "shasum": "" }, "require": { @@ -939,7 +939,7 @@ "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.1.6", "issues": "https://github.com/newfold-labs/wp-module-onboarding/issues" }, - "time": "2024-03-05T14:14:41+00:00" + "time": "2024-03-06T08:58:22+00:00" }, { "name": "newfold-labs/wp-module-onboarding-data", @@ -2406,12 +2406,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "da77e3d08db7ecddce118186977b21d04149b2f9" + "reference": "5e00628ceaa787ae9459f0b6a9320b2b7953d7f0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/da77e3d08db7ecddce118186977b21d04149b2f9", - "reference": "da77e3d08db7ecddce118186977b21d04149b2f9", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/5e00628ceaa787ae9459f0b6a9320b2b7953d7f0", + "reference": "5e00628ceaa787ae9459f0b6a9320b2b7953d7f0", "shasum": "" }, "conflict": { @@ -3138,7 +3138,7 @@ "type": "tidelift" } ], - "time": "2024-03-04T21:04:58+00:00" + "time": "2024-03-05T22:04:04+00:00" }, { "name": "squizlabs/php_codesniffer",