From b34bea15f4543edb4dadaac59f6f34e9dd5e9ad7 Mon Sep 17 00:00:00 2001 From: manikantakailasa Date: Thu, 20 Jun 2024 13:16:02 +0530 Subject: [PATCH 01/57] Replace references to old values in `NewfoldRuntime` --- tests/cypress/integration/home.cy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cypress/integration/home.cy.js b/tests/cypress/integration/home.cy.js index a1a924c9f..3b8bab168 100644 --- a/tests/cypress/integration/home.cy.js +++ b/tests/cypress/integration/home.cy.js @@ -17,7 +17,7 @@ describe( 'Home Page', function () { it( 'Site Info Exists', () => { cy.get( '.wppbh-app-site-info' ) - .contains( 'h3', NewfoldRuntime.site.title ) + .contains( 'h3', NewfoldRuntime.siteTitle ) .scrollIntoView() .should( 'be.visible' ); } ); From 32d2ca5d93d2eda0d93426d18ee842a3f5b0f514 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Fri, 21 Jun 2024 18:11:09 -0400 Subject: [PATCH 02/57] remove 'FREE Monthly Webinar: ' line from webinar component the webinar title will now display exactly what the json indicates is the webinar title. --- src/app/components/webinars-banner/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/webinars-banner/index.js b/src/app/components/webinars-banner/index.js index c6868a70e..c7104a91b 100644 --- a/src/app/components/webinars-banner/index.js +++ b/src/app/components/webinars-banner/index.js @@ -114,7 +114,7 @@ const WebinarsBanner = () => {
- FREE Monthly Webinar: { upcomingWebinar.title } + { upcomingWebinar.title } { ( upcomingWebinar.hasDescription || From fcd0ad1d7449d8354849a17c3d6a7a74209b70df Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Fri, 21 Jun 2024 18:16:42 -0400 Subject: [PATCH 03/57] update tests to reflect change --- tests/cypress/integration/home.cy.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/tests/cypress/integration/home.cy.js b/tests/cypress/integration/home.cy.js index a1a924c9f..4627dc390 100644 --- a/tests/cypress/integration/home.cy.js +++ b/tests/cypress/integration/home.cy.js @@ -62,10 +62,7 @@ describe( 'Home Page', function () { ); cy.reload(); cy.get( '.wppbh-webinars-banner-section' ) - .contains( - 'h2', - 'FREE Monthly Webinar: Build your brand with WordPress' - ) + .contains( 'h2', 'Build your brand with WordPress' ) .scrollIntoView() .should( 'be.visible' ); } ); @@ -73,10 +70,7 @@ describe( 'Home Page', function () { it( 'Webinars Section Renders Correctly', () => { // Title cy.get( '.wppbh-webinars-banner-section' ) - .contains( - 'h2', - 'FREE Monthly Webinar: Build your brand with WordPress' - ) + .contains( 'h2', 'Build your brand with WordPress' ) .scrollIntoView() .should( 'be.visible' ); From 227a098da230817b87892dd579a3d236aa553ef0 Mon Sep 17 00:00:00 2001 From: Ramya krishna Date: Mon, 24 Jun 2024 12:12:38 +0530 Subject: [PATCH 04/57] calling comingSoonAdminbarToggle on update of comingsoon --- src/app/pages/home/welcomeSection.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/pages/home/welcomeSection.js b/src/app/pages/home/welcomeSection.js index ad0e1ef74..1ebdc4c04 100644 --- a/src/app/pages/home/welcomeSection.js +++ b/src/app/pages/home/welcomeSection.js @@ -1,8 +1,10 @@ import { useContext } from '@wordpress/element'; +import { useUpdateEffect } from 'react-use'; import { OnboardingScreen } from '@newfold-labs/wp-module-ecommerce'; import AppStore from 'App/data/store'; import { bluehostSettingsApiFetch } from 'App/util/helpers'; import { useNotification } from 'App/components/notifications'; +import { comingSoonAdminbarToggle } from '../../util/helpers'; const WelcomeSection = ( {} ) => { const { store, setStore } = useContext( AppStore ); @@ -16,6 +18,10 @@ const WelcomeSection = ( {} ) => { () => setStore( { ...store, comingSoon: ! store.comingSoon } ) ); + useUpdateEffect(() => { + comingSoonAdminbarToggle(store.comingSoon) + }, [store.comingSoon]) + return ( Date: Mon, 24 Jun 2024 12:22:12 +0530 Subject: [PATCH 05/57] linting issues --- src/app/pages/home/welcomeSection.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/pages/home/welcomeSection.js b/src/app/pages/home/welcomeSection.js index 1ebdc4c04..b34fe85e0 100644 --- a/src/app/pages/home/welcomeSection.js +++ b/src/app/pages/home/welcomeSection.js @@ -18,9 +18,9 @@ const WelcomeSection = ( {} ) => { () => setStore( { ...store, comingSoon: ! store.comingSoon } ) ); - useUpdateEffect(() => { - comingSoonAdminbarToggle(store.comingSoon) - }, [store.comingSoon]) + useUpdateEffect( () => { + comingSoonAdminbarToggle( store.comingSoon ) + }, [store.comingSoon] ) return ( Date: Mon, 24 Jun 2024 13:01:40 +0530 Subject: [PATCH 06/57] linting fixes --- src/app/pages/home/welcomeSection.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/pages/home/welcomeSection.js b/src/app/pages/home/welcomeSection.js index b34fe85e0..32d1bc4bc 100644 --- a/src/app/pages/home/welcomeSection.js +++ b/src/app/pages/home/welcomeSection.js @@ -18,9 +18,9 @@ const WelcomeSection = ( {} ) => { () => setStore( { ...store, comingSoon: ! store.comingSoon } ) ); - useUpdateEffect( () => { - comingSoonAdminbarToggle( store.comingSoon ) - }, [store.comingSoon] ) + useUpdateEffect( () => { + comingSoonAdminbarToggle( store.comingSoon ); + }, [ store.comingSoon ] ); return ( Date: Wed, 26 Jun 2024 14:46:00 +0530 Subject: [PATCH 07/57] fixes in store page --- src/app/pages/ecommerce/page.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/pages/ecommerce/page.js b/src/app/pages/ecommerce/page.js index d9122eaa2..6a4b97b25 100644 --- a/src/app/pages/ecommerce/page.js +++ b/src/app/pages/ecommerce/page.js @@ -7,6 +7,7 @@ import '@newfold-labs/wp-module-ecommerce/bluehost.css'; import AppStore from 'App/data/store'; import { bluehostSettingsApiFetch } from 'App/util/helpers'; import { useNotification } from 'App/components/notifications'; +import { comingSoonAdminbarToggle } from '../../util/helpers'; const ECommerce = () => { const { store, setStore } = useContext( AppStore ); @@ -33,6 +34,7 @@ const ECommerce = () => { ...store, comingSoon: ! store.comingSoon, } ); + comingSoonAdminbarToggle(!store.comingSoon) } ), }; From fd479c5caae6df4e309a5ee9b74db72c685252bd Mon Sep 17 00:00:00 2001 From: Ramya krishna Date: Wed, 26 Jun 2024 16:55:55 +0530 Subject: [PATCH 08/57] linting fixes --- src/app/pages/ecommerce/page.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pages/ecommerce/page.js b/src/app/pages/ecommerce/page.js index 6a4b97b25..6033ad282 100644 --- a/src/app/pages/ecommerce/page.js +++ b/src/app/pages/ecommerce/page.js @@ -34,7 +34,7 @@ const ECommerce = () => { ...store, comingSoon: ! store.comingSoon, } ); - comingSoonAdminbarToggle(!store.comingSoon) + comingSoonAdminbarToggle( ! store.comingSoon ); } ), }; From d9ff83e54573cb6f516dc8302205358cbd5bf64f Mon Sep 17 00:00:00 2001 From: aratidgr8 Date: Wed, 26 Jun 2024 17:34:01 +0530 Subject: [PATCH 09/57] Ecommerce version bump to 1.3.34 --- .wp-env.json | 2 +- composer.json | 2 +- composer.lock | 68 ++++++++++++++++++++++++----------------------- package-lock.json | 9 +++---- package.json | 2 +- 5 files changed, 42 insertions(+), 41 deletions(-) diff --git a/.wp-env.json b/.wp-env.json index ff4c8b305..864f152fe 100644 --- a/.wp-env.json +++ b/.wp-env.json @@ -1,5 +1,5 @@ { - "core": "WordPress/WordPress#tags/6.5.4", + "core": "WordPress/WordPress#tags/6.5.5", "config": { "WP_DEBUG": true, "WP_DEBUG_LOG": true, diff --git a/composer.json b/composer.json index 3a78d56a5..b174149f9 100644 --- a/composer.json +++ b/composer.json @@ -79,7 +79,7 @@ "newfold-labs/wp-module-context": "^1.0.1", "newfold-labs/wp-module-data": "^2.5.3", "newfold-labs/wp-module-deactivation": "^1.2.1", - "newfold-labs/wp-module-ecommerce": "^1.3.33", + "newfold-labs/wp-module-ecommerce": "^1.3.34", "newfold-labs/wp-module-facebook": "^1.0.9", "newfold-labs/wp-module-features": "^1.4.2", "newfold-labs/wp-module-global-ctb": "^1.0.12", diff --git a/composer.lock b/composer.lock index 540934ad0..f89b78210 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": "e180979b303913510ec0c2cfbd9642a3", + "content-hash": "c667c764fa83fdf6b5319af7413f2519", "packages": [ { "name": "doctrine/inflector", @@ -652,16 +652,16 @@ }, { "name": "newfold-labs/wp-module-ecommerce", - "version": "v1.3.33", + "version": "v1.3.34", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-ecommerce.git", - "reference": "9b848fee173f5688e4424dd010cad18914975678" + "reference": "9fba36ec1df919d911e38dac66180999c896a2a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-ecommerce/zipball/9b848fee173f5688e4424dd010cad18914975678", - "reference": "9b848fee173f5688e4424dd010cad18914975678", + "url": "https://api.github.com/repos/newfold-labs/wp-module-ecommerce/zipball/9fba36ec1df919d911e38dac66180999c896a2a1", + "reference": "9fba36ec1df919d911e38dac66180999c896a2a1", "shasum": "" }, "require": { @@ -704,10 +704,10 @@ ], "description": "Brand Agnostic eCommerce Experience", "support": { - "source": "https://github.com/newfold-labs/wp-module-ecommerce/tree/v1.3.33", + "source": "https://github.com/newfold-labs/wp-module-ecommerce/tree/v1.3.34", "issues": "https://github.com/newfold-labs/wp-module-ecommerce/issues" }, - "time": "2024-06-18T08:53:05+00:00" + "time": "2024-06-26T11:40:56+00:00" }, { "name": "newfold-labs/wp-module-facebook", @@ -810,16 +810,16 @@ }, { "name": "newfold-labs/wp-module-global-ctb", - "version": "1.0.12", + "version": "1.0.13", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-global-ctb.git", - "reference": "cdc28498a0a31f889bac58639735110fd285bcbb" + "reference": "f27fc58ca74df9d6ef0aca4d5e3603f48fd17f05" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-global-ctb/zipball/cdc28498a0a31f889bac58639735110fd285bcbb", - "reference": "cdc28498a0a31f889bac58639735110fd285bcbb", + "url": "https://api.github.com/repos/newfold-labs/wp-module-global-ctb/zipball/f27fc58ca74df9d6ef0aca4d5e3603f48fd17f05", + "reference": "f27fc58ca74df9d6ef0aca4d5e3603f48fd17f05", "shasum": "" }, "require-dev": { @@ -853,10 +853,10 @@ ], "description": "Newfold module for 'Click to Buy' functionality in brand plugins", "support": { - "source": "https://github.com/newfold-labs/wp-module-global-ctb/tree/1.0.12", + "source": "https://github.com/newfold-labs/wp-module-global-ctb/tree/1.0.13", "issues": "https://github.com/newfold-labs/wp-module-global-ctb/issues" }, - "time": "2024-05-30T16:00:35+00:00" + "time": "2024-06-25T00:12:44+00:00" }, { "name": "newfold-labs/wp-module-help-center", @@ -1091,16 +1091,16 @@ }, { "name": "newfold-labs/wp-module-migration", - "version": "v1.0.7", + "version": "v1.0.8", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-migration.git", - "reference": "48ae5be126f080220c58e5b607355dc52dfcc575" + "reference": "b09db1b19a4ab9d807063f6e74be5f8a11fc6be0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-migration/zipball/48ae5be126f080220c58e5b607355dc52dfcc575", - "reference": "48ae5be126f080220c58e5b607355dc52dfcc575", + "url": "https://api.github.com/repos/newfold-labs/wp-module-migration/zipball/b09db1b19a4ab9d807063f6e74be5f8a11fc6be0", + "reference": "b09db1b19a4ab9d807063f6e74be5f8a11fc6be0", "shasum": "" }, "require": { @@ -1138,10 +1138,10 @@ ], "description": "Initiates the migration process", "support": { - "source": "https://github.com/newfold-labs/wp-module-migration/tree/v1.0.7", + "source": "https://github.com/newfold-labs/wp-module-migration/tree/v1.0.8", "issues": "https://github.com/newfold-labs/wp-module-migration/issues" }, - "time": "2024-06-20T21:06:00+00:00" + "time": "2024-06-26T07:21:55+00:00" }, { "name": "newfold-labs/wp-module-notifications", @@ -2763,12 +2763,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "22f9af2d843383f1c25638b07d8cbcf18482527e" + "reference": "59b0da5b0c3aea934f731036370e1dcb7c56da19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/22f9af2d843383f1c25638b07d8cbcf18482527e", - "reference": "22f9af2d843383f1c25638b07d8cbcf18482527e", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/59b0da5b0c3aea934f731036370e1dcb7c56da19", + "reference": "59b0da5b0c3aea934f731036370e1dcb7c56da19", "shasum": "" }, "conflict": { @@ -2776,8 +2776,8 @@ "admidio/admidio": "<4.2.13", "adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3", "aheinze/cockpit": "<2.2", - "aimeos/ai-client-html": ">=2020.04.1,<2020.10.27|>=2021.04.1,<2021.10.21|>=2022.04.1,<2022.10.12|>=2023.04.1,<2023.10.14|>=2024.04.1,<2024.04.4", - "aimeos/aimeos-core": "<2024.04.7", + "aimeos/ai-client-html": ">=2020.04.1,<2020.10.27|>=2021.04.1,<2021.10.22|>=2022.04.1,<2022.10.13|>=2023.04.1,<2023.10.15|>=2024.04.1,<2024.04.7", + "aimeos/aimeos-core": ">=2022.04.1,<2022.10.17|>=2023.04.1,<2023.10.17|>=2024.04.1,<2024.04.7", "aimeos/aimeos-typo3": "<19.10.12|>=20,<20.10.5", "airesvsg/acf-to-rest-api": "<=3.1", "akaunting/akaunting": "<2.1.13", @@ -3051,6 +3051,7 @@ "jsdecena/laracom": "<2.0.9", "jsmitty12/phpwhois": "<5.1", "juzaweb/cms": "<=3.4", + "jweiland/events2": "<8.3.8|>=9,<9.0.6", "kazist/phpwhois": "<=4.2.6", "kelvinmo/simplexrd": "<3.1.1", "kevinpapst/kimai2": "<1.16.7", @@ -3163,7 +3164,7 @@ "onelogin/php-saml": "<2.10.4", "oneup/uploader-bundle": ">=1,<1.9.3|>=2,<2.1.5", "open-web-analytics/open-web-analytics": "<1.7.4", - "opencart/opencart": "<=3.0.3.7|>=4,<4.0.2.3-dev", + "opencart/opencart": "<=3.0.3.9|>=4", "openid/php-openid": "<2.3", "openmage/magento-lts": "<20.5", "opensolutions/vimbadmin": "<=3.0.15", @@ -3327,6 +3328,7 @@ "statamic/cms": "<4.46|>=5.3,<5.6.2", "stormpath/sdk": "<9.9.99", "studio-42/elfinder": "<2.1.62", + "studiomitte/friendlycaptcha": "<0.1.4", "subhh/libconnect": "<7.0.8|>=8,<8.1", "sukohi/surpass": "<1", "sulu/form-bundle": ">=2,<2.5.3", @@ -3393,7 +3395,7 @@ "thorsten/phpmyfaq": "<3.2.2", "tikiwiki/tiki-manager": "<=17.1", "timber/timber": ">=0.16.6,<1.23.1|>=1.24,<1.24.1|>=2,<2.1", - "tinymce/tinymce": "<7", + "tinymce/tinymce": "<7.2", "tinymighty/wiki-seo": "<1.2.2", "titon/framework": "<9.9.99", "tobiasbg/tablepress": "<=2.0.0.0-RC1", @@ -3558,7 +3560,7 @@ "type": "tidelift" } ], - "time": "2024-06-18T22:04:21+00:00" + "time": "2024-06-25T18:06:06+00:00" }, { "name": "squizlabs/php_codesniffer", @@ -3772,16 +3774,16 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b" + "reference": "77fa7995ac1b21ab60769b7323d600a991a90433" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", - "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", + "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", "shasum": "" }, "require": { @@ -3832,7 +3834,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0" }, "funding": [ { @@ -3848,7 +3850,7 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "wp-cli/i18n-command", diff --git a/package-lock.json b/package-lock.json index 8fd9dce22..323488b20 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,7 @@ "license": "GPL-2.0-or-later", "dependencies": { "@heroicons/react": "^2.1.1", - "@newfold-labs/wp-module-ecommerce": "^1.3.33", + "@newfold-labs/wp-module-ecommerce": "^1.3.34", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", @@ -3197,10 +3197,9 @@ } }, "node_modules/@newfold-labs/wp-module-ecommerce": { - "version": "1.3.33", - "resolved": "https://npm.pkg.github.com/download/@newfold-labs/wp-module-ecommerce/1.3.33/5b3282eb4b7afb48ff4dd45c358dd66b049bca9d", - "integrity": "sha512-XRiXm7bG4TW8cGaoTPcMSWSQ0o9t7YBiZZTTsKMBAnbIQwc5qkQGdrrSvb2bMzyuEXUYIbtxA+mJpCuO6defJw==", - "license": "GPL-2.0-or-later", + "version": "1.3.34", + "resolved": "https://npm.pkg.github.com/download/@newfold-labs/wp-module-ecommerce/1.3.34/5760cd0316622df2a8d75f1e099827f7bfbfb0a0", + "integrity": "sha512-QDggtluY7osHaKkfhW2DyGiK4Znv+F5CPTpHjLp5osqia1tDxMLKkSeHN5QM9Y3G+XWVUNpx+97O44jDxUT9MQ==", "dependencies": { "@faizaanceg/pandora": "^1.1.1", "@heroicons/react": "2.1.3", diff --git a/package.json b/package.json index 5840acde1..8cff1e841 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ }, "dependencies": { "@heroicons/react": "^2.1.1", - "@newfold-labs/wp-module-ecommerce": "^1.3.33", + "@newfold-labs/wp-module-ecommerce": "^1.3.34", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", From a1de708166f750c081c02aa3550f356388626595 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Jun 2024 15:19:29 +0000 Subject: [PATCH 10/57] NPM Dev(deps-dev): Bump @wordpress/eslint-plugin from 18.1.0 to 19.2.0 Bumps [@wordpress/eslint-plugin](https://github.com/WordPress/gutenberg/tree/HEAD/packages/eslint-plugin) from 18.1.0 to 19.2.0. - [Release notes](https://github.com/WordPress/gutenberg/releases) - [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/eslint-plugin@19.2.0/packages/eslint-plugin) --- updated-dependencies: - dependency-name: "@wordpress/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package-lock.json | 115 ++++++++++++++++++++++++++++++++++++++++++---- package.json | 2 +- 2 files changed, 108 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8fd9dce22..15fbf885a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,7 +34,7 @@ "@tailwindcss/forms": "^0.5.7", "@testing-library/cypress": "^10.0.2", "@wordpress/env": "^9.10.0", - "@wordpress/eslint-plugin": "^18.1.0", + "@wordpress/eslint-plugin": "^19.2.0", "@wordpress/scripts": "^27.4.0", "cypress": "^13.12.0", "cypress-axe": "^1.5.0", @@ -5821,16 +5821,16 @@ } }, "node_modules/@wordpress/eslint-plugin": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-18.1.0.tgz", - "integrity": "sha512-5eGpXEwaZsKbEh9040nVr4ggmrpPmltP+Ie4iGruWvCme6ZIFYw70CyWEV8S102IkqjH/BaH6d+CWg8tN7sc/g==", + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-19.2.0.tgz", + "integrity": "sha512-2mRC7WRV9qwdcMsm+VSTjcYQbLcBag5UTUXrClsQPqDZ9aeoL8QloStFCKOqXuYRYN4tYytIgnM/blvEz7OlAw==", "dev": true, "dependencies": { "@babel/eslint-parser": "^7.16.0", "@typescript-eslint/eslint-plugin": "^6.4.1", "@typescript-eslint/parser": "^6.4.1", - "@wordpress/babel-preset-default": "^7.42.0", - "@wordpress/prettier-config": "^3.15.0", + "@wordpress/babel-preset-default": "^8.2.0", + "@wordpress/prettier-config": "^4.2.0", "cosmiconfig": "^7.0.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.25.2", @@ -5845,8 +5845,8 @@ "requireindex": "^1.2.0" }, "engines": { - "node": ">=14", - "npm": ">=6.14.4" + "node": ">=18.12.0", + "npm": ">=8.19.2" }, "peerDependencies": { "@babel/core": ">=7", @@ -5863,6 +5863,62 @@ } } }, + "node_modules/@wordpress/eslint-plugin/node_modules/@wordpress/babel-preset-default": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-8.2.0.tgz", + "integrity": "sha512-bOvP+8b0zk7wjIbpaAnJSc0kkKZA6oeyJ4/GRtp+mmcrIXJWL+LNCGYQM+aUDSGO7j1QazLpTR7p5br8ygl5/g==", + "dev": true, + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-transform-react-jsx": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.0", + "@babel/preset-env": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.0", + "@wordpress/browserslist-config": "^6.2.0", + "@wordpress/warning": "^3.2.0", + "browserslist": "^4.21.10", + "core-js": "^3.31.0", + "react": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/eslint-plugin/node_modules/@wordpress/browserslist-config": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-6.2.0.tgz", + "integrity": "sha512-+/qiAQmWd+d7/yvVRxXevLKurlHjknO4EcFRlBfKM3moS6GNVSkCb3n6HwFXGawaQH7aaO3pPRdzmG5SIIxrEA==", + "dev": true, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/eslint-plugin/node_modules/@wordpress/prettier-config": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-4.2.0.tgz", + "integrity": "sha512-OvIUKpaphNdS26mQ9C9/bGzRZJnoyEzbJdtCmWr45fHAcfmkYbyNdyBERGjcne0F9BbMWP3yIqfB7eHZjQ1hnw==", + "dev": true, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "prettier": ">=3" + } + }, + "node_modules/@wordpress/eslint-plugin/node_modules/@wordpress/warning": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.2.0.tgz", + "integrity": "sha512-i+EYX506tE45+lhOW4qAwXm/5/PmkAdvKhNt+dTxJDif+ATUqp4QaFFRl9yFIt/v+ksAapQ0bnPkKNSDsECGtA==", + "dev": true, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, "node_modules/@wordpress/hooks": { "version": "3.58.0", "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-3.58.0.tgz", @@ -6264,6 +6320,49 @@ "react-dom": "^18.0.0" } }, + "node_modules/@wordpress/scripts/node_modules/@wordpress/eslint-plugin": { + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-18.1.0.tgz", + "integrity": "sha512-5eGpXEwaZsKbEh9040nVr4ggmrpPmltP+Ie4iGruWvCme6ZIFYw70CyWEV8S102IkqjH/BaH6d+CWg8tN7sc/g==", + "dev": true, + "dependencies": { + "@babel/eslint-parser": "^7.16.0", + "@typescript-eslint/eslint-plugin": "^6.4.1", + "@typescript-eslint/parser": "^6.4.1", + "@wordpress/babel-preset-default": "^7.42.0", + "@wordpress/prettier-config": "^3.15.0", + "cosmiconfig": "^7.0.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-jest": "^27.2.3", + "eslint-plugin-jsdoc": "^46.4.6", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-playwright": "^0.15.3", + "eslint-plugin-prettier": "^5.0.0", + "eslint-plugin-react": "^7.27.0", + "eslint-plugin-react-hooks": "^4.3.0", + "globals": "^13.12.0", + "requireindex": "^1.2.0" + }, + "engines": { + "node": ">=14", + "npm": ">=6.14.4" + }, + "peerDependencies": { + "@babel/core": ">=7", + "eslint": ">=8", + "prettier": ">=3", + "typescript": ">=4" + }, + "peerDependenciesMeta": { + "prettier": { + "optional": true + }, + "typescript": { + "optional": true + } + } + }, "node_modules/@wordpress/stylelint-config": { "version": "21.40.0", "resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-21.40.0.tgz", diff --git a/package.json b/package.json index 5840acde1..01084ad6c 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "@tailwindcss/forms": "^0.5.7", "@testing-library/cypress": "^10.0.2", "@wordpress/env": "^9.10.0", - "@wordpress/eslint-plugin": "^18.1.0", + "@wordpress/eslint-plugin": "^19.2.0", "@wordpress/scripts": "^27.4.0", "cypress": "^13.12.0", "cypress-axe": "^1.5.0", From 5ecd7f6cb794190042e71f7cfa26d5621ca99b60 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Jun 2024 15:22:46 +0000 Subject: [PATCH 11/57] NPM(deps): Bump @wordpress/icons from 9.49.0 to 10.2.0 Bumps [@wordpress/icons](https://github.com/WordPress/gutenberg/tree/HEAD/packages/icons) from 9.49.0 to 10.2.0. - [Release notes](https://github.com/WordPress/gutenberg/releases) - [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/icons/CHANGELOG.md) - [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/icons@10.2.0/packages/icons) --- updated-dependencies: - dependency-name: "@wordpress/icons" dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package-lock.json | 62 +++++++++++++++++++++++++++-------------------- package.json | 2 +- 2 files changed, 37 insertions(+), 27 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8fd9dce22..09467c79a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20,7 +20,7 @@ "@wordpress/element": "^6.1.0", "@wordpress/html-entities": "^4.1.0", "@wordpress/i18n": "^4.58.0", - "@wordpress/icons": "^9.49.0", + "@wordpress/icons": "^10.2.0", "classnames": "^2.5.1", "jquery": "^3.7.1", "lodash": "^4.17.21", @@ -5424,6 +5424,19 @@ "node": ">=12" } }, + "node_modules/@wordpress/components/node_modules/@wordpress/icons": { + "version": "9.49.0", + "resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-9.49.0.tgz", + "integrity": "sha512-Z8F+ledkfkcKDuS1c/RkM0dEWdfv2AXs6bCgey89p0atJSscf7qYbMJR9zE5rZ5aqXyFfV0DAFKJEgayNqneNQ==", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^5.35.0", + "@wordpress/primitives": "^3.56.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/@wordpress/components/node_modules/@wordpress/undo-manager": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-0.18.0.tgz", @@ -5756,14 +5769,14 @@ } }, "node_modules/@wordpress/element": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.1.0.tgz", - "integrity": "sha512-DqAGqal1i6gTfYxz95zHnckbweS43MroHqMcz/Rww60pysTCoaRG5KZ/v4/3hry1tNCem1WQguY4ZMTF0MMTBQ==", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.2.0.tgz", + "integrity": "sha512-pRCchhYoH7eN0bxL4iUMBm82psqSUozlmk4B5IhQiqzYoOWn7OjvkGqejAnt81iDZUNZ8hIY2gLpRplgwwiZlQ==", "dependencies": { "@babel/runtime": "^7.16.0", "@types/react": "^18.2.79", "@types/react-dom": "^18.2.25", - "@wordpress/escape-html": "^3.1.0", + "@wordpress/escape-html": "^3.2.0", "change-case": "^4.1.2", "is-plain-object": "^5.0.0", "react": "^18.3.0", @@ -5775,9 +5788,9 @@ } }, "node_modules/@wordpress/element/node_modules/@wordpress/escape-html": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.1.0.tgz", - "integrity": "sha512-wcRGrGuGV4kTd5hJMXy/bdjCObqcwqFmd/HkDAUi2pfngEsv2aJhAeTfkGP5NwmY/F03Oqz2Qgd4UzTiIu2bjQ==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.2.0.tgz", + "integrity": "sha512-GFJ91lrs46zN3bgRGBHREaZ4jegwUA+2Gx+P6f11VDLhihNGKyg67uNf0lXqLoLj6iQQCBDP+15k/0k2ccr3YA==", "dependencies": { "@babel/runtime": "^7.16.0" }, @@ -5906,34 +5919,31 @@ } }, "node_modules/@wordpress/icons": { - "version": "9.49.0", - "resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-9.49.0.tgz", - "integrity": "sha512-Z8F+ledkfkcKDuS1c/RkM0dEWdfv2AXs6bCgey89p0atJSscf7qYbMJR9zE5rZ5aqXyFfV0DAFKJEgayNqneNQ==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-10.2.0.tgz", + "integrity": "sha512-6N39YvCUHgmqfewByKY1biBE+w/r/o1O9hQgW/zd4v1RVFQNOTxfmhqSmbbTePLzrdKcbB1setM+lJtwvwvrnA==", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/element": "^5.35.0", - "@wordpress/primitives": "^3.56.0" + "@wordpress/element": "^6.2.0", + "@wordpress/primitives": "^4.2.0" }, "engines": { - "node": ">=12" + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, - "node_modules/@wordpress/icons/node_modules/@wordpress/element": { - "version": "5.35.0", - "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-5.35.0.tgz", - "integrity": "sha512-puswpGcIdS+0A2g28uHriMkZqqRCmzFczue5Tk99VNtzBdehyk7Ae+DZ4xw5yT6GqYai8NTqv6MRwCB78uh5Mw==", + "node_modules/@wordpress/icons/node_modules/@wordpress/primitives": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-4.2.0.tgz", + "integrity": "sha512-UofDIMe3pQ4UvubCAjm4/Y+o/niAiHFRjhavvxBOZ5iCFyjG/1knbJcWa8+0qvjIA5YTBzZxfN6PD4Je1SwtFw==", "dependencies": { "@babel/runtime": "^7.16.0", - "@types/react": "^18.2.79", - "@types/react-dom": "^18.2.25", - "@wordpress/escape-html": "^2.58.0", - "change-case": "^4.1.2", - "is-plain-object": "^5.0.0", - "react": "^18.3.0", - "react-dom": "^18.3.0" + "@wordpress/element": "^6.2.0", + "clsx": "^2.1.1" }, "engines": { - "node": ">=12" + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, "node_modules/@wordpress/is-shallow-equal": { diff --git a/package.json b/package.json index 5840acde1..62efa08c8 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "@wordpress/element": "^6.1.0", "@wordpress/html-entities": "^4.1.0", "@wordpress/i18n": "^4.58.0", - "@wordpress/icons": "^9.49.0", + "@wordpress/icons": "^10.2.0", "classnames": "^2.5.1", "jquery": "^3.7.1", "lodash": "^4.17.21", From 92c4d3372349f04b20e55a282b4c3263b1174c0a Mon Sep 17 00:00:00 2001 From: wpalani Date: Wed, 26 Jun 2024 10:15:26 -0700 Subject: [PATCH 12/57] Modify composer deps - Bump global ctb module to `1.0.13` which adds dynamic iframe sizing for global ctbs. - Rollback ecimm module to `1.3.31`. --- composer.json | 4 ++-- composer.lock | 26 +++++++++++++------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/composer.json b/composer.json index 3a78d56a5..412bfff91 100644 --- a/composer.json +++ b/composer.json @@ -79,10 +79,10 @@ "newfold-labs/wp-module-context": "^1.0.1", "newfold-labs/wp-module-data": "^2.5.3", "newfold-labs/wp-module-deactivation": "^1.2.1", - "newfold-labs/wp-module-ecommerce": "^1.3.33", + "newfold-labs/wp-module-ecommerce": "1.3.31", "newfold-labs/wp-module-facebook": "^1.0.9", "newfold-labs/wp-module-features": "^1.4.2", - "newfold-labs/wp-module-global-ctb": "^1.0.12", + "newfold-labs/wp-module-global-ctb": "^1.0.13", "newfold-labs/wp-module-help-center": "^2.0.0", "newfold-labs/wp-module-loader": "^1.0.10", "newfold-labs/wp-module-marketplace": "^2.3.0", diff --git a/composer.lock b/composer.lock index 540934ad0..f18d73f60 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": "e180979b303913510ec0c2cfbd9642a3", + "content-hash": "c4b2d74d9782dad84e8fb74a72279620", "packages": [ { "name": "doctrine/inflector", @@ -652,16 +652,16 @@ }, { "name": "newfold-labs/wp-module-ecommerce", - "version": "v1.3.33", + "version": "v1.3.31", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-ecommerce.git", - "reference": "9b848fee173f5688e4424dd010cad18914975678" + "reference": "24ef99c9b697f2c30172a95c5f6fa0470b9b2604" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-ecommerce/zipball/9b848fee173f5688e4424dd010cad18914975678", - "reference": "9b848fee173f5688e4424dd010cad18914975678", + "url": "https://api.github.com/repos/newfold-labs/wp-module-ecommerce/zipball/24ef99c9b697f2c30172a95c5f6fa0470b9b2604", + "reference": "24ef99c9b697f2c30172a95c5f6fa0470b9b2604", "shasum": "" }, "require": { @@ -704,10 +704,10 @@ ], "description": "Brand Agnostic eCommerce Experience", "support": { - "source": "https://github.com/newfold-labs/wp-module-ecommerce/tree/v1.3.33", + "source": "https://github.com/newfold-labs/wp-module-ecommerce/tree/v1.3.31", "issues": "https://github.com/newfold-labs/wp-module-ecommerce/issues" }, - "time": "2024-06-18T08:53:05+00:00" + "time": "2024-05-20T12:40:55+00:00" }, { "name": "newfold-labs/wp-module-facebook", @@ -810,16 +810,16 @@ }, { "name": "newfold-labs/wp-module-global-ctb", - "version": "1.0.12", + "version": "1.0.13", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-global-ctb.git", - "reference": "cdc28498a0a31f889bac58639735110fd285bcbb" + "reference": "f27fc58ca74df9d6ef0aca4d5e3603f48fd17f05" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-global-ctb/zipball/cdc28498a0a31f889bac58639735110fd285bcbb", - "reference": "cdc28498a0a31f889bac58639735110fd285bcbb", + "url": "https://api.github.com/repos/newfold-labs/wp-module-global-ctb/zipball/f27fc58ca74df9d6ef0aca4d5e3603f48fd17f05", + "reference": "f27fc58ca74df9d6ef0aca4d5e3603f48fd17f05", "shasum": "" }, "require-dev": { @@ -853,10 +853,10 @@ ], "description": "Newfold module for 'Click to Buy' functionality in brand plugins", "support": { - "source": "https://github.com/newfold-labs/wp-module-global-ctb/tree/1.0.12", + "source": "https://github.com/newfold-labs/wp-module-global-ctb/tree/1.0.13", "issues": "https://github.com/newfold-labs/wp-module-global-ctb/issues" }, - "time": "2024-05-30T16:00:35+00:00" + "time": "2024-06-25T00:12:44+00:00" }, { "name": "newfold-labs/wp-module-help-center", From 800e9e8d1481f4ef9c2d130208b2609eea6a1fb2 Mon Sep 17 00:00:00 2001 From: wpalani Date: Wed, 26 Jun 2024 10:21:55 -0700 Subject: [PATCH 13/57] Bump plugin version --- .wp-env.json | 2 +- bluehost-wordpress-plugin.php | 6 +++--- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.wp-env.json b/.wp-env.json index ff4c8b305..864f152fe 100644 --- a/.wp-env.json +++ b/.wp-env.json @@ -1,5 +1,5 @@ { - "core": "WordPress/WordPress#tags/6.5.4", + "core": "WordPress/WordPress#tags/6.5.5", "config": { "WP_DEBUG": true, "WP_DEBUG_LOG": true, diff --git a/bluehost-wordpress-plugin.php b/bluehost-wordpress-plugin.php index e3fd0d125..40e2e05ec 100644 --- a/bluehost-wordpress-plugin.php +++ b/bluehost-wordpress-plugin.php @@ -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.12.1 + * Version: 3.12.2 * Requires at least: 6.0 * Requires PHP: 7.1 - * Tested up to: 6.5.4 + * Tested up to: 6.5.5 * Author: Bluehost * Author URI: https://bluehost.com * Text Domain: wp-plugin-bluehost @@ -32,7 +32,7 @@ } // Define constants -define( 'BLUEHOST_PLUGIN_VERSION', '3.12.1' ); +define( 'BLUEHOST_PLUGIN_VERSION', '3.12.2' ); 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-lock.json b/package-lock.json index 8fd9dce22..c4bffd06e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bluehost-wordpress-plugin", - "version": "3.12.1", + "version": "3.12.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bluehost-wordpress-plugin", - "version": "3.12.1", + "version": "3.12.2", "license": "GPL-2.0-or-later", "dependencies": { "@heroicons/react": "^2.1.1", diff --git a/package.json b/package.json index 5840acde1..d054789a6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bluehost-wordpress-plugin", - "version": "3.12.1", + "version": "3.12.2", "description": "WordPress plugin that integrates your WordPress site with the Bluehost control panel, including performance, security, and update features.", "author": { "name": "Bluehost", From 5e103d3271ca29f3af64f3828e03361ad4c3d1da Mon Sep 17 00:00:00 2001 From: wpalani Date: Wed, 26 Jun 2024 11:02:18 -0700 Subject: [PATCH 14/57] Rollback ecommerce nodule npm package --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index c4bffd06e..83eacf23b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,7 @@ "license": "GPL-2.0-or-later", "dependencies": { "@heroicons/react": "^2.1.1", - "@newfold-labs/wp-module-ecommerce": "^1.3.33", + "@newfold-labs/wp-module-ecommerce": "1.3.31", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", @@ -3197,9 +3197,9 @@ } }, "node_modules/@newfold-labs/wp-module-ecommerce": { - "version": "1.3.33", - "resolved": "https://npm.pkg.github.com/download/@newfold-labs/wp-module-ecommerce/1.3.33/5b3282eb4b7afb48ff4dd45c358dd66b049bca9d", - "integrity": "sha512-XRiXm7bG4TW8cGaoTPcMSWSQ0o9t7YBiZZTTsKMBAnbIQwc5qkQGdrrSvb2bMzyuEXUYIbtxA+mJpCuO6defJw==", + "version": "1.3.31", + "resolved": "https://npm.pkg.github.com/download/@newfold-labs/wp-module-ecommerce/1.3.31/355c4a15cc4d8cc4820a8db6de508e511d938c42", + "integrity": "sha512-3T9MPz9v/dtyUuO0TAlJONhunZ2SNGbHCOuYKx7ffge6esO6wYFYB2m9B7FoP1wC8Rl/zvfwxQfKTooS6LHLHA==", "license": "GPL-2.0-or-later", "dependencies": { "@faizaanceg/pandora": "^1.1.1", diff --git a/package.json b/package.json index d054789a6..534d67903 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ }, "dependencies": { "@heroicons/react": "^2.1.1", - "@newfold-labs/wp-module-ecommerce": "^1.3.33", + "@newfold-labs/wp-module-ecommerce": "1.3.31", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", From eae2eadc7e12361ec74cfea819d8ebb3fdd712b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Jun 2024 20:13:01 +0000 Subject: [PATCH 15/57] NPM(deps): Bump @heroicons/react from 2.1.3 to 2.1.4 Bumps [@heroicons/react](https://github.com/tailwindlabs/heroicons) from 2.1.3 to 2.1.4. - [Release notes](https://github.com/tailwindlabs/heroicons/releases) - [Changelog](https://github.com/tailwindlabs/heroicons/blob/master/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/heroicons/compare/v2.1.3...v2.1.4) --- updated-dependencies: - dependency-name: "@heroicons/react" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 16 ++++++++++++---- package.json | 2 +- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 83eacf23b..c3b47c2a2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "3.12.2", "license": "GPL-2.0-or-later", "dependencies": { - "@heroicons/react": "^2.1.1", + "@heroicons/react": "^2.1.4", "@newfold-labs/wp-module-ecommerce": "1.3.31", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", @@ -2590,9 +2590,9 @@ } }, "node_modules/@heroicons/react": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-2.1.3.tgz", - "integrity": "sha512-fEcPfo4oN345SoqdlCDdSa4ivjaKbk0jTd+oubcgNxnNgAfzysfwWfQUr+51wigiWHQQRiZNd1Ao0M5Y3M2EGg==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-2.1.4.tgz", + "integrity": "sha512-ju0wj0wwrUTMQ2Yceyrma7TKuI3BpSjp+qKqV81K9KGcUHdvTMdiwfRc2cwXBp3uXtKuDZkh0v03nWOQnJFv2Q==", "peerDependencies": { "react": ">= 16" } @@ -3218,6 +3218,14 @@ "swr": "2.1.5" } }, + "node_modules/@newfold-labs/wp-module-ecommerce/node_modules/@heroicons/react": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-2.1.3.tgz", + "integrity": "sha512-fEcPfo4oN345SoqdlCDdSa4ivjaKbk0jTd+oubcgNxnNgAfzysfwWfQUr+51wigiWHQQRiZNd1Ao0M5Y3M2EGg==", + "peerDependencies": { + "react": ">= 16" + } + }, "node_modules/@newfold-labs/wp-module-ecommerce/node_modules/@reduxjs/toolkit": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.2.3.tgz", diff --git a/package.json b/package.json index 534d67903..c01bdfc13 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "npm": ">=10" }, "dependencies": { - "@heroicons/react": "^2.1.1", + "@heroicons/react": "^2.1.4", "@newfold-labs/wp-module-ecommerce": "1.3.31", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", From 1e237185638c8e96702383c50bbfc7fdd225635f Mon Sep 17 00:00:00 2001 From: wpalani Date: Wed, 26 Jun 2024 15:36:17 -0700 Subject: [PATCH 16/57] Disable admin notices on plugin app --- inc/Admin.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/inc/Admin.php b/inc/Admin.php index 4a63d288c..0590745ba 100644 --- a/inc/Admin.php +++ b/inc/Admin.php @@ -38,6 +38,8 @@ public function __construct() { if ( isset( $_GET['page'] ) && strpos( filter_input( INPUT_GET, 'page', FILTER_UNSAFE_RAW ), 'bluehost' ) >= 0 ) { // phpcs:ignore \add_action( 'admin_footer_text', array( __CLASS__, 'add_brand_to_admin_footer' ) ); + /* Disable admin notices on App pages */ + \add_action( 'admin_init', array( __CLASS__, 'disable_admin_notices' ) ); } } @@ -278,6 +280,16 @@ public static function actions( $actions ) { ); } + /** + * Disable admin notices on App pages + * + * @return void + */ + public static function disable_admin_notices() { + remove_all_actions( 'admin_notices' ); + remove_all_actions( 'all_admin_notices' ); + } + /** * Filter WordPress Admin Footer Text "Thank you for creating with..." * From 620509ae437191ad4976774117b833c476c83671 Mon Sep 17 00:00:00 2001 From: arunshenoy99 Date: Thu, 27 Jun 2024 19:53:03 +0530 Subject: [PATCH 17/57] Update Onboarding to 2.3.5 --- composer.json | 2 +- composer.lock | 82 +++++++++++++++++++++++++++++++++++++++------------ 2 files changed, 64 insertions(+), 20 deletions(-) diff --git a/composer.json b/composer.json index 412bfff91..21dab5fab 100644 --- a/composer.json +++ b/composer.json @@ -88,7 +88,7 @@ "newfold-labs/wp-module-marketplace": "^2.3.0", "newfold-labs/wp-module-migration": "^1.0.7", "newfold-labs/wp-module-notifications": "^1.3.0", - "newfold-labs/wp-module-onboarding": "^2.3.4", + "newfold-labs/wp-module-onboarding": "^2.3.5", "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", diff --git a/composer.lock b/composer.lock index f18d73f60..671c47b40 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": "c4b2d74d9782dad84e8fb74a72279620", + "content-hash": "b29a72326cabcd197118dd075b80dc60", "packages": [ { "name": "doctrine/inflector", @@ -1091,16 +1091,16 @@ }, { "name": "newfold-labs/wp-module-migration", - "version": "v1.0.7", + "version": "v1.0.8", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-migration.git", - "reference": "48ae5be126f080220c58e5b607355dc52dfcc575" + "reference": "b09db1b19a4ab9d807063f6e74be5f8a11fc6be0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-migration/zipball/48ae5be126f080220c58e5b607355dc52dfcc575", - "reference": "48ae5be126f080220c58e5b607355dc52dfcc575", + "url": "https://api.github.com/repos/newfold-labs/wp-module-migration/zipball/b09db1b19a4ab9d807063f6e74be5f8a11fc6be0", + "reference": "b09db1b19a4ab9d807063f6e74be5f8a11fc6be0", "shasum": "" }, "require": { @@ -1138,10 +1138,10 @@ ], "description": "Initiates the migration process", "support": { - "source": "https://github.com/newfold-labs/wp-module-migration/tree/v1.0.7", + "source": "https://github.com/newfold-labs/wp-module-migration/tree/v1.0.8", "issues": "https://github.com/newfold-labs/wp-module-migration/issues" }, - "time": "2024-06-20T21:06:00+00:00" + "time": "2024-06-26T07:21:55+00:00" }, { "name": "newfold-labs/wp-module-notifications", @@ -1190,16 +1190,16 @@ }, { "name": "newfold-labs/wp-module-onboarding", - "version": "2.3.4", + "version": "2.3.5", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding.git", - "reference": "243277e79a3bd42f16b4d186f4575bf46fea67c7" + "reference": "50ace2a0dbfed48ebf8b8409b80736d5d48d9159" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/243277e79a3bd42f16b4d186f4575bf46fea67c7", - "reference": "243277e79a3bd42f16b4d186f4575bf46fea67c7", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/50ace2a0dbfed48ebf8b8409b80736d5d48d9159", + "reference": "50ace2a0dbfed48ebf8b8409b80736d5d48d9159", "shasum": "" }, "require": { @@ -1245,23 +1245,23 @@ ], "description": "Next-generation WordPress Onboarding for WordPress sites at Newfold Digital.", "support": { - "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.3.4", + "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.3.5", "issues": "https://github.com/newfold-labs/wp-module-onboarding/issues" }, - "time": "2024-06-14T13:15:51+00:00" + "time": "2024-06-27T14:10:10+00:00" }, { "name": "newfold-labs/wp-module-onboarding-data", - "version": "1.1.12", + "version": "1.1.13", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding-data.git", - "reference": "efce79142be2deb7382b0c500a17be75fc9a5708" + "reference": "dd6784cd136ac687a373e27f2f51999d93e97788" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding-data/zipball/efce79142be2deb7382b0c500a17be75fc9a5708", - "reference": "efce79142be2deb7382b0c500a17be75fc9a5708", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding-data/zipball/dd6784cd136ac687a373e27f2f51999d93e97788", + "reference": "dd6784cd136ac687a373e27f2f51999d93e97788", "shasum": "" }, "require": { @@ -1273,6 +1273,7 @@ "newfold-labs/wp-module-installer": "^1.1", "newfold-labs/wp-module-patterns": "^1.0", "newfold-labs/wp-module-performance": "^1.4", + "newfold-labs/wp-module-survey": "^1.0", "wp-forge/wp-upgrade-handler": "^1.0" }, "require-dev": { @@ -1296,10 +1297,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.12", + "source": "https://github.com/newfold-labs/wp-module-onboarding-data/tree/1.1.13", "issues": "https://github.com/newfold-labs/wp-module-onboarding-data/issues" }, - "time": "2024-06-14T12:45:33+00:00" + "time": "2024-06-27T13:27:53+00:00" }, { "name": "newfold-labs/wp-module-patterns", @@ -1606,6 +1607,49 @@ }, "time": "2024-05-29T14:18:17+00:00" }, + { + "name": "newfold-labs/wp-module-survey", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-survey.git", + "reference": "6c37264f2a607a330ac25e65555d99ec38972b2e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-survey/zipball/6c37264f2a607a330ac25e65555d99ec38972b2e", + "reference": "6c37264f2a607a330ac25e65555d99ec38972b2e", + "shasum": "" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2", + "wp-cli/i18n-command": "^2.4.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\Survey\\": "includes" + }, + "files": [ + "bootstrap.php" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "arunshenoy99", + "email": "devarunshenoy99@gmail.com" + } + ], + "description": "A Newfold module to collect customer satisfaction feedback via surveys in the WordPress admin dashboard.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-survey/tree/1.0.0", + "issues": "https://github.com/newfold-labs/wp-module-survey/issues" + }, + "time": "2024-06-27T09:50:43+00:00" + }, { "name": "wp-cli/wp-config-transformer", "version": "v1.3.5", From 1992a4e40d28d9f3badd4d813739f1479c303d15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 14:48:15 +0000 Subject: [PATCH 18/57] NPM Dev(deps-dev): Bump @wordpress/env from 9.10.0 to 10.2.0 Bumps [@wordpress/env](https://github.com/WordPress/gutenberg/tree/HEAD/packages/env) from 9.10.0 to 10.2.0. - [Release notes](https://github.com/WordPress/gutenberg/releases) - [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/env/CHANGELOG.md) - [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/env@10.2.0/packages/env) --- updated-dependencies: - dependency-name: "@wordpress/env" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package-lock.json | 12 ++++++++---- package.json | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index eaf00c929..be443b693 100644 --- a/package-lock.json +++ b/package-lock.json @@ -33,7 +33,7 @@ "devDependencies": { "@tailwindcss/forms": "^0.5.7", "@testing-library/cypress": "^10.0.2", - "@wordpress/env": "^9.10.0", + "@wordpress/env": "^10.2.0", "@wordpress/eslint-plugin": "^19.2.0", "@wordpress/scripts": "^27.4.0", "cypress": "^13.12.0", @@ -5808,9 +5808,9 @@ } }, "node_modules/@wordpress/env": { - "version": "9.10.0", - "resolved": "https://registry.npmjs.org/@wordpress/env/-/env-9.10.0.tgz", - "integrity": "sha512-GqUg1XdrUXI3l5NhHhEZisrccW+VPqJSU5xO1IXybI6KOvmSecidxWEqlMj26vzu2P5aLCWZcx28QkrrY3jvdg==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/env/-/env-10.2.0.tgz", + "integrity": "sha512-EToZYPGXpl42Asw3bxpX8aKmHfRUdGxKPjQ9CHZVQoTAL27Af4FyjyGnepsnDpnYdIeI8VPb2S3k2NL/1+fpIA==", "dev": true, "dependencies": { "chalk": "^4.0.0", @@ -5828,6 +5828,10 @@ }, "bin": { "wp-env": "bin/wp-env" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, "node_modules/@wordpress/escape-html": { diff --git a/package.json b/package.json index b2e3a6d46..5c239cb8a 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "devDependencies": { "@tailwindcss/forms": "^0.5.7", "@testing-library/cypress": "^10.0.2", - "@wordpress/env": "^9.10.0", + "@wordpress/env": "^10.2.0", "@wordpress/eslint-plugin": "^19.2.0", "@wordpress/scripts": "^27.4.0", "cypress": "^13.12.0", From 1d0b5a33b7f1e3bd2db2756151097a83766715aa Mon Sep 17 00:00:00 2001 From: aratidgr8 Date: Thu, 27 Jun 2024 20:40:20 +0530 Subject: [PATCH 19/57] Version bump to 1.3.35 for Ecommerce module to resolve P3 incident on 26th June for Store page --- composer.json | 2 +- composer.lock | 104 +++++++++++++++++++++++++++++++++------------- package-lock.json | 8 ++-- package.json | 2 +- 4 files changed, 80 insertions(+), 36 deletions(-) diff --git a/composer.json b/composer.json index b174149f9..bdfa07b37 100644 --- a/composer.json +++ b/composer.json @@ -79,7 +79,7 @@ "newfold-labs/wp-module-context": "^1.0.1", "newfold-labs/wp-module-data": "^2.5.3", "newfold-labs/wp-module-deactivation": "^1.2.1", - "newfold-labs/wp-module-ecommerce": "^1.3.34", + "newfold-labs/wp-module-ecommerce": "^1.3.35", "newfold-labs/wp-module-facebook": "^1.0.9", "newfold-labs/wp-module-features": "^1.4.2", "newfold-labs/wp-module-global-ctb": "^1.0.12", diff --git a/composer.lock b/composer.lock index f89b78210..ec4f8d93a 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": "c667c764fa83fdf6b5319af7413f2519", + "content-hash": "3fe2c57d603b585abd00143039e6ad11", "packages": [ { "name": "doctrine/inflector", @@ -652,16 +652,16 @@ }, { "name": "newfold-labs/wp-module-ecommerce", - "version": "v1.3.34", + "version": "v1.3.35", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-ecommerce.git", - "reference": "9fba36ec1df919d911e38dac66180999c896a2a1" + "reference": "3478b6e1a8ce2938ab2fc74229ea2707cbff7aac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-ecommerce/zipball/9fba36ec1df919d911e38dac66180999c896a2a1", - "reference": "9fba36ec1df919d911e38dac66180999c896a2a1", + "url": "https://api.github.com/repos/newfold-labs/wp-module-ecommerce/zipball/3478b6e1a8ce2938ab2fc74229ea2707cbff7aac", + "reference": "3478b6e1a8ce2938ab2fc74229ea2707cbff7aac", "shasum": "" }, "require": { @@ -704,10 +704,10 @@ ], "description": "Brand Agnostic eCommerce Experience", "support": { - "source": "https://github.com/newfold-labs/wp-module-ecommerce/tree/v1.3.34", + "source": "https://github.com/newfold-labs/wp-module-ecommerce/tree/v1.3.35", "issues": "https://github.com/newfold-labs/wp-module-ecommerce/issues" }, - "time": "2024-06-26T11:40:56+00:00" + "time": "2024-06-27T15:00:00+00:00" }, { "name": "newfold-labs/wp-module-facebook", @@ -1034,16 +1034,16 @@ }, { "name": "newfold-labs/wp-module-marketplace", - "version": "2.3.0", + "version": "2.3.1", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-marketplace.git", - "reference": "2d5064b3a935246f4e05f826b97663bdaa251d3e" + "reference": "a3d9b4121d1de7dbf6ec1e23aa60cb851cf2f39c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-marketplace/zipball/2d5064b3a935246f4e05f826b97663bdaa251d3e", - "reference": "2d5064b3a935246f4e05f826b97663bdaa251d3e", + "url": "https://api.github.com/repos/newfold-labs/wp-module-marketplace/zipball/a3d9b4121d1de7dbf6ec1e23aa60cb851cf2f39c", + "reference": "a3d9b4121d1de7dbf6ec1e23aa60cb851cf2f39c", "shasum": "" }, "require": { @@ -1084,10 +1084,10 @@ ], "description": "A module for rendering product data and interacting with the Hiive marketplace API.", "support": { - "source": "https://github.com/newfold-labs/wp-module-marketplace/tree/2.3.0", + "source": "https://github.com/newfold-labs/wp-module-marketplace/tree/2.3.1", "issues": "https://github.com/newfold-labs/wp-module-marketplace/issues" }, - "time": "2024-06-18T05:06:33+00:00" + "time": "2024-06-26T20:22:11+00:00" }, { "name": "newfold-labs/wp-module-migration", @@ -1190,16 +1190,16 @@ }, { "name": "newfold-labs/wp-module-onboarding", - "version": "2.3.4", + "version": "2.3.5", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding.git", - "reference": "243277e79a3bd42f16b4d186f4575bf46fea67c7" + "reference": "50ace2a0dbfed48ebf8b8409b80736d5d48d9159" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/243277e79a3bd42f16b4d186f4575bf46fea67c7", - "reference": "243277e79a3bd42f16b4d186f4575bf46fea67c7", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/50ace2a0dbfed48ebf8b8409b80736d5d48d9159", + "reference": "50ace2a0dbfed48ebf8b8409b80736d5d48d9159", "shasum": "" }, "require": { @@ -1245,23 +1245,23 @@ ], "description": "Next-generation WordPress Onboarding for WordPress sites at Newfold Digital.", "support": { - "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.3.4", + "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.3.5", "issues": "https://github.com/newfold-labs/wp-module-onboarding/issues" }, - "time": "2024-06-14T13:15:51+00:00" + "time": "2024-06-27T14:10:10+00:00" }, { "name": "newfold-labs/wp-module-onboarding-data", - "version": "1.1.12", + "version": "1.1.13", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding-data.git", - "reference": "efce79142be2deb7382b0c500a17be75fc9a5708" + "reference": "dd6784cd136ac687a373e27f2f51999d93e97788" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding-data/zipball/efce79142be2deb7382b0c500a17be75fc9a5708", - "reference": "efce79142be2deb7382b0c500a17be75fc9a5708", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding-data/zipball/dd6784cd136ac687a373e27f2f51999d93e97788", + "reference": "dd6784cd136ac687a373e27f2f51999d93e97788", "shasum": "" }, "require": { @@ -1273,6 +1273,7 @@ "newfold-labs/wp-module-installer": "^1.1", "newfold-labs/wp-module-patterns": "^1.0", "newfold-labs/wp-module-performance": "^1.4", + "newfold-labs/wp-module-survey": "^1.0", "wp-forge/wp-upgrade-handler": "^1.0" }, "require-dev": { @@ -1296,10 +1297,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.12", + "source": "https://github.com/newfold-labs/wp-module-onboarding-data/tree/1.1.13", "issues": "https://github.com/newfold-labs/wp-module-onboarding-data/issues" }, - "time": "2024-06-14T12:45:33+00:00" + "time": "2024-06-27T13:27:53+00:00" }, { "name": "newfold-labs/wp-module-patterns", @@ -1606,6 +1607,49 @@ }, "time": "2024-05-29T14:18:17+00:00" }, + { + "name": "newfold-labs/wp-module-survey", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-survey.git", + "reference": "6c37264f2a607a330ac25e65555d99ec38972b2e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-survey/zipball/6c37264f2a607a330ac25e65555d99ec38972b2e", + "reference": "6c37264f2a607a330ac25e65555d99ec38972b2e", + "shasum": "" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2", + "wp-cli/i18n-command": "^2.4.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\Survey\\": "includes" + }, + "files": [ + "bootstrap.php" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "arunshenoy99", + "email": "devarunshenoy99@gmail.com" + } + ], + "description": "A Newfold module to collect customer satisfaction feedback via surveys in the WordPress admin dashboard.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-survey/tree/1.0.0", + "issues": "https://github.com/newfold-labs/wp-module-survey/issues" + }, + "time": "2024-06-27T09:50:43+00:00" + }, { "name": "wp-cli/wp-config-transformer", "version": "v1.3.5", @@ -2763,12 +2807,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "59b0da5b0c3aea934f731036370e1dcb7c56da19" + "reference": "27714b56f04815b654c3805502ab77207505ac19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/59b0da5b0c3aea934f731036370e1dcb7c56da19", - "reference": "59b0da5b0c3aea934f731036370e1dcb7c56da19", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/27714b56f04815b654c3805502ab77207505ac19", + "reference": "27714b56f04815b654c3805502ab77207505ac19", "shasum": "" }, "conflict": { @@ -3159,7 +3203,7 @@ "october/cms": "<1.0.469|==1.0.469|==1.0.471|==1.1.1", "october/october": "<=3.4.4", "october/rain": "<1.0.472|>=1.1,<1.1.2", - "october/system": "<1.0.476|>=1.1,<1.1.12|>=2,<2.2.34|>=3,<3.5.2", + "october/system": "<1.0.476|>=1.1,<1.1.12|>=2,<2.2.34|>=3,<3.5.15", "omeka/omeka-s": "<4.0.3", "onelogin/php-saml": "<2.10.4", "oneup/uploader-bundle": ">=1,<1.9.3|>=2,<2.1.5", @@ -3560,7 +3604,7 @@ "type": "tidelift" } ], - "time": "2024-06-25T18:06:06+00:00" + "time": "2024-06-26T15:05:17+00:00" }, { "name": "squizlabs/php_codesniffer", diff --git a/package-lock.json b/package-lock.json index 323488b20..91508a6ab 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,7 @@ "license": "GPL-2.0-or-later", "dependencies": { "@heroicons/react": "^2.1.1", - "@newfold-labs/wp-module-ecommerce": "^1.3.34", + "@newfold-labs/wp-module-ecommerce": "^1.3.35", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", @@ -3197,9 +3197,9 @@ } }, "node_modules/@newfold-labs/wp-module-ecommerce": { - "version": "1.3.34", - "resolved": "https://npm.pkg.github.com/download/@newfold-labs/wp-module-ecommerce/1.3.34/5760cd0316622df2a8d75f1e099827f7bfbfb0a0", - "integrity": "sha512-QDggtluY7osHaKkfhW2DyGiK4Znv+F5CPTpHjLp5osqia1tDxMLKkSeHN5QM9Y3G+XWVUNpx+97O44jDxUT9MQ==", + "version": "1.3.35", + "resolved": "https://npm.pkg.github.com/download/@newfold-labs/wp-module-ecommerce/1.3.35/ac741f7aead7ac75b0cb4d479c64d7fb4c83ccc3", + "integrity": "sha512-TX5tHdYWMuvzFu9dqXYyFdN4wde+0Tuyr45nXR+cDhSTPKcYP77DETGmjfrO6a4mah1xoLKKR6G4nqGSb7yp6A==", "dependencies": { "@faizaanceg/pandora": "^1.1.1", "@heroicons/react": "2.1.3", diff --git a/package.json b/package.json index 8cff1e841..0cc6e545e 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ }, "dependencies": { "@heroicons/react": "^2.1.1", - "@newfold-labs/wp-module-ecommerce": "^1.3.34", + "@newfold-labs/wp-module-ecommerce": "^1.3.35", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", From 382bf5e65d34c7add9c237777a8331de51253c59 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 15:11:32 +0000 Subject: [PATCH 20/57] NPM(deps): Bump @wordpress/dom-ready from 4.1.0 to 4.2.0 Bumps [@wordpress/dom-ready](https://github.com/WordPress/gutenberg/tree/HEAD/packages/dom-ready) from 4.1.0 to 4.2.0. - [Release notes](https://github.com/WordPress/gutenberg/releases) - [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/dom-ready/CHANGELOG.md) - [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/dom-ready@4.2.0/packages/dom-ready) --- updated-dependencies: - dependency-name: "@wordpress/dom-ready" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index eaf00c929..044dd9af2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,7 +16,7 @@ "@newfold/ui-component-library": "^1.1.0", "@reduxjs/toolkit": "^2.2.5", "@wordpress/compose": "^7.1.0", - "@wordpress/dom-ready": "^4.1.0", + "@wordpress/dom-ready": "^4.2.0", "@wordpress/element": "^6.1.0", "@wordpress/html-entities": "^4.1.0", "@wordpress/i18n": "^4.58.0", @@ -5727,9 +5727,9 @@ } }, "node_modules/@wordpress/dom-ready": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/dom-ready/-/dom-ready-4.1.0.tgz", - "integrity": "sha512-FxlhDPGpe29rWLph3GpkQUG3sRSNRxji871S9+DviE4zt/872rKe6caum1QptsJN8rcn/hm+HIOS7qrYFjS2Xg==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom-ready/-/dom-ready-4.2.0.tgz", + "integrity": "sha512-1rD9vcwVy7s+yGbe8DuDkBpjvA/PJtY2DnUgyHIedC/YonlswalBSiFWGZuTX5QyocdffBAWiUlvebyN4TNtOw==", "dependencies": { "@babel/runtime": "^7.16.0" }, diff --git a/package.json b/package.json index b2e3a6d46..4497fddab 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "@newfold/ui-component-library": "^1.1.0", "@reduxjs/toolkit": "^2.2.5", "@wordpress/compose": "^7.1.0", - "@wordpress/dom-ready": "^4.1.0", + "@wordpress/dom-ready": "^4.2.0", "@wordpress/element": "^6.1.0", "@wordpress/html-entities": "^4.1.0", "@wordpress/i18n": "^4.58.0", From 88cdca721b0b3bf8cf3f49d58e7285a2d794f914 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 15:12:54 +0000 Subject: [PATCH 21/57] NPM Dev(deps-dev): Bump tailwindcss from 3.4.3 to 3.4.4 Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 3.4.3 to 3.4.4. - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.4/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.3...v3.4.4) --- updated-dependencies: - dependency-name: tailwindcss dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index eaf00c929..dbbb3acc6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -40,7 +40,7 @@ "cypress-axe": "^1.5.0", "eslint-import-resolver-alias": "^1.1.2", "eslint-plugin-import": "^2.29.1", - "tailwindcss": "^3.4.1" + "tailwindcss": "^3.4.4" }, "engines": { "node": ">=20", @@ -20988,9 +20988,9 @@ } }, "node_modules/tailwindcss": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.3.tgz", - "integrity": "sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==", + "version": "3.4.4", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.4.tgz", + "integrity": "sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==", "dev": true, "dependencies": { "@alloc/quick-lru": "^5.2.0", diff --git a/package.json b/package.json index b2e3a6d46..4b989862e 100644 --- a/package.json +++ b/package.json @@ -63,7 +63,7 @@ "cypress-axe": "^1.5.0", "eslint-import-resolver-alias": "^1.1.2", "eslint-plugin-import": "^2.29.1", - "tailwindcss": "^3.4.1" + "tailwindcss": "^3.4.4" }, "scripts": { "build": "NODE_ENV=production wp-scripts build", From 7480d78ce784ec4aafeeb946d97ca54a684c1e47 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 15:04:12 +0000 Subject: [PATCH 22/57] Composer(deps): Bump newfold-labs/wp-module-marketplace Bumps [newfold-labs/wp-module-marketplace](https://github.com/newfold-labs/wp-module-marketplace) from 2.3.0 to 2.3.1. - [Release notes](https://github.com/newfold-labs/wp-module-marketplace/releases) - [Commits](https://github.com/newfold-labs/wp-module-marketplace/compare/2.3.0...2.3.1) --- updated-dependencies: - dependency-name: newfold-labs/wp-module-marketplace dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- composer.lock | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index 412bfff91..558e44b44 100644 --- a/composer.json +++ b/composer.json @@ -85,7 +85,7 @@ "newfold-labs/wp-module-global-ctb": "^1.0.13", "newfold-labs/wp-module-help-center": "^2.0.0", "newfold-labs/wp-module-loader": "^1.0.10", - "newfold-labs/wp-module-marketplace": "^2.3.0", + "newfold-labs/wp-module-marketplace": "^2.3.1", "newfold-labs/wp-module-migration": "^1.0.7", "newfold-labs/wp-module-notifications": "^1.3.0", "newfold-labs/wp-module-onboarding": "^2.3.4", diff --git a/composer.lock b/composer.lock index f18d73f60..b8204f06e 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": "c4b2d74d9782dad84e8fb74a72279620", + "content-hash": "365cc9b31c127dc60ba30375e8591c6c", "packages": [ { "name": "doctrine/inflector", @@ -1034,16 +1034,16 @@ }, { "name": "newfold-labs/wp-module-marketplace", - "version": "2.3.0", + "version": "2.3.1", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-marketplace.git", - "reference": "2d5064b3a935246f4e05f826b97663bdaa251d3e" + "reference": "a3d9b4121d1de7dbf6ec1e23aa60cb851cf2f39c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-marketplace/zipball/2d5064b3a935246f4e05f826b97663bdaa251d3e", - "reference": "2d5064b3a935246f4e05f826b97663bdaa251d3e", + "url": "https://api.github.com/repos/newfold-labs/wp-module-marketplace/zipball/a3d9b4121d1de7dbf6ec1e23aa60cb851cf2f39c", + "reference": "a3d9b4121d1de7dbf6ec1e23aa60cb851cf2f39c", "shasum": "" }, "require": { @@ -1084,10 +1084,10 @@ ], "description": "A module for rendering product data and interacting with the Hiive marketplace API.", "support": { - "source": "https://github.com/newfold-labs/wp-module-marketplace/tree/2.3.0", + "source": "https://github.com/newfold-labs/wp-module-marketplace/tree/2.3.1", "issues": "https://github.com/newfold-labs/wp-module-marketplace/issues" }, - "time": "2024-06-18T05:06:33+00:00" + "time": "2024-06-26T20:22:11+00:00" }, { "name": "newfold-labs/wp-module-migration", From 226d6c6c268253c3705c23542d3f3f71aecaad85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 15:36:33 +0000 Subject: [PATCH 23/57] NPM(deps): Bump react-router-dom from 6.23.1 to 6.24.0 Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.23.1 to 6.24.0. - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.24.0/packages/react-router-dom) --- updated-dependencies: - dependency-name: react-router-dom dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 26 +++++++++++++------------- package.json | 2 +- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/package-lock.json b/package-lock.json index 204c6afa1..479cc4eed 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,7 +26,7 @@ "lodash": "^4.17.21", "react": "^18.2.0", "react-error-boundary": "^4.0.13", - "react-router-dom": "^6.22.3", + "react-router-dom": "^6.24.0", "react-use": "^17.5.0", "semver": "^7.5.4" }, @@ -3620,9 +3620,9 @@ } }, "node_modules/@remix-run/router": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.16.1.tgz", - "integrity": "sha512-es2g3dq6Nb07iFxGk5GuHN20RwBZOsuDQN7izWIisUcv9r+d2C5jQxqmgkdebXgReWfiyUabcki6Fg77mSNrig==", + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.17.0.tgz", + "integrity": "sha512-2D6XaHEVvkCn682XBnipbJjgZUU7xjLtA4dGJRBVUKpEaDYOZMENZoZjAOSb7qirxt5RupjzZxz4fK2FO+EFPw==", "engines": { "node": ">=14.0.0" } @@ -18766,11 +18766,11 @@ } }, "node_modules/react-router": { - "version": "6.23.1", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.23.1.tgz", - "integrity": "sha512-fzcOaRF69uvqbbM7OhvQyBTFDVrrGlsFdS3AL+1KfIBtGETibHzi3FkoTRyiDJnWNc2VxrfvR+657ROHjaNjqQ==", + "version": "6.24.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.24.0.tgz", + "integrity": "sha512-sQrgJ5bXk7vbcC4BxQxeNa5UmboFm35we1AFK0VvQaz9g0LzxEIuLOhHIoZ8rnu9BO21ishGeL9no1WB76W/eg==", "dependencies": { - "@remix-run/router": "1.16.1" + "@remix-run/router": "1.17.0" }, "engines": { "node": ">=14.0.0" @@ -18780,12 +18780,12 @@ } }, "node_modules/react-router-dom": { - "version": "6.23.1", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.23.1.tgz", - "integrity": "sha512-utP+K+aSTtEdbWpC+4gxhdlPFwuEfDKq8ZrPFU65bbRJY+l706qjR7yaidBpo3MSeA/fzwbXWbKBI6ftOnP3OQ==", + "version": "6.24.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.24.0.tgz", + "integrity": "sha512-960sKuau6/yEwS8e+NVEidYQb1hNjAYM327gjEyXlc6r3Skf2vtwuJ2l7lssdegD2YjoKG5l8MsVyeTDlVeY8g==", "dependencies": { - "@remix-run/router": "1.16.1", - "react-router": "6.23.1" + "@remix-run/router": "1.17.0", + "react-router": "6.24.0" }, "engines": { "node": ">=14.0.0" diff --git a/package.json b/package.json index 243784445..640e4d902 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "lodash": "^4.17.21", "react": "^18.2.0", "react-error-boundary": "^4.0.13", - "react-router-dom": "^6.22.3", + "react-router-dom": "^6.24.0", "react-use": "^17.5.0", "semver": "^7.5.4" }, From 433af026e67ce5e0c54b92483357c4055375d234 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 15:37:16 +0000 Subject: [PATCH 24/57] NPM(deps): Bump @wordpress/i18n from 4.58.0 to 5.2.0 Bumps [@wordpress/i18n](https://github.com/WordPress/gutenberg/tree/HEAD/packages/i18n) from 4.58.0 to 5.2.0. - [Release notes](https://github.com/WordPress/gutenberg/releases) - [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/i18n/CHANGELOG.md) - [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/i18n@5.2.0/packages/i18n) --- updated-dependencies: - dependency-name: "@wordpress/i18n" dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package-lock.json | 159 ++++++++++++++++++++++++++++++++++++++-------- package.json | 2 +- 2 files changed, 134 insertions(+), 27 deletions(-) diff --git a/package-lock.json b/package-lock.json index 204c6afa1..07208bc16 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19,7 +19,7 @@ "@wordpress/dom-ready": "^4.2.0", "@wordpress/element": "^6.1.0", "@wordpress/html-entities": "^4.1.0", - "@wordpress/i18n": "^4.58.0", + "@wordpress/i18n": "^5.2.0", "@wordpress/icons": "^10.2.0", "classnames": "^2.5.1", "jquery": "^3.7.1", @@ -3267,6 +3267,25 @@ "node": ">=12" } }, + "node_modules/@newfold-labs/wp-module-ecommerce/node_modules/@wordpress/i18n": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-4.58.0.tgz", + "integrity": "sha512-VfvS3BWv/RDjRKD6PscIcvYfWKnGJcI/DEqyDgUMhxCM6NRwoL478CsUKTiGJIymeyRodNRfprdcF086DpGKYw==", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^3.58.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/@newfold-labs/wp-module-facebook": { "version": "1.0.7", "resolved": "https://npm.pkg.github.com/download/@newfold-labs/wp-module-facebook/1.0.7/47dab055e53ab8134c19943d7a60b677b9c940b6", @@ -5241,6 +5260,25 @@ "node": ">=12" } }, + "node_modules/@wordpress/a11y/node_modules/@wordpress/i18n": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-4.58.0.tgz", + "integrity": "sha512-VfvS3BWv/RDjRKD6PscIcvYfWKnGJcI/DEqyDgUMhxCM6NRwoL478CsUKTiGJIymeyRodNRfprdcF086DpGKYw==", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^3.58.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/@wordpress/api-fetch": { "version": "6.54.0", "resolved": "https://registry.npmjs.org/@wordpress/api-fetch/-/api-fetch-6.54.0.tgz", @@ -5254,6 +5292,25 @@ "node": ">=12" } }, + "node_modules/@wordpress/api-fetch/node_modules/@wordpress/i18n": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-4.58.0.tgz", + "integrity": "sha512-VfvS3BWv/RDjRKD6PscIcvYfWKnGJcI/DEqyDgUMhxCM6NRwoL478CsUKTiGJIymeyRodNRfprdcF086DpGKYw==", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^3.58.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/@wordpress/api-fetch/node_modules/@wordpress/url": { "version": "3.58.0", "resolved": "https://registry.npmjs.org/@wordpress/url/-/url-3.58.0.tgz", @@ -5432,6 +5489,25 @@ "node": ">=12" } }, + "node_modules/@wordpress/components/node_modules/@wordpress/i18n": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-4.58.0.tgz", + "integrity": "sha512-VfvS3BWv/RDjRKD6PscIcvYfWKnGJcI/DEqyDgUMhxCM6NRwoL478CsUKTiGJIymeyRodNRfprdcF086DpGKYw==", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^3.58.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/@wordpress/components/node_modules/@wordpress/icons": { "version": "9.49.0", "resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-9.49.0.tgz", @@ -5522,26 +5598,6 @@ "npm": ">=8.19.2" } }, - "node_modules/@wordpress/compose/node_modules/@wordpress/i18n": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.1.0.tgz", - "integrity": "sha512-zNJiudByLnpIVhIS45hr92r53t+wRYp9a6XOJ585xNYeUmoUpymY5GTdLSrExmQaytMhV5cSXSn3qMMDBMjUsg==", - "dependencies": { - "@babel/runtime": "^7.16.0", - "@wordpress/hooks": "^4.1.0", - "gettext-parser": "^1.3.1", - "memize": "^2.1.0", - "sprintf-js": "^1.1.1", - "tannin": "^1.2.0" - }, - "bin": { - "pot-to-php": "tools/pot-to-php.js" - }, - "engines": { - "node": ">=18.12.0", - "npm": ">=8.19.2" - } - }, "node_modules/@wordpress/compose/node_modules/@wordpress/is-shallow-equal": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.1.0.tgz", @@ -5968,12 +6024,12 @@ } }, "node_modules/@wordpress/i18n": { - "version": "4.58.0", - "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-4.58.0.tgz", - "integrity": "sha512-VfvS3BWv/RDjRKD6PscIcvYfWKnGJcI/DEqyDgUMhxCM6NRwoL478CsUKTiGJIymeyRodNRfprdcF086DpGKYw==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.2.0.tgz", + "integrity": "sha512-G8z3/o1gm158XHANzthMBLsInQ/iWBFFIUoThiOP8C+VtpVozVpmWpgdayldPoTYolhCdaW6dicNUfdX8fOBTQ==", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/hooks": "^3.58.0", + "@wordpress/hooks": "^4.2.0", "gettext-parser": "^1.3.1", "memize": "^2.1.0", "sprintf-js": "^1.1.1", @@ -5983,7 +6039,20 @@ "pot-to-php": "tools/pot-to-php.js" }, "engines": { - "node": ">=12" + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/i18n/node_modules/@wordpress/hooks": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.2.0.tgz", + "integrity": "sha512-N2dRMIb3F6y2dXlcT6m2CH/jDi9/Fe0gaM6ev7DrvwJ8+kX1CRzwAydemmPw34EnhQKvYKQYgGqttrfzvzgKJw==", + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, "node_modules/@wordpress/icons": { @@ -6072,6 +6141,25 @@ "node": ">=12" } }, + "node_modules/@wordpress/keycodes/node_modules/@wordpress/i18n": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-4.58.0.tgz", + "integrity": "sha512-VfvS3BWv/RDjRKD6PscIcvYfWKnGJcI/DEqyDgUMhxCM6NRwoL478CsUKTiGJIymeyRodNRfprdcF086DpGKYw==", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^3.58.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/@wordpress/npm-package-json-lint-config": { "version": "4.42.0", "resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-4.42.0.tgz", @@ -6252,6 +6340,25 @@ "node": ">=12" } }, + "node_modules/@wordpress/rich-text/node_modules/@wordpress/i18n": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-4.58.0.tgz", + "integrity": "sha512-VfvS3BWv/RDjRKD6PscIcvYfWKnGJcI/DEqyDgUMhxCM6NRwoL478CsUKTiGJIymeyRodNRfprdcF086DpGKYw==", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^3.58.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/@wordpress/rich-text/node_modules/@wordpress/undo-manager": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-0.18.0.tgz", diff --git a/package.json b/package.json index 243784445..48a0ef2c2 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "@wordpress/dom-ready": "^4.2.0", "@wordpress/element": "^6.1.0", "@wordpress/html-entities": "^4.1.0", - "@wordpress/i18n": "^4.58.0", + "@wordpress/i18n": "^5.2.0", "@wordpress/icons": "^10.2.0", "classnames": "^2.5.1", "jquery": "^3.7.1", From e26939d2ae4857fe2a0b80754285f1acbc1c8d69 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 16:41:11 +0000 Subject: [PATCH 25/57] NPM(deps): Bump @wordpress/html-entities from 4.1.0 to 4.2.0 Bumps [@wordpress/html-entities](https://github.com/WordPress/gutenberg/tree/HEAD/packages/html-entities) from 4.1.0 to 4.2.0. - [Release notes](https://github.com/WordPress/gutenberg/releases) - [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/html-entities/CHANGELOG.md) - [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/html-entities@4.2.0/packages/html-entities) --- updated-dependencies: - dependency-name: "@wordpress/html-entities" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 39351fc22..ba8f910f5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18,7 +18,7 @@ "@wordpress/compose": "^7.1.0", "@wordpress/dom-ready": "^4.2.0", "@wordpress/element": "^6.1.0", - "@wordpress/html-entities": "^4.1.0", + "@wordpress/html-entities": "^4.2.0", "@wordpress/i18n": "^5.2.0", "@wordpress/icons": "^10.2.0", "classnames": "^2.5.1", @@ -6012,9 +6012,9 @@ } }, "node_modules/@wordpress/html-entities": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.1.0.tgz", - "integrity": "sha512-9VXyZy99hZwkBK8p8p4bOo7oGOhyLlaVPoIX2D/bspcSh1r58CPXkHq8jK/+uqE8ihLs+WnW21Lud8qe0tg4Bw==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.2.0.tgz", + "integrity": "sha512-NwYv/VSxASrhIqjcgVkKS9s9kAseTJ6NYVpqCm8owz81GqYcpOe2XVCKQxOKHcU8x9Gm99uHR10jztXXJr1Z2Q==", "dependencies": { "@babel/runtime": "^7.16.0" }, diff --git a/package.json b/package.json index d50771f2c..3d29e1946 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "@wordpress/compose": "^7.1.0", "@wordpress/dom-ready": "^4.2.0", "@wordpress/element": "^6.1.0", - "@wordpress/html-entities": "^4.1.0", + "@wordpress/html-entities": "^4.2.0", "@wordpress/i18n": "^5.2.0", "@wordpress/icons": "^10.2.0", "classnames": "^2.5.1", From 73958709676be3ce67b607dafcb98ed59a18261f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 16:42:17 +0000 Subject: [PATCH 26/57] NPM(deps): Bump @wordpress/compose from 7.1.0 to 7.2.0 Bumps [@wordpress/compose](https://github.com/WordPress/gutenberg/tree/HEAD/packages/compose) from 7.1.0 to 7.2.0. - [Release notes](https://github.com/WordPress/gutenberg/releases) - [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/compose/CHANGELOG.md) - [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/compose@7.2.0/packages/compose) --- updated-dependencies: - dependency-name: "@wordpress/compose" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 78 +++++++++++++++++++++++------------------------ package.json | 2 +- 2 files changed, 40 insertions(+), 40 deletions(-) diff --git a/package-lock.json b/package-lock.json index 42b7256a0..702e0bdd6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,7 +15,7 @@ "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", "@reduxjs/toolkit": "^2.2.5", - "@wordpress/compose": "^7.1.0", + "@wordpress/compose": "^7.2.0", "@wordpress/dom-ready": "^4.2.0", "@wordpress/element": "^6.1.0", "@wordpress/html-entities": "^4.1.0", @@ -5525,19 +5525,19 @@ } }, "node_modules/@wordpress/compose": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.1.0.tgz", - "integrity": "sha512-YxH191innNfsCzloxPLhxJh98avjMqYKH8as9srXqy6alN6QDQX7t4JYqT3+vjgRpJPwfzW7aBP2IO+u0cAz2w==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.2.0.tgz", + "integrity": "sha512-J2OGEatXXTgRJmXZHYcstL5GyQgQcoeSJ9dQ2wVFHJLnWoIX3hlvi5oRy10lpl1yntfm6NLkWDBuSTIbAYJzww==", "dependencies": { "@babel/runtime": "^7.16.0", "@types/mousetrap": "^1.6.8", - "@wordpress/deprecated": "^4.1.0", - "@wordpress/dom": "^4.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/is-shallow-equal": "^5.1.0", - "@wordpress/keycodes": "^4.1.0", - "@wordpress/priority-queue": "^3.1.0", - "@wordpress/undo-manager": "^1.1.0", + "@wordpress/deprecated": "^4.2.0", + "@wordpress/dom": "^4.2.0", + "@wordpress/element": "^6.2.0", + "@wordpress/is-shallow-equal": "^5.2.0", + "@wordpress/keycodes": "^4.2.0", + "@wordpress/priority-queue": "^3.2.0", + "@wordpress/undo-manager": "^1.2.0", "change-case": "^4.1.2", "clipboard": "^2.0.11", "mousetrap": "^1.6.5", @@ -5552,12 +5552,12 @@ } }, "node_modules/@wordpress/compose/node_modules/@wordpress/deprecated": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.1.0.tgz", - "integrity": "sha512-iZ/Vmhf3Tkq03DIuyef/+ZXsQanCZJsUc8xFPFXKn4ACHeo6Ds0krfFZ/AC0qwpW+cnHCaIEdqoEosHUnemGsQ==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.2.0.tgz", + "integrity": "sha512-grD/IBGEvXzTLaNB45QZv8jDQYK6bMhCSa7obRahZDpyrM2lwKwa8p1oack5R+81YWkBL02gl9V5G9BrpNfBJg==", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/hooks": "^4.1.0" + "@wordpress/hooks": "^4.2.0" }, "engines": { "node": ">=18.12.0", @@ -5565,12 +5565,12 @@ } }, "node_modules/@wordpress/compose/node_modules/@wordpress/dom": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.1.0.tgz", - "integrity": "sha512-G3RhtPkuOLy/q46W4PWC5hMPX7Y7Gn7MLzbmOi1M5z0xUIWJWKXaxXx1hm6qgmRokY/Z8yRHl/PqEGe/UQIV6w==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.2.0.tgz", + "integrity": "sha512-vkeIsFdoKWl6lZJM+E49b+HocePP8gSPiDeUaa3P82JPTLTNAAfQMGWbAG0dbQCOZa7pmF4Sh0T1iVYmznm6eA==", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/deprecated": "^4.1.0" + "@wordpress/deprecated": "^4.2.0" }, "engines": { "node": ">=18.12.0", @@ -5578,9 +5578,9 @@ } }, "node_modules/@wordpress/compose/node_modules/@wordpress/hooks": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.1.0.tgz", - "integrity": "sha512-uJ2zyLLs6AwWuEdLGv/P7oSXJuX27Ym6JglzWGBavxAKNXpTCCjiJwgxlZJbSjT3BzhRsRGl3bUMmzt3eh50Pg==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.2.0.tgz", + "integrity": "sha512-N2dRMIb3F6y2dXlcT6m2CH/jDi9/Fe0gaM6ev7DrvwJ8+kX1CRzwAydemmPw34EnhQKvYKQYgGqttrfzvzgKJw==", "dependencies": { "@babel/runtime": "^7.16.0" }, @@ -5590,9 +5590,9 @@ } }, "node_modules/@wordpress/compose/node_modules/@wordpress/is-shallow-equal": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.1.0.tgz", - "integrity": "sha512-OZH/p43ZNJaSF40oi6dNdlsLqxjd4pZ1H4QxDg46vXT0TztU1rT/HOeJWyVmHIjx/4utuGaLJBZcfK4cKPQXUg==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.2.0.tgz", + "integrity": "sha512-WIsaAu+vDoAwnfGSWqyOMZiJeKXMXHNj6SzuESieASbL1VcbWgpg8FjDRjCNCEBgu7oe2VQrDOpDfajI1fgVvw==", "dependencies": { "@babel/runtime": "^7.16.0" }, @@ -5602,12 +5602,12 @@ } }, "node_modules/@wordpress/compose/node_modules/@wordpress/keycodes": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.1.0.tgz", - "integrity": "sha512-ibAR7qg4q7082s9kOPnZ0Hqb6KM/zjAZBjEH2Yrc2jwLJ83QDGKDWCSx6dNYkN7m9jGpH52w8j4nz1wcbFZSiw==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.2.0.tgz", + "integrity": "sha512-FJMR+KLfltcfmd0GhpI2C+zohFaGwPwZTYx9e0+cnIDJ5c5Jw1KTToZ+gkWPoSi++U/dlqkxkKYLD4AnGg7L5Q==", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/i18n": "^5.1.0" + "@wordpress/i18n": "^5.2.0" }, "engines": { "node": ">=18.12.0", @@ -5615,9 +5615,9 @@ } }, "node_modules/@wordpress/compose/node_modules/@wordpress/priority-queue": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.1.0.tgz", - "integrity": "sha512-soJddzCToRuF5ofayRUo0YYeJ9KZLM7ROzwwKIANOEcDt8+hnFRGmGorpfHYiDSThI4PtNqy6PdMOSy5/hvbFw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.2.0.tgz", + "integrity": "sha512-Kz/Zv+/TzgsKi5M3/iE2w4sMSi0f2Q3KnmU6taS5bEiiKRHvuC1U629YBsXCvBfi+7QWe2L7J7OVcLRwdEzAkg==", "dependencies": { "@babel/runtime": "^7.16.0", "requestidlecallback": "^0.3.0" @@ -6501,12 +6501,12 @@ } }, "node_modules/@wordpress/undo-manager": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.1.0.tgz", - "integrity": "sha512-9n+tSxWomyfvGhCWA2fevIgP8/sLcMX3kwdBAwr3PQJ/EbOoamFh7BLMRbSk2oKfXaPSwk8aN4QE92BQpYnL5g==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.2.0.tgz", + "integrity": "sha512-xOjyl2hRro5I3pBuDYvrF+cLe0617KlPiuJok9YPofjUvfDvgf6gPLSBOAPj2GzYkiGASz0fnsPcE4UxS14ApQ==", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/is-shallow-equal": "^5.1.0" + "@wordpress/is-shallow-equal": "^5.2.0" }, "engines": { "node": ">=18.12.0", @@ -6514,9 +6514,9 @@ } }, "node_modules/@wordpress/undo-manager/node_modules/@wordpress/is-shallow-equal": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.1.0.tgz", - "integrity": "sha512-OZH/p43ZNJaSF40oi6dNdlsLqxjd4pZ1H4QxDg46vXT0TztU1rT/HOeJWyVmHIjx/4utuGaLJBZcfK4cKPQXUg==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.2.0.tgz", + "integrity": "sha512-WIsaAu+vDoAwnfGSWqyOMZiJeKXMXHNj6SzuESieASbL1VcbWgpg8FjDRjCNCEBgu7oe2VQrDOpDfajI1fgVvw==", "dependencies": { "@babel/runtime": "^7.16.0" }, diff --git a/package.json b/package.json index 68932bdf3..6302dec00 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", "@reduxjs/toolkit": "^2.2.5", - "@wordpress/compose": "^7.1.0", + "@wordpress/compose": "^7.2.0", "@wordpress/dom-ready": "^4.2.0", "@wordpress/element": "^6.1.0", "@wordpress/html-entities": "^4.1.0", From c034e5eedfb96aff614cba1ba467fe3f839f963f Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Mon, 1 Jul 2024 13:26:25 -0400 Subject: [PATCH 27/57] clean up imports --- src/app/data/routes.js | 7 +++---- src/app/pages/ecommerce/page.js | 6 ++++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/app/data/routes.js b/src/app/data/routes.js index aa04a7f89..e33b689ad 100644 --- a/src/app/data/routes.js +++ b/src/app/data/routes.js @@ -7,10 +7,12 @@ import { BuildingStorefrontIcon, DocumentDuplicateIcon, } from '@heroicons/react/24/outline'; +import { ReactComponent as HelpIcon } from '../components/icons/HelpIcon.svg'; import { NewfoldRuntime } from '@newfold-labs/wp-module-runtime'; +import { getMarketplaceSubnavRoutes } from '@modules/wp-module-marketplace/components/marketplaceSubnav'; import { Route, Routes } from 'react-router-dom'; -import { __ } from '@wordpress/i18n'; import Home from '../pages/home'; +import PagesAndPosts from '../pages/pages-and-posts'; import Store from '../pages/ecommerce/page'; import Marketplace from '../pages/marketplace'; import Performance from '../pages/performance'; @@ -18,9 +20,6 @@ import Settings from '../pages/settings'; import Staging from '../pages/staging'; import Help from '../pages/help'; import Admin from '../pages/admin'; -import { getMarketplaceSubnavRoutes } from '@modules/wp-module-marketplace/components/marketplaceSubnav'; -import { ReactComponent as HelpIcon } from '../components/icons/HelpIcon.svg'; -import PagesAndPosts from '../pages/pages-and-posts'; const addPartialMatch = ( prefix, path ) => prefix === path ? `${ prefix }/*` : path; diff --git a/src/app/pages/ecommerce/page.js b/src/app/pages/ecommerce/page.js index 6033ad282..65e7b6324 100644 --- a/src/app/pages/ecommerce/page.js +++ b/src/app/pages/ecommerce/page.js @@ -5,9 +5,11 @@ import { Page } from '@newfold/ui-component-library'; import { NewfoldECommerce } from '@newfold-labs/wp-module-ecommerce'; import '@newfold-labs/wp-module-ecommerce/bluehost.css'; import AppStore from 'App/data/store'; -import { bluehostSettingsApiFetch } from 'App/util/helpers'; +import { + bluehostSettingsApiFetch, + comingSoonAdminbarToggle, +} from 'App/util/helpers'; import { useNotification } from 'App/components/notifications'; -import { comingSoonAdminbarToggle } from '../../util/helpers'; const ECommerce = () => { const { store, setStore } = useContext( AppStore ); From 80ff3f31435bccf162658890796648f5b67e066c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 19:23:29 +0000 Subject: [PATCH 28/57] NPM(deps): Bump @reduxjs/toolkit from 2.2.5 to 2.2.6 Bumps [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) from 2.2.5 to 2.2.6. - [Release notes](https://github.com/reduxjs/redux-toolkit/releases) - [Commits](https://github.com/reduxjs/redux-toolkit/compare/v2.2.5...v2.2.6) --- updated-dependencies: - dependency-name: "@reduxjs/toolkit" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index d3bbe1063..8496727d1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14,7 +14,7 @@ "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", - "@reduxjs/toolkit": "^2.2.5", + "@reduxjs/toolkit": "^2.2.6", "@wordpress/compose": "^7.2.0", "@wordpress/dom-ready": "^4.2.0", "@wordpress/element": "^6.1.0", @@ -3607,9 +3607,9 @@ } }, "node_modules/@reduxjs/toolkit": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.2.5.tgz", - "integrity": "sha512-aeFA/s5NCG7NoJe/MhmwREJxRkDs0ZaSqt0MxhWUrwCf1UQXpwR87RROJEql0uAkLI6U7snBOYOcKw83ew3FPg==", + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.2.6.tgz", + "integrity": "sha512-kH0r495c5z1t0g796eDQAkYbEQ3a1OLYN9o8jQQVZyKyw367pfRGS+qZLkHYvFHiUUdafpoSlQ2QYObIApjPWA==", "dependencies": { "immer": "^10.0.3", "redux": "^5.0.1", diff --git a/package.json b/package.json index e518ba77a..0d8161dac 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", - "@reduxjs/toolkit": "^2.2.5", + "@reduxjs/toolkit": "^2.2.6", "@wordpress/compose": "^7.2.0", "@wordpress/dom-ready": "^4.2.0", "@wordpress/element": "^6.1.0", From 8299b7146ff999e4b660bb0802900d7d88e95c5f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 15:21:47 +0000 Subject: [PATCH 29/57] NPM Dev(deps-dev): Bump cypress from 13.12.0 to 13.13.0 Bumps [cypress](https://github.com/cypress-io/cypress) from 13.12.0 to 13.13.0. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md) - [Commits](https://github.com/cypress-io/cypress/compare/v13.12.0...v13.13.0) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 10 +++++----- package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8496727d1..07b099254 100644 --- a/package-lock.json +++ b/package-lock.json @@ -36,7 +36,7 @@ "@wordpress/env": "^10.2.0", "@wordpress/eslint-plugin": "^19.2.0", "@wordpress/scripts": "^27.4.0", - "cypress": "^13.12.0", + "cypress": "^13.13.0", "cypress-axe": "^1.5.0", "eslint-import-resolver-alias": "^1.1.2", "eslint-plugin-import": "^2.29.1", @@ -9136,9 +9136,9 @@ } }, "node_modules/cypress": { - "version": "13.12.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.12.0.tgz", - "integrity": "sha512-udzS2JilmI9ApO/UuqurEwOvThclin5ntz7K0BtnHBs+tg2Bl9QShLISXpSEMDv/u8b6mqdoAdyKeZiSqKWL8g==", + "version": "13.13.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.13.0.tgz", + "integrity": "sha512-ou/MQUDq4tcDJI2FsPaod2FZpex4kpIK43JJlcBgWrX8WX7R/05ZxGTuxedOuZBfxjZxja+fbijZGyxiLP6CFA==", "dev": true, "hasInstallScript": true, "dependencies": { @@ -9181,7 +9181,7 @@ "request-progress": "^3.0.0", "semver": "^7.5.3", "supports-color": "^8.1.1", - "tmp": "~0.2.1", + "tmp": "~0.2.3", "untildify": "^4.0.0", "yauzl": "^2.10.0" }, diff --git a/package.json b/package.json index 0d8161dac..b280e808a 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,7 @@ "@wordpress/env": "^10.2.0", "@wordpress/eslint-plugin": "^19.2.0", "@wordpress/scripts": "^27.4.0", - "cypress": "^13.12.0", + "cypress": "^13.13.0", "cypress-axe": "^1.5.0", "eslint-import-resolver-alias": "^1.1.2", "eslint-plugin-import": "^2.29.1", From 0b238063e5a55234e02b2739003af2d7a8c0a148 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Jul 2024 15:02:29 +0000 Subject: [PATCH 30/57] NPM(deps): Bump react-router-dom from 6.24.0 to 6.24.1 Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.24.0 to 6.24.1. - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.24.1/packages/react-router-dom) --- updated-dependencies: - dependency-name: react-router-dom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 26 +++++++++++++------------- package.json | 2 +- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8496727d1..8dd040c28 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,7 +26,7 @@ "lodash": "^4.17.21", "react": "^18.2.0", "react-error-boundary": "^4.0.13", - "react-router-dom": "^6.24.0", + "react-router-dom": "^6.24.1", "react-use": "^17.5.0", "semver": "^7.5.4" }, @@ -3630,9 +3630,9 @@ } }, "node_modules/@remix-run/router": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.17.0.tgz", - "integrity": "sha512-2D6XaHEVvkCn682XBnipbJjgZUU7xjLtA4dGJRBVUKpEaDYOZMENZoZjAOSb7qirxt5RupjzZxz4fK2FO+EFPw==", + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.17.1.tgz", + "integrity": "sha512-mCOMec4BKd6BRGBZeSnGiIgwsbLGp3yhVqAD8H+PxiRNEHgDpZb8J1TnrSDlg97t0ySKMQJTHCWBCmBpSmkF6Q==", "engines": { "node": ">=14.0.0" } @@ -18864,11 +18864,11 @@ } }, "node_modules/react-router": { - "version": "6.24.0", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.24.0.tgz", - "integrity": "sha512-sQrgJ5bXk7vbcC4BxQxeNa5UmboFm35we1AFK0VvQaz9g0LzxEIuLOhHIoZ8rnu9BO21ishGeL9no1WB76W/eg==", + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.24.1.tgz", + "integrity": "sha512-PTXFXGK2pyXpHzVo3rR9H7ip4lSPZZc0bHG5CARmj65fTT6qG7sTngmb6lcYu1gf3y/8KxORoy9yn59pGpCnpg==", "dependencies": { - "@remix-run/router": "1.17.0" + "@remix-run/router": "1.17.1" }, "engines": { "node": ">=14.0.0" @@ -18878,12 +18878,12 @@ } }, "node_modules/react-router-dom": { - "version": "6.24.0", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.24.0.tgz", - "integrity": "sha512-960sKuau6/yEwS8e+NVEidYQb1hNjAYM327gjEyXlc6r3Skf2vtwuJ2l7lssdegD2YjoKG5l8MsVyeTDlVeY8g==", + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.24.1.tgz", + "integrity": "sha512-U19KtXqooqw967Vw0Qcn5cOvrX5Ejo9ORmOtJMzYWtCT4/WOfFLIZGGsVLxcd9UkBO0mSTZtXqhZBsWlHr7+Sg==", "dependencies": { - "@remix-run/router": "1.17.0", - "react-router": "6.24.0" + "@remix-run/router": "1.17.1", + "react-router": "6.24.1" }, "engines": { "node": ">=14.0.0" diff --git a/package.json b/package.json index 0d8161dac..f56cddc9c 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "lodash": "^4.17.21", "react": "^18.2.0", "react-error-boundary": "^4.0.13", - "react-router-dom": "^6.24.0", + "react-router-dom": "^6.24.1", "react-use": "^17.5.0", "semver": "^7.5.4" }, From ae73cd7ccca4e51bcee267bb2c3267ce7d86e4b2 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Wed, 3 Jul 2024 13:03:49 -0400 Subject: [PATCH 31/57] use classNames remove imports of `classnames` since its already imported as `classNames` in webpack updates methods passed to modules as needed --- src/app/components/app-nav/index.js | 2 -- src/app/index.js | 4 +--- src/app/pages/admin/index.js | 1 - src/app/pages/home/accountCard.js | 1 - src/app/pages/marketplace/index.js | 3 +-- src/app/pages/performance/index.js | 2 -- src/app/pages/settings/index.js | 1 - src/app/pages/staging/index.js | 3 +-- 8 files changed, 3 insertions(+), 14 deletions(-) diff --git a/src/app/components/app-nav/index.js b/src/app/components/app-nav/index.js index 13af77e95..c8f45bb54 100644 --- a/src/app/components/app-nav/index.js +++ b/src/app/components/app-nav/index.js @@ -2,7 +2,6 @@ import { useEffect, useState } from '@wordpress/element'; import apiFetch from '@wordpress/api-fetch'; import { useViewportMatch } from '@wordpress/compose'; import { addQueryArgs } from '@wordpress/url'; -import classnames from 'classnames'; import { filter } from 'lodash'; import { Modal, SidebarNavigation } from '@newfold/ui-component-library'; import { default as NewfoldNotifications } from '@modules/wp-module-notifications/assets/js/components/notifications/'; @@ -170,7 +169,6 @@ export const SideNav = () => { methods={ { apiFetch, addQueryArgs, - classnames, filter, useState, useEffect, diff --git a/src/app/index.js b/src/app/index.js index 8e1f549e1..cead4f968 100644 --- a/src/app/index.js +++ b/src/app/index.js @@ -5,7 +5,6 @@ import AppStore, { AppStoreProvider } from './data/store'; import { useLocation, HashRouter as Router } from 'react-router-dom'; import { NewfoldRuntime } from '@newfold-labs/wp-module-runtime'; import { SnackbarList, Spinner } from '@wordpress/components'; -import classnames from 'classnames'; import AppRoutes from './data/routes'; import ErrorCard from './components/errorCard'; import { useDispatch, useSelect } from '@wordpress/data'; @@ -56,7 +55,7 @@ const AppBody = ( props ) => { return (
{ methods={ { apiFetch, addQueryArgs, - classnames, filter, useState, useEffect, diff --git a/src/app/pages/admin/index.js b/src/app/pages/admin/index.js index 4f0e2dcd2..3366c3ced 100644 --- a/src/app/pages/admin/index.js +++ b/src/app/pages/admin/index.js @@ -1,4 +1,3 @@ -import classNames from 'classnames'; import HelpCenterSettings from '../settings/helpCenterSettings'; import WonderBlocksSettings from '../settings/wonderBlocksSettings'; import StagingFeatureSettings from '../settings/stagingFeatureSettings'; diff --git a/src/app/pages/home/accountCard.js b/src/app/pages/home/accountCard.js index 801a4ace1..6b813ede6 100644 --- a/src/app/pages/home/accountCard.js +++ b/src/app/pages/home/accountCard.js @@ -13,7 +13,6 @@ import { getPlatformBaseUrl, isJarvis, } from '../../util/helpers'; -import classNames from 'classnames'; const base = [ { diff --git a/src/app/pages/marketplace/index.js b/src/app/pages/marketplace/index.js index a920acd52..fda70e677 100644 --- a/src/app/pages/marketplace/index.js +++ b/src/app/pages/marketplace/index.js @@ -1,7 +1,6 @@ import apiFetch from '@wordpress/api-fetch'; import { useState, useEffect } from '@wordpress/element'; import { useLocation, useMatch, useNavigate } from 'react-router-dom'; -import classnames from 'classnames'; import { Container, Page } from '@newfold/ui-component-library'; import { NewfoldRuntime } from '@newfold-labs/wp-module-runtime'; // component sourced from marketplace module @@ -44,7 +43,7 @@ const MarketplacePage = () => { // methods to pass to module const moduleMethods = { apiFetch, - classnames, + classNames, useState, useEffect, useLocation, diff --git a/src/app/pages/performance/index.js b/src/app/pages/performance/index.js index d1b4e3b32..526632b3a 100644 --- a/src/app/pages/performance/index.js +++ b/src/app/pages/performance/index.js @@ -1,7 +1,6 @@ import apiFetch from '@wordpress/api-fetch'; import { useState, useEffect, useContext, Fragment } from '@wordpress/element'; import { useUpdateEffect } from 'react-use'; -import classnames from 'classnames'; import { Container, Page } from '@newfold/ui-component-library'; import { NewfoldRuntime } from '@newfold-labs/wp-module-runtime'; import AppStore from '../../data/store'; @@ -20,7 +19,6 @@ const PerformancePage = () => { // methods to pass to module const moduleMethods = { apiFetch, - classnames, useState, useEffect, useContext, diff --git a/src/app/pages/settings/index.js b/src/app/pages/settings/index.js index ddf18ba60..8d0f24d85 100644 --- a/src/app/pages/settings/index.js +++ b/src/app/pages/settings/index.js @@ -1,4 +1,3 @@ -import classNames from 'classnames'; import { Container, Page } from '@newfold/ui-component-library'; import useContainerBlockIsTarget from 'App/util/hooks/useContainerBlockTarget'; import ComingSoon from './comingSoon'; diff --git a/src/app/pages/staging/index.js b/src/app/pages/staging/index.js index f6ecbd651..68ad95d37 100644 --- a/src/app/pages/staging/index.js +++ b/src/app/pages/staging/index.js @@ -1,7 +1,6 @@ import './stylesheet.scss'; import { useState, useEffect } from '@wordpress/element'; import apiFetch from '@wordpress/api-fetch'; -import classnames from 'classnames'; import { NewfoldRuntime } from '@newfold-labs/wp-module-runtime'; import { useNotification } from 'App/components/notifications'; // component sourced from staging module @@ -18,7 +17,7 @@ const Staging = () => { // methods to pass to module const moduleMethods = { apiFetch, - classnames, + classNames, useState, useEffect, NewfoldRuntime, From a20c6f53e232474a980817120f8b0c05afb9dc29 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Wed, 3 Jul 2024 13:39:28 -0400 Subject: [PATCH 32/57] update modules with classnames fixes Marketplace@2.4.0, Notifications@1.4.0, Staging@2.1.0 --- composer.json | 8 ++++---- composer.lock | 38 +++++++++++++++++++------------------- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/composer.json b/composer.json index d72712eb2..4a6f8db35 100644 --- a/composer.json +++ b/composer.json @@ -85,16 +85,16 @@ "newfold-labs/wp-module-global-ctb": "^1.0.13", "newfold-labs/wp-module-help-center": "^2.0.0", "newfold-labs/wp-module-loader": "^1.0.10", - "newfold-labs/wp-module-marketplace": "^2.3.1", - "newfold-labs/wp-module-migration": "^1.0.7", - "newfold-labs/wp-module-notifications": "^1.3.0", + "newfold-labs/wp-module-marketplace": "^2.4.0", + "newfold-labs/wp-module-migration": "^1.0.8", + "newfold-labs/wp-module-notifications": "^1.4.0", "newfold-labs/wp-module-onboarding": "^2.3.5", "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": "^2.0.0", + "newfold-labs/wp-module-staging": "^2.1.0", "wp-forge/wp-update-handler": "^1.0.2", "wp-forge/wp-upgrade-handler": "^1.0" } diff --git a/composer.lock b/composer.lock index ff8cc6167..1c13d5ef4 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": "5ac4713c83fa5d89cc5a1c4eb8e9b096", + "content-hash": "e20a3efd2ea7eb063728b831bca7dd9d", "packages": [ { "name": "doctrine/inflector", @@ -1034,16 +1034,16 @@ }, { "name": "newfold-labs/wp-module-marketplace", - "version": "2.3.1", + "version": "2.4.0", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-marketplace.git", - "reference": "a3d9b4121d1de7dbf6ec1e23aa60cb851cf2f39c" + "reference": "71f46b229d1ba96abbd0c673d45b9fa03fdf4145" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-marketplace/zipball/a3d9b4121d1de7dbf6ec1e23aa60cb851cf2f39c", - "reference": "a3d9b4121d1de7dbf6ec1e23aa60cb851cf2f39c", + "url": "https://api.github.com/repos/newfold-labs/wp-module-marketplace/zipball/71f46b229d1ba96abbd0c673d45b9fa03fdf4145", + "reference": "71f46b229d1ba96abbd0c673d45b9fa03fdf4145", "shasum": "" }, "require": { @@ -1084,10 +1084,10 @@ ], "description": "A module for rendering product data and interacting with the Hiive marketplace API.", "support": { - "source": "https://github.com/newfold-labs/wp-module-marketplace/tree/2.3.1", + "source": "https://github.com/newfold-labs/wp-module-marketplace/tree/2.4.0", "issues": "https://github.com/newfold-labs/wp-module-marketplace/issues" }, - "time": "2024-06-26T20:22:11+00:00" + "time": "2024-07-03T17:26:23+00:00" }, { "name": "newfold-labs/wp-module-migration", @@ -1145,16 +1145,16 @@ }, { "name": "newfold-labs/wp-module-notifications", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-notifications.git", - "reference": "2e0474d648bafadb6367e7323ed898b429bc0ef2" + "reference": "7c9b2d94df068b8df52ff50f393014db785036b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-notifications/zipball/2e0474d648bafadb6367e7323ed898b429bc0ef2", - "reference": "2e0474d648bafadb6367e7323ed898b429bc0ef2", + "url": "https://api.github.com/repos/newfold-labs/wp-module-notifications/zipball/7c9b2d94df068b8df52ff50f393014db785036b1", + "reference": "7c9b2d94df068b8df52ff50f393014db785036b1", "shasum": "" }, "require": { @@ -1183,10 +1183,10 @@ ], "description": "A module for managing Newfold in-site notifications.", "support": { - "source": "https://github.com/newfold-labs/wp-module-notifications/tree/1.3.0", + "source": "https://github.com/newfold-labs/wp-module-notifications/tree/1.4.0", "issues": "https://github.com/newfold-labs/wp-module-notifications/issues" }, - "time": "2024-04-30T04:47:27+00:00" + "time": "2024-07-03T17:27:19+00:00" }, { "name": "newfold-labs/wp-module-onboarding", @@ -1555,16 +1555,16 @@ }, { "name": "newfold-labs/wp-module-staging", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-staging.git", - "reference": "dae822eec83521f6538844877ee98e637004514d" + "reference": "87116edaff795913173dd5d0dc4cb258d6cda8ef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-staging/zipball/dae822eec83521f6538844877ee98e637004514d", - "reference": "dae822eec83521f6538844877ee98e637004514d", + "url": "https://api.github.com/repos/newfold-labs/wp-module-staging/zipball/87116edaff795913173dd5d0dc4cb258d6cda8ef", + "reference": "87116edaff795913173dd5d0dc4cb258d6cda8ef", "shasum": "" }, "require": { @@ -1602,10 +1602,10 @@ ], "description": "Newfold module for staging functionality in brand plugins", "support": { - "source": "https://github.com/newfold-labs/wp-module-staging/tree/2.0.0", + "source": "https://github.com/newfold-labs/wp-module-staging/tree/2.1.0", "issues": "https://github.com/newfold-labs/wp-module-staging/issues" }, - "time": "2024-05-29T14:18:17+00:00" + "time": "2024-07-03T17:28:16+00:00" }, { "name": "newfold-labs/wp-module-survey", From 4dade2245a4fa915bc8370e5d6f5bb23bb400f4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Jul 2024 18:11:09 +0000 Subject: [PATCH 33/57] Composer(deps): Bump newfold-labs/wp-module-activation Bumps [newfold-labs/wp-module-activation](https://github.com/newfold-labs/wp-module-activation) from 1.0.2 to 1.0.3. - [Release notes](https://github.com/newfold-labs/wp-module-activation/releases) - [Commits](https://github.com/newfold-labs/wp-module-activation/compare/1.0.2...1.0.3) --- updated-dependencies: - dependency-name: newfold-labs/wp-module-activation dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- composer.lock | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index 4a6f8db35..5add5ae8c 100644 --- a/composer.json +++ b/composer.json @@ -73,7 +73,7 @@ "wp-phpunit/wp-phpunit": "^6.5.4" }, "require": { - "newfold-labs/wp-module-activation": "^1.0.2", + "newfold-labs/wp-module-activation": "^1.0.3", "newfold-labs/wp-module-atomic": "^1.3.0", "newfold-labs/wp-module-coming-soon": "^1.2.5", "newfold-labs/wp-module-context": "^1.0.1", diff --git a/composer.lock b/composer.lock index 1c13d5ef4..59f02d71b 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": "e20a3efd2ea7eb063728b831bca7dd9d", + "content-hash": "4b7c3b10803c1f7cc70294ee4db3f60e", "packages": [ { "name": "doctrine/inflector", @@ -240,16 +240,16 @@ }, { "name": "newfold-labs/wp-module-activation", - "version": "1.0.2", + "version": "1.0.3", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-activation.git", - "reference": "4f6affda709af0078c82ceb7ac308990f0abec5a" + "reference": "701a4416759799b2172578eb651a0774a94ecc4f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-activation/zipball/4f6affda709af0078c82ceb7ac308990f0abec5a", - "reference": "4f6affda709af0078c82ceb7ac308990f0abec5a", + "url": "https://api.github.com/repos/newfold-labs/wp-module-activation/zipball/701a4416759799b2172578eb651a0774a94ecc4f", + "reference": "701a4416759799b2172578eb651a0774a94ecc4f", "shasum": "" }, "require-dev": { @@ -291,10 +291,10 @@ ], "description": "A Module for handling WordPress brand plugins activations", "support": { - "source": "https://github.com/newfold-labs/wp-module-activation/tree/1.0.2", + "source": "https://github.com/newfold-labs/wp-module-activation/tree/1.0.3", "issues": "https://github.com/newfold-labs/wp-module-activation/issues" }, - "time": "2024-04-23T20:45:04+00:00" + "time": "2024-07-01T19:05:14+00:00" }, { "name": "newfold-labs/wp-module-ai", From 6283fededf8c9cb7f3496bc21ce5bac8c48f3d66 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Wed, 3 Jul 2024 15:39:52 -0400 Subject: [PATCH 34/57] update plugin version to 3.13.0 --- bluehost-wordpress-plugin.php | 4 +- package-lock.json | 630 ++++++++++++++++++++++------------ package.json | 2 +- 3 files changed, 411 insertions(+), 225 deletions(-) diff --git a/bluehost-wordpress-plugin.php b/bluehost-wordpress-plugin.php index 40e2e05ec..5e1962cf3 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.12.2 + * Version: 3.13.0 * Requires at least: 6.0 * Requires PHP: 7.1 * Tested up to: 6.5.5 @@ -32,7 +32,7 @@ } // Define constants -define( 'BLUEHOST_PLUGIN_VERSION', '3.12.2' ); +define( 'BLUEHOST_PLUGIN_VERSION', '3.13.0' ); 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-lock.json b/package-lock.json index 8496727d1..8bb7919be 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bluehost-wordpress-plugin", - "version": "3.12.2", + "version": "3.13.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bluehost-wordpress-plugin", - "version": "3.12.2", + "version": "3.13.0", "license": "GPL-2.0-or-later", "dependencies": { "@heroicons/react": "^2.1.1", @@ -3524,8 +3524,9 @@ }, "node_modules/@puppeteer/browsers": { "version": "1.4.6", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.4.6.tgz", + "integrity": "sha512-x4BEjr2SjOPowNeiguzjozQbsc6h437ovD/wu+JpaenxVLm3jkgzHY2xOslMTp50HoTvQreMjiexiGQw1sqZlQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "debug": "4.3.4", "extract-zip": "2.0.1", @@ -3552,8 +3553,9 @@ }, "node_modules/@puppeteer/browsers/node_modules/extract-zip": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "debug": "^4.1.1", "get-stream": "^5.1.0", @@ -3571,8 +3573,9 @@ }, "node_modules/@puppeteer/browsers/node_modules/tar-fs": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.4.tgz", + "integrity": "sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==", "dev": true, - "license": "MIT", "dependencies": { "mkdirp-classic": "^0.5.2", "pump": "^3.0.0", @@ -3581,8 +3584,9 @@ }, "node_modules/@puppeteer/browsers/node_modules/tar-stream": { "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", "dev": true, - "license": "MIT", "dependencies": { "b4a": "^1.6.4", "fast-fifo": "^1.2.0", @@ -3591,8 +3595,9 @@ }, "node_modules/@puppeteer/browsers/node_modules/yargs": { "version": "17.7.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz", + "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==", "dev": true, - "license": "MIT", "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", @@ -3639,8 +3644,9 @@ }, "node_modules/@sentry/core": { "version": "6.19.7", + "resolved": "https://registry.npmjs.org/@sentry/core/-/core-6.19.7.tgz", + "integrity": "sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@sentry/hub": "6.19.7", "@sentry/minimal": "6.19.7", @@ -3654,13 +3660,15 @@ }, "node_modules/@sentry/core/node_modules/tslib": { "version": "1.14.1", - "dev": true, - "license": "0BSD" + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, "node_modules/@sentry/hub": { "version": "6.19.7", + "resolved": "https://registry.npmjs.org/@sentry/hub/-/hub-6.19.7.tgz", + "integrity": "sha512-y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@sentry/types": "6.19.7", "@sentry/utils": "6.19.7", @@ -3672,13 +3680,15 @@ }, "node_modules/@sentry/hub/node_modules/tslib": { "version": "1.14.1", - "dev": true, - "license": "0BSD" + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, "node_modules/@sentry/minimal": { "version": "6.19.7", + "resolved": "https://registry.npmjs.org/@sentry/minimal/-/minimal-6.19.7.tgz", + "integrity": "sha512-wcYmSJOdvk6VAPx8IcmZgN08XTXRwRtB1aOLZm+MVHjIZIhHoBGZJYTVQS/BWjldsamj2cX3YGbGXNunaCfYJQ==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@sentry/hub": "6.19.7", "@sentry/types": "6.19.7", @@ -3690,13 +3700,15 @@ }, "node_modules/@sentry/minimal/node_modules/tslib": { "version": "1.14.1", - "dev": true, - "license": "0BSD" + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, "node_modules/@sentry/node": { "version": "6.19.7", + "resolved": "https://registry.npmjs.org/@sentry/node/-/node-6.19.7.tgz", + "integrity": "sha512-gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@sentry/core": "6.19.7", "@sentry/hub": "6.19.7", @@ -3713,21 +3725,24 @@ }, "node_modules/@sentry/node/node_modules/tslib": { "version": "1.14.1", - "dev": true, - "license": "0BSD" + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, "node_modules/@sentry/types": { "version": "6.19.7", + "resolved": "https://registry.npmjs.org/@sentry/types/-/types-6.19.7.tgz", + "integrity": "sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=6" } }, "node_modules/@sentry/utils": { "version": "6.19.7", + "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-6.19.7.tgz", + "integrity": "sha512-z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "@sentry/types": "6.19.7", "tslib": "^1.9.3" @@ -3738,8 +3753,9 @@ }, "node_modules/@sentry/utils/node_modules/tslib": { "version": "1.14.1", - "dev": true, - "license": "0BSD" + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, "node_modules/@sideway/address": { "version": "4.1.5", @@ -4266,8 +4282,9 @@ }, "node_modules/@tootallnate/quickjs-emscripten": { "version": "0.23.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz", + "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", + "dev": true }, "node_modules/@trysound/sax": { "version": "0.2.0", @@ -5271,13 +5288,13 @@ } }, "node_modules/@wordpress/api-fetch": { - "version": "6.54.0", - "resolved": "https://registry.npmjs.org/@wordpress/api-fetch/-/api-fetch-6.54.0.tgz", - "integrity": "sha512-nBiMUr57dWFmjw1ZmgVwng6PzNjPNHXpCyODYwJNmErl95zcsVKwVANzrT3R/oCmeDEomy+vRBWJN8TxsnpDjg==", + "version": "6.55.0", + "resolved": "https://registry.npmjs.org/@wordpress/api-fetch/-/api-fetch-6.55.0.tgz", + "integrity": "sha512-1HrCUsJdeRY5Y0IjplotINwqMRO81e7O7VhBScuKk7iOuDm/E1ioKv2uLGnPNWziYu+Zf025byxOqVzXDyM2gw==", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/i18n": "^4.57.0", - "@wordpress/url": "^3.58.0" + "@wordpress/i18n": "^4.58.0", + "@wordpress/url": "^3.59.0" }, "engines": { "node": ">=12" @@ -5303,9 +5320,9 @@ } }, "node_modules/@wordpress/api-fetch/node_modules/@wordpress/url": { - "version": "3.58.0", - "resolved": "https://registry.npmjs.org/@wordpress/url/-/url-3.58.0.tgz", - "integrity": "sha512-t76YwLjJpwyxghTrha28qmv1UdZyxrFLrk5nOV46UsVHBgo78hRzkkwA4HHhSGzvAZcewEWozvJxpswgCTX3rQ==", + "version": "3.59.0", + "resolved": "https://registry.npmjs.org/@wordpress/url/-/url-3.59.0.tgz", + "integrity": "sha512-GxvoMjYCav0w4CiX0i0h3qflrE/9rhLIZg5aPCQjbrBdwTxYR3Exfw0IJYcmVaTKXQOUU8fOxlDxULsbLmKe9w==", "dependencies": { "@babel/runtime": "^7.16.0", "remove-accents": "^0.5.0" @@ -5350,9 +5367,9 @@ } }, "node_modules/@wordpress/base-styles": { - "version": "4.48.0", - "resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-4.48.0.tgz", - "integrity": "sha512-V8jqyRVoXlG6D68tywLVXFMKpYEWu2YLJDEnOXELLmnhhFWdJEjCqaW/5mw0yRnQYxMROxdG6iGNuK1dG1MbzQ==", + "version": "4.49.0", + "resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-4.49.0.tgz", + "integrity": "sha512-yFRYqNtd26ULZ0oAHhCu/IcaA0XHI3E7kRCKajZqUvyRQj7YprXnpD3o0/pnwvF6ZFTXzCX8pXHjUc2TIv97ig==", "dev": true }, "node_modules/@wordpress/browserslist-config": { @@ -5734,11 +5751,10 @@ } }, "node_modules/@wordpress/dependency-extraction-webpack-plugin": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-5.8.0.tgz", - "integrity": "sha512-DdFjCrBkV0maEh1REY8QFtg6rfgGz+qXw8qJ0HxfH+Uees16oCModxBmbgCTC2w3IkMyHP3kEpvRJHHmYRRmWg==", + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-5.9.0.tgz", + "integrity": "sha512-hXbCkbG1XES47t7hFSETRrLfaRSPyQPlCnhlCx7FfhYFD0wh1jVArApXX5dD+A6wTrayXX/a16MpfaNqE662XA==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "json2php": "^0.0.7" }, @@ -5786,15 +5802,14 @@ } }, "node_modules/@wordpress/e2e-test-utils-playwright": { - "version": "0.25.0", - "resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-0.25.0.tgz", - "integrity": "sha512-6KhYvOeCjiwGqb6V2pc8pdzIaee9annctrpoBBCZDC+LOeW+8DLKZeQYAn9CV3Lmeq1Pxn+9dvHsaV/4+nSHBg==", + "version": "0.26.0", + "resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-0.26.0.tgz", + "integrity": "sha512-4KFyQ3IsYIJaIvOQ1qhAHhRISs9abNToF/bktfMNxQiEJsmbNn7lq/IbaY+shqwdBWVg8TQtLcL4MpSl0ISaxQ==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@wordpress/api-fetch": "^6.54.0", - "@wordpress/keycodes": "^3.57.0", - "@wordpress/url": "^3.58.0", + "@wordpress/api-fetch": "^6.55.0", + "@wordpress/keycodes": "^3.58.0", + "@wordpress/url": "^3.59.0", "change-case": "^4.1.2", "form-data": "^4.0.0", "get-port": "^5.1.1", @@ -5810,11 +5825,10 @@ } }, "node_modules/@wordpress/e2e-test-utils-playwright/node_modules/@wordpress/url": { - "version": "3.58.0", - "resolved": "https://registry.npmjs.org/@wordpress/url/-/url-3.58.0.tgz", - "integrity": "sha512-t76YwLjJpwyxghTrha28qmv1UdZyxrFLrk5nOV46UsVHBgo78hRzkkwA4HHhSGzvAZcewEWozvJxpswgCTX3rQ==", + "version": "3.59.0", + "resolved": "https://registry.npmjs.org/@wordpress/url/-/url-3.59.0.tgz", + "integrity": "sha512-GxvoMjYCav0w4CiX0i0h3qflrE/9rhLIZg5aPCQjbrBdwTxYR3Exfw0IJYcmVaTKXQOUU8fOxlDxULsbLmKe9w==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", "remove-accents": "^0.5.0" @@ -6086,11 +6100,10 @@ } }, "node_modules/@wordpress/jest-console": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-7.28.0.tgz", - "integrity": "sha512-7uSehWmgMkGQO29b1AUxEx96K3gDb4jvClhQ37WZBpd4jdAwf2RSmdXTj8qDtYAc6rRUq0akWQr4PZOXPmR/4A==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-7.29.0.tgz", + "integrity": "sha512-/9PZJhyszdRX4mka7t1WzoooM+Q/DwC4jkNVtJxqci5lbL3Lrhy1cCJGCgMr1n/9w+zs7eLmExFBvV4v44iyNw==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", "jest-matcher-utils": "^29.6.2" @@ -6103,13 +6116,12 @@ } }, "node_modules/@wordpress/jest-preset-default": { - "version": "11.28.0", - "resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-11.28.0.tgz", - "integrity": "sha512-ICKDERYBPlgygxG+CfLpb+4agFQi42QbLGd1Wz8hKOy1403gG/NrGnTXuuyrUTWGhQmmRdyeYbQBtZjs5cjqPw==", + "version": "11.29.0", + "resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-11.29.0.tgz", + "integrity": "sha512-7LA0ZS5t0Thn7xrdwPL3hLgjB9LKloneGhMwnnDUTgJP330lyfdDfJ+O6Lnz3iL+bg68mkA3AzrT9Fs9f3WKww==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@wordpress/jest-console": "^7.28.0", + "@wordpress/jest-console": "^7.29.0", "babel-jest": "^29.6.2" }, "engines": { @@ -6152,11 +6164,10 @@ } }, "node_modules/@wordpress/npm-package-json-lint-config": { - "version": "4.42.0", - "resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-4.42.0.tgz", - "integrity": "sha512-PgGrqglrU5/CYHdnn8ARJmyR/j+MzaswTFndvji3+cBviztY+O1soBFLRgM1BZF7QPLQZ2a4GSlXE1eYI5xvOg==", + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-4.43.0.tgz", + "integrity": "sha512-XSb7AdDC7yGTBVYeRM4oqmOygEB+/+tk7lobLIGDmlZJs+M3F/NUvQq0Vcas1pojq2fyPYTUwOlu81ga33fNwQ==", "dev": true, - "license": "GPL-2.0-or-later", "engines": { "node": ">=14" }, @@ -6165,13 +6176,12 @@ } }, "node_modules/@wordpress/postcss-plugins-preset": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-4.41.0.tgz", - "integrity": "sha512-9i2egP9Fcy/yaYvqQUJd6QYnXDY+/zC1bp6ay5QTAu8oymdjA6EFBag4UieWBmYw4dIPAkyAw8Ghfezj0fC3/Q==", + "version": "4.42.0", + "resolved": "https://registry.npmjs.org/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-4.42.0.tgz", + "integrity": "sha512-5xmKF7IUsqS5JcmJlHKHq7RaR6ZpaLj3n9c+X0X0/Oo7ZCIGp6WeDQngx13sH4NJoKXrZ9g4n1rbzhEKeo/Wtg==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@wordpress/base-styles": "^4.48.0", + "@wordpress/base-styles": "^4.49.0", "autoprefixer": "^10.2.5" }, "engines": { @@ -6363,25 +6373,24 @@ } }, "node_modules/@wordpress/scripts": { - "version": "27.8.0", - "resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-27.8.0.tgz", - "integrity": "sha512-tG333hEHwoi91wHlZK68AGXoD/DxXc2Sg8HmUjFkalZNDO5GRONT+arPxv6jFHYa2hKZrzlCK2NJKNRa7RBrmA==", + "version": "27.9.0", + "resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-27.9.0.tgz", + "integrity": "sha512-ohiDHMnfTTBTi7qS7AVJZUi1dxwg0k3Aav1a8CzUoOE8YoT8tvMQ3W89H9XgqMgMTWUCdgTUBYLTJTivfVVbXQ==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/core": "^7.16.0", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11", "@svgr/webpack": "^8.0.1", - "@wordpress/babel-preset-default": "^7.41.0", - "@wordpress/browserslist-config": "^5.40.0", - "@wordpress/dependency-extraction-webpack-plugin": "^5.8.0", - "@wordpress/e2e-test-utils-playwright": "^0.25.0", - "@wordpress/eslint-plugin": "^18.0.0", - "@wordpress/jest-preset-default": "^11.28.0", - "@wordpress/npm-package-json-lint-config": "^4.42.0", - "@wordpress/postcss-plugins-preset": "^4.41.0", - "@wordpress/prettier-config": "^3.14.0", - "@wordpress/stylelint-config": "^21.40.0", + "@wordpress/babel-preset-default": "^7.42.0", + "@wordpress/browserslist-config": "^5.41.0", + "@wordpress/dependency-extraction-webpack-plugin": "^5.9.0", + "@wordpress/e2e-test-utils-playwright": "^0.26.0", + "@wordpress/eslint-plugin": "^18.1.0", + "@wordpress/jest-preset-default": "^11.29.0", + "@wordpress/npm-package-json-lint-config": "^4.43.0", + "@wordpress/postcss-plugins-preset": "^4.42.0", + "@wordpress/prettier-config": "^3.15.0", + "@wordpress/stylelint-config": "^21.41.0", "adm-zip": "^0.5.9", "babel-jest": "^29.6.2", "babel-loader": "^8.2.3", @@ -6416,6 +6425,7 @@ "react-refresh": "^0.14.0", "read-pkg-up": "^7.0.1", "resolve-bin": "^0.4.0", + "rtlcss-webpack-plugin": "^4.0.7", "sass": "^1.35.2", "sass-loader": "^12.1.0", "source-map-loader": "^3.0.0", @@ -6484,11 +6494,10 @@ } }, "node_modules/@wordpress/stylelint-config": { - "version": "21.40.0", - "resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-21.40.0.tgz", - "integrity": "sha512-74ybeWKt0BmdHXEEXISSJG7PELWDAEa/y47yQ3H/M3AhigiY7LHURY2zIMrn4LO2fNItaUhiOWsKXkBLteXVRw==", + "version": "21.41.0", + "resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-21.41.0.tgz", + "integrity": "sha512-2wxFu8ICeRGF3Lxz7H7o2SU1u6pTI4mjuog39DgtCNb+v+f6yhgREDuNQEeti3Svb0rjj63AJ7r2CqLZk+EQIQ==", "dev": true, - "license": "MIT", "dependencies": { "stylelint-config-recommended": "^6.0.0", "stylelint-config-recommended-scss": "^5.0.2" @@ -7114,8 +7123,9 @@ }, "node_modules/ast-types": { "version": "0.13.4", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", + "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", "dev": true, - "license": "MIT", "dependencies": { "tslib": "^2.0.1" }, @@ -7178,7 +7188,6 @@ "url": "https://github.com/sponsors/ai" } ], - "license": "MIT", "dependencies": { "browserslist": "^4.23.0", "caniuse-lite": "^1.0.30001599", @@ -7264,8 +7273,9 @@ }, "node_modules/b4a": { "version": "1.6.6", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz", + "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==", + "dev": true }, "node_modules/babel-jest": { "version": "29.7.0", @@ -7458,6 +7468,30 @@ "@babel/core": "^7.0.0" } }, + "node_modules/babel-runtime": { + "version": "6.25.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.25.0.tgz", + "integrity": "sha512-zeCYxDePWYAT/DfmQWIHsMSFW2vv45UIwIAMjGvQVsTd47RwsiRH0uK1yzyWZ7LDBKdhnGDPM6NYEO5CZyhPrg==", + "dev": true, + "dependencies": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.10.0" + } + }, + "node_modules/babel-runtime/node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", + "dev": true, + "hasInstallScript": true + }, + "node_modules/babel-runtime/node_modules/regenerator-runtime": { + "version": "0.10.5", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz", + "integrity": "sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==", + "dev": true + }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -7465,11 +7499,10 @@ "dev": true }, "node_modules/bare-events": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.2.2.tgz", - "integrity": "sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.4.2.tgz", + "integrity": "sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==", "dev": true, - "license": "Apache-2.0", "optional": true }, "node_modules/base64-js": { @@ -7494,8 +7527,9 @@ }, "node_modules/basic-ftp": { "version": "5.0.5", + "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", + "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==", "dev": true, - "license": "MIT", "engines": { "node": ">=10.0.0" } @@ -7674,12 +7708,12 @@ } }, "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" @@ -8108,8 +8142,9 @@ }, "node_modules/chrome-launcher": { "version": "0.15.2", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", + "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "@types/node": "*", "escape-string-regexp": "^4.0.0", @@ -8134,8 +8169,9 @@ }, "node_modules/chromium-bidi": { "version": "0.4.16", + "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.4.16.tgz", + "integrity": "sha512-7ZbXdWERxRxSwo3txsBjjmc/NLxqb1Bk30mRb0BMS4YIaiV6zvKZqL/UAH+DdqcDYayDWk2n/y8klkBDODrPvA==", "dev": true, - "license": "Apache-2.0", "dependencies": { "mitt": "3.0.0" }, @@ -8513,8 +8549,9 @@ }, "node_modules/configstore": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "dot-prop": "^5.2.0", "graceful-fs": "^4.1.2", @@ -8529,8 +8566,9 @@ }, "node_modules/configstore/node_modules/write-file-atomic": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, - "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", @@ -8585,8 +8623,9 @@ }, "node_modules/cookie": { "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } @@ -8849,16 +8888,18 @@ }, "node_modules/crypto-random-string": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/csp_evaluator": { "version": "1.1.1", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/csp_evaluator/-/csp_evaluator-1.1.1.tgz", + "integrity": "sha512-N3ASg0C4kNPUaNxt1XAvzHIVuzdtr8KLgfk1O8WDyimp1GisPAHESupArO2ieHk9QWbrJ/WkQODyh21Ps/xhxw==", + "dev": true }, "node_modules/css-declaration-sorter": { "version": "7.2.0", @@ -9260,8 +9301,9 @@ }, "node_modules/data-uri-to-buffer": { "version": "6.0.2", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz", + "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==", "dev": true, - "license": "MIT", "engines": { "node": ">= 14" } @@ -9645,8 +9687,9 @@ }, "node_modules/degenerator": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz", + "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", "dev": true, - "license": "MIT", "dependencies": { "ast-types": "^0.13.4", "escodegen": "^2.1.0", @@ -9782,8 +9825,9 @@ }, "node_modules/devtools-protocol": { "version": "0.0.1155343", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1155343.tgz", + "integrity": "sha512-oD9vGBV2wTc7fAzAM6KC0chSgs234V8+qDEeK+mcbRj2UvcuA7lgBztGi/opj/iahcXD3BSj8Ymvib628yy9FA==", + "dev": true }, "node_modules/didyoumean": { "version": "1.2.2", @@ -9951,8 +9995,9 @@ }, "node_modules/dot-prop": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", "dev": true, - "license": "MIT", "dependencies": { "is-obj": "^2.0.0" }, @@ -11552,8 +11597,9 @@ }, "node_modules/fast-fifo": { "version": "1.3.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "dev": true }, "node_modules/fast-glob": { "version": "3.3.2", @@ -11721,9 +11767,9 @@ } }, "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, "dependencies": { "to-regex-range": "^5.0.1" @@ -12045,8 +12091,9 @@ }, "node_modules/fraction.js": { "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "dev": true, - "license": "MIT", "engines": { "node": "*" }, @@ -12241,8 +12288,9 @@ }, "node_modules/get-port": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", + "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -12296,8 +12344,9 @@ }, "node_modules/get-uri": { "version": "6.0.3", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.3.tgz", + "integrity": "sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==", "dev": true, - "license": "MIT", "dependencies": { "basic-ftp": "^5.0.2", "data-uri-to-buffer": "^6.0.2", @@ -12310,8 +12359,9 @@ }, "node_modules/get-uri/node_modules/fs-extra": { "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, - "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -12846,8 +12896,9 @@ }, "node_modules/http-link-header": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/http-link-header/-/http-link-header-1.1.3.tgz", + "integrity": "sha512-3cZ0SRL8fb9MUlU3mKM61FcQvPfXx2dBrZW3Vbg5CXa8jFlK8OaEpePenLe1oEXQduhz8b0QjsqfS59QP4AJDQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.0.0" } @@ -13052,8 +13103,9 @@ }, "node_modules/image-ssim": { "version": "0.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/image-ssim/-/image-ssim-0.2.0.tgz", + "integrity": "sha512-W7+sO6/yhxy83L0G7xR8YAc5Z5QFtYEXXRV6EaE8tuYBZJnA3gVgp3q7X7muhLZVodeb9UfvjSbwt9VJwjIYAg==", + "dev": true }, "node_modules/immer": { "version": "10.1.1", @@ -13222,21 +13274,25 @@ }, "node_modules/intl-messageformat": { "version": "4.4.0", + "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-4.4.0.tgz", + "integrity": "sha512-z+Bj2rS3LZSYU4+sNitdHrwnBhr0wO80ZJSW8EzKDBowwUe3Q/UsvgCGjrwa+HPzoGCLEb9HAjfJgo4j2Sac8w==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "intl-messageformat-parser": "^1.8.1" } }, "node_modules/intl-messageformat-parser": { "version": "1.8.1", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/intl-messageformat-parser/-/intl-messageformat-parser-1.8.1.tgz", + "integrity": "sha512-IMSCKVf0USrM/959vj3xac7s8f87sc+80Y/ipBzdKy4ifBv5Gsj2tZ41EAaURVg01QU71fYr77uA8Meh6kELbg==", + "deprecated": "We've written a new parser that's 6x faster and is backwards compatible. Please use @formatjs/icu-messageformat-parser", + "dev": true }, "node_modules/ip-address": { "version": "9.0.5", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", + "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", "dev": true, - "license": "MIT", "dependencies": { "jsbn": "1.1.0", "sprintf-js": "^1.1.3" @@ -13247,8 +13303,9 @@ }, "node_modules/ip-address/node_modules/jsbn": { "version": "1.1.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", + "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", + "dev": true }, "node_modules/ipaddr.js": { "version": "2.2.0", @@ -13595,8 +13652,9 @@ }, "node_modules/is-obj": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } @@ -15004,8 +15062,9 @@ }, "node_modules/jpeg-js": { "version": "0.4.4", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", + "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==", + "dev": true }, "node_modules/jquery": { "version": "3.7.1", @@ -15019,8 +15078,9 @@ }, "node_modules/js-library-detector": { "version": "6.7.0", + "resolved": "https://registry.npmjs.org/js-library-detector/-/js-library-detector-6.7.0.tgz", + "integrity": "sha512-c80Qupofp43y4cJ7+8TTDN/AsDwLi5oOm/plBrWI+iQt485vKXCco+yVmOwEgdo9VOdsYTuV0UlTeetVPTriXA==", "dev": true, - "license": "MIT", "engines": { "node": ">=12" } @@ -15152,8 +15212,9 @@ }, "node_modules/json2php": { "version": "0.0.7", - "dev": true, - "license": "BSD" + "resolved": "https://registry.npmjs.org/json2php/-/json2php-0.0.7.tgz", + "integrity": "sha512-dnSoUiLAoVaMXxFsVi4CrPVYMKOuDBXTghXSmMINX44RZ8WM9cXlY7UqrQnlAcODCVO7FV3+8t/5nDKAjimLfg==", + "dev": true }, "node_modules/json5": { "version": "2.2.3", @@ -15330,8 +15391,9 @@ }, "node_modules/lighthouse": { "version": "10.4.0", + "resolved": "https://registry.npmjs.org/lighthouse/-/lighthouse-10.4.0.tgz", + "integrity": "sha512-XQWHEWkJ8YxSPsxttBJORy5+hQrzbvGkYfeP3fJjyYKioWkF2MXfFqNK4ZuV4jL8pBu7Z91qnQP6In0bq1yXww==", "dev": true, - "license": "Apache-2.0", "dependencies": { "@sentry/node": "^6.17.4", "axe-core": "4.7.2", @@ -15372,8 +15434,9 @@ }, "node_modules/lighthouse-logger": { "version": "1.4.2", + "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", + "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", "dev": true, - "license": "Apache-2.0", "dependencies": { "debug": "^2.6.9", "marky": "^1.2.2" @@ -15381,42 +15444,48 @@ }, "node_modules/lighthouse-logger/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/lighthouse-logger/node_modules/ms": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, "node_modules/lighthouse-stack-packs": { "version": "1.11.0", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/lighthouse-stack-packs/-/lighthouse-stack-packs-1.11.0.tgz", + "integrity": "sha512-sRr0z1S/I26VffRLq9KJsKtLk856YrJlNGmcJmbLX8dFn3MuzVPUbstuChEhqnSxZb8TZmVfthuXuwhG9vRoSw==", + "dev": true }, "node_modules/lighthouse/node_modules/axe-core": { "version": "4.7.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", + "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", "dev": true, - "license": "MPL-2.0", "engines": { "node": ">=4" } }, "node_modules/lighthouse/node_modules/cross-fetch": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz", + "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", "dev": true, - "license": "MIT", "dependencies": { "node-fetch": "^2.6.12" } }, "node_modules/lighthouse/node_modules/node-fetch": { "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dev": true, - "license": "MIT", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -15434,8 +15503,9 @@ }, "node_modules/lighthouse/node_modules/puppeteer-core": { "version": "20.9.0", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-20.9.0.tgz", + "integrity": "sha512-H9fYZQzMTRrkboEfPmf7m3CLDN6JvbxXA3qTtS+dFt27tR+CsFHzPsT6pzp6lYL6bJbAPaR0HaPO6uSi+F94Pg==", "dev": true, - "license": "Apache-2.0", "dependencies": { "@puppeteer/browsers": "1.4.6", "chromium-bidi": "0.4.16", @@ -15458,13 +15528,15 @@ }, "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/devtools-protocol": { "version": "0.0.1147663", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1147663.tgz", + "integrity": "sha512-hyWmRrexdhbZ1tcJUGpO95ivbRhWXz++F4Ko+n21AY5PNln2ovoJw+8ZMNDTtip+CNFQfrtLVh/w4009dXO/eQ==", + "dev": true }, "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/ws": { "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10.0.0" }, @@ -15483,35 +15555,40 @@ }, "node_modules/lighthouse/node_modules/semver": { "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/lighthouse/node_modules/tr46": { "version": "0.0.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true }, "node_modules/lighthouse/node_modules/webidl-conversions": { "version": "3.0.1", - "dev": true, - "license": "BSD-2-Clause" + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true }, "node_modules/lighthouse/node_modules/whatwg-url": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, - "license": "MIT", "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, "node_modules/lighthouse/node_modules/ws": { - "version": "7.5.9", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8.3.0" }, @@ -15748,8 +15825,9 @@ }, "node_modules/lookup-closest-locale": { "version": "6.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lookup-closest-locale/-/lookup-closest-locale-6.2.0.tgz", + "integrity": "sha512-/c2kL+Vnp1jnV6K6RpDTHK3dgg0Tu2VVp+elEiJpjfS1UyY7AjOYHohRug6wT0OpoX2qFgNORndE9RqesfVxWQ==", + "dev": true }, "node_modules/loose-envify": { "version": "1.4.0", @@ -15781,8 +15859,9 @@ }, "node_modules/lru_map": { "version": "0.3.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lru_map/-/lru_map-0.3.3.tgz", + "integrity": "sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==", + "dev": true }, "node_modules/lru-cache": { "version": "5.1.1", @@ -15986,8 +16065,9 @@ }, "node_modules/marky": { "version": "1.2.5", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", + "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", + "dev": true }, "node_modules/mathml-tag-names": { "version": "2.1.3", @@ -16120,8 +16200,9 @@ }, "node_modules/metaviewport-parser": { "version": "0.3.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/metaviewport-parser/-/metaviewport-parser-0.3.0.tgz", + "integrity": "sha512-EoYJ8xfjQ6kpe9VbVHvZTZHiOl4HL1Z18CrZ+qahvLXT7ZO4YTC2JMyt5FaUp9JJp6J4Ybb/z7IsCXZt86/QkQ==", + "dev": true }, "node_modules/methods": { "version": "1.1.2", @@ -16147,8 +16228,9 @@ }, "node_modules/mime": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", "dev": true, - "license": "MIT", "bin": { "mime": "cli.js" }, @@ -16359,8 +16441,9 @@ }, "node_modules/mitt": { "version": "3.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.0.tgz", + "integrity": "sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==", + "dev": true }, "node_modules/mixin-object": { "version": "2.0.1", @@ -16536,8 +16619,9 @@ }, "node_modules/netmask": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", + "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.4.0" } @@ -16640,8 +16724,9 @@ }, "node_modules/normalize-range": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -17273,18 +17358,19 @@ } }, "node_modules/pac-proxy-agent": { - "version": "7.0.1", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.2.tgz", + "integrity": "sha512-BFi3vZnO9X5Qt6NRz7ZOaPja3ic0PhlsmCRYLOpN11+mWBCR6XJDqW5RF3j8jm4WGGQZtBA+bTfxYzeKW73eHg==", "dev": true, - "license": "MIT", "dependencies": { "@tootallnate/quickjs-emscripten": "^0.23.0", "agent-base": "^7.0.2", "debug": "^4.3.4", "get-uri": "^6.0.1", "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", - "pac-resolver": "^7.0.0", - "socks-proxy-agent": "^8.0.2" + "https-proxy-agent": "^7.0.5", + "pac-resolver": "^7.0.1", + "socks-proxy-agent": "^8.0.4" }, "engines": { "node": ">= 14" @@ -17295,7 +17381,6 @@ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", "dev": true, - "license": "MIT", "dependencies": { "debug": "^4.3.4" }, @@ -17305,8 +17390,9 @@ }, "node_modules/pac-proxy-agent/node_modules/http-proxy-agent": { "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dev": true, - "license": "MIT", "dependencies": { "agent-base": "^7.1.0", "debug": "^4.3.4" @@ -17316,9 +17402,10 @@ } }, "node_modules/pac-proxy-agent/node_modules/https-proxy-agent": { - "version": "7.0.4", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", + "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", "dev": true, - "license": "MIT", "dependencies": { "agent-base": "^7.0.2", "debug": "4" @@ -17329,8 +17416,9 @@ }, "node_modules/pac-resolver": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz", + "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==", "dev": true, - "license": "MIT", "dependencies": { "degenerator": "^5.0.0", "netmask": "^2.0.2" @@ -17361,6 +17449,8 @@ }, "node_modules/parse-cache-control": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-cache-control/-/parse-cache-control-1.0.1.tgz", + "integrity": "sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==", "dev": true }, "node_modules/parse-json": { @@ -18224,6 +18314,8 @@ }, "node_modules/postcss-scss": { "version": "4.0.9", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", + "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", "dev": true, "funding": [ { @@ -18239,7 +18331,6 @@ "url": "https://github.com/sponsors/ai" } ], - "license": "MIT", "engines": { "node": ">=12.0" }, @@ -18447,8 +18538,9 @@ }, "node_modules/proxy-agent": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.0.tgz", + "integrity": "sha512-0LdR757eTj/JfuU7TL2YCuAZnxWXu3tkJbg4Oq3geW/qFNT/32T0sp2HnZ9O0lMR4q3vwAt0+xCA8SR0WAD0og==", "dev": true, - "license": "MIT", "dependencies": { "agent-base": "^7.0.2", "debug": "^4.3.4", @@ -18468,7 +18560,6 @@ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", "dev": true, - "license": "MIT", "dependencies": { "debug": "^4.3.4" }, @@ -18478,8 +18569,9 @@ }, "node_modules/proxy-agent/node_modules/http-proxy-agent": { "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dev": true, - "license": "MIT", "dependencies": { "agent-base": "^7.1.0", "debug": "^4.3.4" @@ -18489,9 +18581,10 @@ } }, "node_modules/proxy-agent/node_modules/https-proxy-agent": { - "version": "7.0.4", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", + "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", "dev": true, - "license": "MIT", "dependencies": { "agent-base": "^7.0.2", "debug": "4" @@ -18502,8 +18595,9 @@ }, "node_modules/proxy-agent/node_modules/lru-cache": { "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, - "license": "ISC", "engines": { "node": ">=12" } @@ -18522,8 +18616,9 @@ }, "node_modules/ps-list": { "version": "8.1.1", + "resolved": "https://registry.npmjs.org/ps-list/-/ps-list-8.1.1.tgz", + "integrity": "sha512-OPS9kEJYVmiO48u/B9qneqhkMvgCxT+Tm28VCEJpheTpl8cJ0ffZRRNgS5mrQRTrX5yRTpaJ+hRDeefXYmmorQ==", "dev": true, - "license": "MIT", "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, @@ -18697,8 +18792,9 @@ }, "node_modules/queue-tick": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", + "dev": true }, "node_modules/quick-lru": { "version": "5.1.1", @@ -19422,8 +19518,9 @@ }, "node_modules/robots-parser": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/robots-parser/-/robots-parser-3.0.1.tgz", + "integrity": "sha512-s+pyvQeIKIZ0dx5iJiQk1tPLJAWln39+MI5jtM8wnyws+G5azk+dMnMX0qfbqNetKKNgcWWOdi0sfm+FbQbgdQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=10.0.0" } @@ -19436,6 +19533,77 @@ "@babel/runtime": "^7.1.2" } }, + "node_modules/rtlcss": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-3.5.0.tgz", + "integrity": "sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==", + "dev": true, + "dependencies": { + "find-up": "^5.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.3.11", + "strip-json-comments": "^3.1.1" + }, + "bin": { + "rtlcss": "bin/rtlcss.js" + } + }, + "node_modules/rtlcss-webpack-plugin": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/rtlcss-webpack-plugin/-/rtlcss-webpack-plugin-4.0.7.tgz", + "integrity": "sha512-ouSbJtgcLBBQIsMgarxsDnfgRqm/AS4BKls/mz/Xb6HSl+PdEzefTR+Wz5uWQx4odoX0g261Z7yb3QBz0MTm0g==", + "dev": true, + "dependencies": { + "babel-runtime": "~6.25.0", + "rtlcss": "^3.5.0" + } + }, + "node_modules/rtlcss/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/rtlcss/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/rtlcss/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -20078,8 +20246,9 @@ }, "node_modules/smart-buffer": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 6.0.0", "npm": ">= 3.0.0" @@ -20119,7 +20288,6 @@ "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", "dev": true, - "license": "MIT", "dependencies": { "ip-address": "^9.0.5", "smart-buffer": "^4.2.0" @@ -20130,15 +20298,14 @@ } }, "node_modules/socks-proxy-agent": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.3.tgz", - "integrity": "sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==", + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz", + "integrity": "sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==", "dev": true, - "license": "MIT", "dependencies": { "agent-base": "^7.1.1", "debug": "^4.3.4", - "socks": "^2.7.1" + "socks": "^2.8.3" }, "engines": { "node": ">= 14" @@ -20149,7 +20316,6 @@ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", "dev": true, - "license": "MIT", "dependencies": { "debug": "^4.3.4" }, @@ -20327,8 +20493,9 @@ }, "node_modules/speedline-core": { "version": "1.4.3", + "resolved": "https://registry.npmjs.org/speedline-core/-/speedline-core-1.4.3.tgz", + "integrity": "sha512-DI7/OuAUD+GMpR6dmu8lliO2Wg5zfeh+/xsdyJZCzd8o5JgFUjCeLsBDuZjIQJdwXS3J0L/uZYrELKYqx+PXog==", "dev": true, - "license": "MIT", "dependencies": { "@types/node": "*", "image-ssim": "^0.2.0", @@ -20439,12 +20606,14 @@ } }, "node_modules/streamx": { - "version": "2.16.1", + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.18.0.tgz", + "integrity": "sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==", "dev": true, - "license": "MIT", "dependencies": { - "fast-fifo": "^1.1.0", - "queue-tick": "^1.0.1" + "fast-fifo": "^1.3.2", + "queue-tick": "^1.0.1", + "text-decoder": "^1.1.0" }, "optionalDependencies": { "bare-events": "^2.2.0" @@ -20762,16 +20931,18 @@ }, "node_modules/stylelint-config-recommended": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-6.0.0.tgz", + "integrity": "sha512-ZorSSdyMcxWpROYUvLEMm0vSZud2uB7tX1hzBZwvVY9SV/uly4AvvJPPhCcymZL3fcQhEQG5AELmrxWqtmzacw==", "dev": true, - "license": "MIT", "peerDependencies": { "stylelint": "^14.0.0" } }, "node_modules/stylelint-config-recommended-scss": { "version": "5.0.2", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-5.0.2.tgz", + "integrity": "sha512-b14BSZjcwW0hqbzm9b0S/ScN2+3CO3O4vcMNOw2KGf8lfVSwJ4p5TbNEXKwKl1+0FMtgRXZj6DqVUe/7nGnuBg==", "dev": true, - "license": "MIT", "dependencies": { "postcss-scss": "^4.0.2", "stylelint-config-recommended": "^6.0.0", @@ -20783,8 +20954,9 @@ }, "node_modules/stylelint-scss": { "version": "4.7.0", + "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-4.7.0.tgz", + "integrity": "sha512-TSUgIeS0H3jqDZnby1UO1Qv3poi1N8wUYIJY6D1tuUq2MN3lwp/rITVo0wD+1SWTmRm0tNmGO0b7nKInnqF6Hg==", "dev": true, - "license": "MIT", "dependencies": { "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.1", @@ -21352,6 +21524,15 @@ "node": "*" } }, + "node_modules/text-decoder": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.1.0.tgz", + "integrity": "sha512-TmLJNj6UgX8xcUZo4UDStGQtDiTzF7BzWlzn9g7UWrjkpHr5uJTK1ld16wZ3LXb2vb6jH8qU89dW5whuMdXYdw==", + "dev": true, + "dependencies": { + "b4a": "^1.6.4" + } + }, "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", @@ -21381,8 +21562,9 @@ }, "node_modules/third-party-web": { "version": "0.23.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/third-party-web/-/third-party-web-0.23.4.tgz", + "integrity": "sha512-kwYnSZRhEvv0SBW2fp8SBBKRglMoBjV8xz6C31m0ewqOtknB5UL+Ihg+M81hyFY5ldkZuGWPb+e4GVDkzf/gYg==", + "dev": true }, "node_modules/throttle-debounce": { "version": "3.0.1", @@ -21778,8 +21960,9 @@ }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dev": true, - "license": "MIT", "dependencies": { "is-typedarray": "^1.0.0" } @@ -21863,8 +22046,9 @@ }, "node_modules/unique-string": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", "dev": true, - "license": "MIT", "dependencies": { "crypto-random-string": "^2.0.0" }, @@ -22212,8 +22396,9 @@ }, "node_modules/web-vitals": { "version": "3.5.2", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-3.5.2.tgz", + "integrity": "sha512-c0rhqNcHXRkY/ogGDJQxZ9Im9D19hDihbzSQJrsioex+KnFgmMzBiy57Z1EjkhX/+OjyBpclDCzz2ITtjokFmg==", + "dev": true }, "node_modules/webidl-conversions": { "version": "7.0.0", @@ -22307,9 +22492,9 @@ } }, "node_modules/webpack-bundle-analyzer/node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "dev": true, "engines": { "node": ">=8.3.0" @@ -22907,9 +23092,9 @@ } }, "node_modules/ws": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz", - "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "dev": true, "engines": { "node": ">=10.0.0" @@ -22929,8 +23114,9 @@ }, "node_modules/xdg-basedir": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } diff --git a/package.json b/package.json index 0d8161dac..fcf425a53 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bluehost-wordpress-plugin", - "version": "3.12.2", + "version": "3.13.0", "description": "WordPress plugin that integrates your WordPress site with the Bluehost control panel, including performance, security, and update features.", "author": { "name": "Bluehost", From ffa8e6463c9ae2a8acf414c47bc158caf6f50751 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Wed, 3 Jul 2024 15:40:50 -0400 Subject: [PATCH 35/57] i18n command update and file update --- composer.json | 9 +- languages/wp-plugin-bluehost.pot | 223 +++++++++++++++++++------------ 2 files changed, 139 insertions(+), 93 deletions(-) diff --git a/composer.json b/composer.json index 4a6f8db35..c8f1c037e 100644 --- a/composer.json +++ b/composer.json @@ -48,12 +48,12 @@ "i18n-pot": "vendor/bin/wp i18n make-pot . ./languages/wp-plugin-bluehost.pot --headers='{\"Report-Msgid-Bugs-To\":\"https://github.com/bluehost/bluehost-wordpress-plugin/issues\",\"POT-Creation-Date\":\"2023-03-08T20:13:41+00:00\"}' --exclude=assets,tests,src", "i18n-po": "vendor/bin/wp i18n update-po ./languages/wp-plugin-bluehost.pot ./languages", "i18n-mo": "vendor/bin/wp i18n make-mo ./languages", - "i18n-json": "vendor/bin/wp i18n make-json ./languages --no-purge --pretty-print", - "i18n-json-rename": "for f in ./languages/*.json; do mv \"$f\" \"$(echo \"$f\" | sed 's/[0-9a-fA-F]\\{32\\}/bluehost-script/')\"; done", + "i18n-json": "rm -f languages/*.json && vendor/bin/wp i18n make-json ./languages --no-purge --pretty-print", "i18n": [ "@i18n-pot", "@i18n-po", - "@i18n-mo" + "@i18n-mo", + "@i18n-json" ] }, "scripts-descriptions": { @@ -63,8 +63,7 @@ "i18n-pot": "Generate a .pot file for translation.", "i18n-po": "Update existing .po files.", "i18n-mo": "Generate new language .mo files.", - "i18n-json": "Generate new language .json files.", - "i18n-json-rename": "Rename the language json files to remove the pesky hash." + "i18n-json": "Generate new language .json files." }, "require-dev": { "roave/security-advisories": "dev-latest", diff --git a/languages/wp-plugin-bluehost.pot b/languages/wp-plugin-bluehost.pot index bac3f0a39..de67d6639 100644 --- a/languages/wp-plugin-bluehost.pot +++ b/languages/wp-plugin-bluehost.pot @@ -2,7 +2,7 @@ # This file is distributed under the GPL 2.0 or later. msgid "" msgstr "" -"Project-Id-Version: The Bluehost Plugin 3.9.2\n" +"Project-Id-Version: The Bluehost Plugin 3.13.0\n" "Report-Msgid-Bugs-To: https://github.com/bluehost/bluehost-wordpress-plugin/issues\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -32,108 +32,113 @@ msgstr "" #. Author of the plugin #: bluehost-wordpress-plugin.php -#: inc/Admin.php:131 -#: inc/Admin.php:132 +#: inc/Admin.php:133 +#: inc/Admin.php:134 msgid "Bluehost" msgstr "" -#: bootstrap.php:24 +#: bootstrap.php:25 msgid "Please install the Bluehost Plugin dependencies." msgstr "" -#: bootstrap.php:98 +#: bootstrap.php:99 msgid "Coming Soon!" msgstr "" -#: bootstrap.php:99 +#: bootstrap.php:100 msgid "A New WordPress Site" msgstr "" -#: bootstrap.php:102 +#: bootstrap.php:103 msgid "How to Build a Website: A Practical Guide to WordPress on Bluehost" msgstr "" -#: bootstrap.php:105 +#: bootstrap.php:106 msgid "How to Migrate a Website to Bluehost?" msgstr "" -#: bootstrap.php:108 +#: bootstrap.php:109 msgid "Why choose Bluehost for your WordPress site?" msgstr "" #. translators: %1$s is replaced with opening link tag taking you to bluehost.com/wordpress, %2$s is replaced with closing link tag, %3$s is replaced with opening link tag taking you to login page, %4$s is replaced with closing link tag, %5$s is replaced with opening link tag taking you to my.bluehost.com, %6$s is replaced with closing link tag -#: bootstrap.php:112 +#: bootstrap.php:113 msgid "A %1$sBluehost%2$s powered website. Is this your website? Log in to %3$sWordPress%4$s or %5$sBluehost%6$s." msgstr "" #. translators: %s: Blog name -#: bootstrap.php:122 +#: bootstrap.php:123 msgid "%s — Coming Soon" msgstr "" -#: bootstrap.php:125 +#: bootstrap.php:126 msgid "Coming Soon Active" msgstr "" #. translators: %1$s is replaced with the opening link tag to preview the page, and %2$s is replaced with the closing link tag, %3$s is the opening link tag, %4$s is the closing link tag. -#: bootstrap.php:128 +#: bootstrap.php:129 msgid "Your site is currently displaying a %1$scoming soon page%2$s. Once you are ready, %3$slaunch your site%4$s." msgstr "" -#: bootstrap.php:129 +#: bootstrap.php:130 msgid "Preview the coming soon landing page" msgstr "" -#: inc/Admin.php:67 -#: inc/Admin.php:274 -#: build/3.9.2/index.js:1 +#: inc/Admin.php:70 +#: inc/Admin.php:276 +#: build/3.13.0/index.js:1 msgid "Home" msgstr "" -#: inc/Admin.php:70 -#: build/3.9.2/index.js:1 +#: inc/Admin.php:73 +#: build/3.13.0/index.js:1 +msgid "Pages & Posts" +msgstr "" + +#: inc/Admin.php:76 +#: build/3.13.0/index.js:1 msgid "Store" msgstr "" -#: inc/Admin.php:73 -#: build/3.9.2/index.js:1 +#: inc/Admin.php:79 +#: build/3.13.0/index.js:1 msgid "Marketplace" msgstr "" -#: inc/Admin.php:76 -#: build/3.9.2/index.js:1 +#: inc/Admin.php:84 +#: build/3.13.0/index.js:1 msgid "Performance" msgstr "" -#: inc/Admin.php:79 -#: inc/Admin.php:275 -#: build/3.9.2/index.js:1 +#: inc/Admin.php:88 +#: inc/Admin.php:277 +#: build/3.13.0/index.js:1 msgid "Settings" msgstr "" -#: inc/Admin.php:82 -#: build/3.9.2/index.js:1 +#: inc/Admin.php:93 +#: build/3.13.0/index.js:1 msgid "Staging" msgstr "" -#: inc/Admin.php:85 -#: build/3.9.2/index.js:1 +#: inc/Admin.php:97 +#: build/3.13.0/index.js:1 msgid "Help" msgstr "" -#: inc/Admin.php:174 +#: inc/Admin.php:176 msgid "Please update to a newer WordPress version." msgstr "" -#: inc/Admin.php:175 +#: inc/Admin.php:177 msgid "There are new WordPress components which this plugin requires in order to render the interface." msgstr "" -#: inc/Admin.php:176 +#: inc/Admin.php:178 msgid "Please update now" msgstr "" -#: inc/Admin.php:289 +#: inc/Admin.php:301 msgid "Thank you for creating with WordPress and Bluehost." msgstr "" @@ -187,178 +192,220 @@ msgstr "" msgid "Auto-updates enabled" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Bluehost WordPress Plugin" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Oh No, An Error!" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "You found an error, please refresh the page and try again!" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "If the error persists, please contact support." msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid " Error code: " msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Bluehost Account" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "There's nothing here!" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Products & Services" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Sales & Promotions" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Payments" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Store Details" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 +msgid "Admin" +msgstr "" + +#: build/3.13.0/index.js:1 +msgid "The staging feature provides a way to copy a site to test new updates, features or content." +msgstr "" + +#: build/3.13.0/index.js:1 +msgid "Sorry, that is not allowed." +msgstr "" + +#: build/3.13.0/index.js:1 +msgid "This feature cannot currently be modified." +msgstr "" + +#: build/3.13.0/index.js:1 +msgid "Oops! Something went wrong. Please try again." +msgstr "" + +#: build/3.13.0/index.js:1 msgid "Phone" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Call Us" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Chat" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Chat with one of our friendly Customer Care Specialists, as we are waiting to help. Open 24 hours - 7 days." msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Live Chat" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Tweet" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Find our team at @bluehost for updates on our products and support from our team." msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Tweet Us" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "YouTube" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Find tutorials, answers, interviews and guides on our YouTube channel." msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Watch Now" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Knowledge Base" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Articles, guides, how-tos, instructions, and answers to our client's most frequently asked questions." msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Visit Knowledge Base" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Resources" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Boost your online knowledge and get ahead of the competition." msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Explore Resources" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Events and Webinars" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Team Bluehost organizes multiple webinars and events throughout the year. We are also sponsors and speak at most WordCamps across the world. Join us at our next event!" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "More Info" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Bluehost Website" msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Not finding what you need? Visit our website for more information about our products and services." msgstr "" -#: build/3.9.2/index.js:1 +#: build/3.13.0/index.js:1 msgid "Go to Bluehost" msgstr "" -#: build/3.9.2/index.js:1 -msgid "Automatically keep all up to date" +#: build/3.13.0/index.js:1 +msgid "Site Pages" msgstr "" -#: build/3.9.2/index.js:1 -msgid "WordPress Core" +#: build/3.13.0/index.js:1 +msgid "Edit your homepage and other existing pages or add new pages to your site." msgstr "" -#: build/3.9.2/index.js:1 -msgid "Plugins" +#: build/3.13.0/index.js:1 +msgid "View all" msgstr "" -#: build/3.9.2/index.js:1 -msgid "Themes" +#: build/3.13.0/index.js:1 +msgid "Add New" msgstr "" -#: build/3.9.2/index.js:1 -msgid "Automatic Updates" +#: build/3.13.0/index.js:1 +msgid "The Help Center provides guided, step-by-step assistance as you build your site." msgstr "" -#: build/3.9.2/index.js:1 -msgid "Keeping automatic updates on ensures timely security fixes and the latest features." +#: build/3.13.0/index.js:1 +msgid "Site Status" msgstr "" -#: build/3.9.2/index.js:1 -msgid "Oops! Something went wrong. Please try again." +#: build/3.13.0/index.js:1 +msgid "Not Live" +msgstr "" + +#: build/3.13.0/index.js:1 +msgid "Live" msgstr "" -#: build/3.9.2/index.js:1 -msgid " day." -msgid_plural " days." +#: build/3.13.0/index.js:1 +msgid "Your Bluehost Coming Soon page lets you hide your site from visitors while you make the magic happen." +msgstr "" + +#: build/3.13.0/index.js:1 +msgid "Your website is currently displaying a \"Coming Soon\" page." +msgstr "" + +#: build/3.13.0/index.js:1 +msgid " revision." +msgid_plural " revisions." msgstr[0] "" msgstr[1] "" -#: build/3.9.2/index.js:1 -msgid " comment at a time." -msgid_plural " comments at a time." +#: build/3.13.0/index.js:1 +msgid " step back." +msgid_plural " steps back." msgstr[0] "" msgstr[1] "" + +#: build/3.13.0/index.js:1 +msgid " week." +msgid_plural " weeks." +msgstr[0] "" +msgstr[1] "" + +#: build/3.13.0/index.js:1 +msgid "Wonder Blocks provides a library of customizable block patterns and page templates." +msgstr "" From fad8362c657e0335668e8544b474c3132c8ecd8d Mon Sep 17 00:00:00 2001 From: Ramya krishna Date: Fri, 5 Jul 2024 18:35:58 +0530 Subject: [PATCH 36/57] ecommerce version bump 1.3.36 --- composer.json | 2 +- composer.lock | 52 ++++++++++++++++++++++++----------------------- package-lock.json | 9 ++++---- package.json | 2 +- 4 files changed, 34 insertions(+), 31 deletions(-) diff --git a/composer.json b/composer.json index 4a6f8db35..60e7567e5 100644 --- a/composer.json +++ b/composer.json @@ -79,7 +79,7 @@ "newfold-labs/wp-module-context": "^1.0.1", "newfold-labs/wp-module-data": "^2.5.3", "newfold-labs/wp-module-deactivation": "^1.2.1", - "newfold-labs/wp-module-ecommerce": "^1.3.35", + "newfold-labs/wp-module-ecommerce": "^1.3.36", "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", diff --git a/composer.lock b/composer.lock index 1c13d5ef4..d661cb9c4 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": "e20a3efd2ea7eb063728b831bca7dd9d", + "content-hash": "edd9011fd18f58ab36baa4110f9ef95e", "packages": [ { "name": "doctrine/inflector", @@ -240,16 +240,16 @@ }, { "name": "newfold-labs/wp-module-activation", - "version": "1.0.2", + "version": "1.0.3", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-activation.git", - "reference": "4f6affda709af0078c82ceb7ac308990f0abec5a" + "reference": "701a4416759799b2172578eb651a0774a94ecc4f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-activation/zipball/4f6affda709af0078c82ceb7ac308990f0abec5a", - "reference": "4f6affda709af0078c82ceb7ac308990f0abec5a", + "url": "https://api.github.com/repos/newfold-labs/wp-module-activation/zipball/701a4416759799b2172578eb651a0774a94ecc4f", + "reference": "701a4416759799b2172578eb651a0774a94ecc4f", "shasum": "" }, "require-dev": { @@ -291,10 +291,10 @@ ], "description": "A Module for handling WordPress brand plugins activations", "support": { - "source": "https://github.com/newfold-labs/wp-module-activation/tree/1.0.2", + "source": "https://github.com/newfold-labs/wp-module-activation/tree/1.0.3", "issues": "https://github.com/newfold-labs/wp-module-activation/issues" }, - "time": "2024-04-23T20:45:04+00:00" + "time": "2024-07-01T19:05:14+00:00" }, { "name": "newfold-labs/wp-module-ai", @@ -652,16 +652,16 @@ }, { "name": "newfold-labs/wp-module-ecommerce", - "version": "v1.3.35", + "version": "v1.3.36", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-ecommerce.git", - "reference": "3478b6e1a8ce2938ab2fc74229ea2707cbff7aac" + "reference": "35acde73891a861ce9e4308c2294f8a76584e2e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-ecommerce/zipball/3478b6e1a8ce2938ab2fc74229ea2707cbff7aac", - "reference": "3478b6e1a8ce2938ab2fc74229ea2707cbff7aac", + "url": "https://api.github.com/repos/newfold-labs/wp-module-ecommerce/zipball/35acde73891a861ce9e4308c2294f8a76584e2e6", + "reference": "35acde73891a861ce9e4308c2294f8a76584e2e6", "shasum": "" }, "require": { @@ -704,10 +704,10 @@ ], "description": "Brand Agnostic eCommerce Experience", "support": { - "source": "https://github.com/newfold-labs/wp-module-ecommerce/tree/v1.3.35", + "source": "https://github.com/newfold-labs/wp-module-ecommerce/tree/v1.3.36", "issues": "https://github.com/newfold-labs/wp-module-ecommerce/issues" }, - "time": "2024-06-27T15:00:00+00:00" + "time": "2024-07-05T12:56:42+00:00" }, { "name": "newfold-labs/wp-module-facebook", @@ -1652,16 +1652,16 @@ }, { "name": "wp-cli/wp-config-transformer", - "version": "v1.3.5", + "version": "v1.3.6", "source": { "type": "git", "url": "https://github.com/wp-cli/wp-config-transformer.git", - "reference": "202aa80528939159d52bc4026cee5453aec382db" + "reference": "88f516f44dce1660fc4b780da513e3ca12d7d24f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/wp-config-transformer/zipball/202aa80528939159d52bc4026cee5453aec382db", - "reference": "202aa80528939159d52bc4026cee5453aec382db", + "url": "https://api.github.com/repos/wp-cli/wp-config-transformer/zipball/88f516f44dce1660fc4b780da513e3ca12d7d24f", + "reference": "88f516f44dce1660fc4b780da513e3ca12d7d24f", "shasum": "" }, "require": { @@ -1690,9 +1690,9 @@ "homepage": "https://github.com/wp-cli/wp-config-transformer", "support": { "issues": "https://github.com/wp-cli/wp-config-transformer/issues", - "source": "https://github.com/wp-cli/wp-config-transformer/tree/v1.3.5" + "source": "https://github.com/wp-cli/wp-config-transformer/tree/v1.3.6" }, - "time": "2023-11-10T14:28:03+00:00" + "time": "2024-05-23T06:32:14+00:00" }, { "name": "wp-forge/collection", @@ -2807,12 +2807,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "27714b56f04815b654c3805502ab77207505ac19" + "reference": "fed98f59fae0ca97a0753263270f4a8680d09f03" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/27714b56f04815b654c3805502ab77207505ac19", - "reference": "27714b56f04815b654c3805502ab77207505ac19", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/fed98f59fae0ca97a0753263270f4a8680d09f03", + "reference": "fed98f59fae0ca97a0753263270f4a8680d09f03", "shasum": "" }, "conflict": { @@ -2820,6 +2820,8 @@ "admidio/admidio": "<4.2.13", "adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3", "aheinze/cockpit": "<2.2", + "aimeos/ai-admin-graphql": ">=2022.04.1,<2022.10.10|>=2023.04.1,<2023.10.6|>=2024.04.1,<2024.04.6", + "aimeos/ai-admin-jsonadm": "<2020.10.13|>=2021.04.1,<2021.10.6|>=2022.04.1,<2022.10.3|>=2023.04.1,<2023.10.4|==2024.04.1", "aimeos/ai-client-html": ">=2020.04.1,<2020.10.27|>=2021.04.1,<2021.10.22|>=2022.04.1,<2022.10.13|>=2023.04.1,<2023.10.15|>=2024.04.1,<2024.04.7", "aimeos/aimeos-core": ">=2022.04.1,<2022.10.17|>=2023.04.1,<2023.10.17|>=2024.04.1,<2024.04.7", "aimeos/aimeos-typo3": "<19.10.12|>=20,<20.10.5", @@ -3604,7 +3606,7 @@ "type": "tidelift" } ], - "time": "2024-06-26T15:05:17+00:00" + "time": "2024-07-02T22:05:16+00:00" }, { "name": "squizlabs/php_codesniffer", @@ -4217,7 +4219,7 @@ }, { "name": "wp-phpunit/wp-phpunit", - "version": "6.5.4", + "version": "6.5.5", "source": { "type": "git", "url": "https://github.com/wp-phpunit/wp-phpunit.git", @@ -4289,5 +4291,5 @@ "platform-overrides": { "php": "7.3.0" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } diff --git a/package-lock.json b/package-lock.json index 8496727d1..37ea96418 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,7 @@ "license": "GPL-2.0-or-later", "dependencies": { "@heroicons/react": "^2.1.1", - "@newfold-labs/wp-module-ecommerce": "^1.3.35", + "@newfold-labs/wp-module-ecommerce": "^1.3.36", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", @@ -3197,9 +3197,10 @@ } }, "node_modules/@newfold-labs/wp-module-ecommerce": { - "version": "1.3.35", - "resolved": "https://npm.pkg.github.com/download/@newfold-labs/wp-module-ecommerce/1.3.35/ac741f7aead7ac75b0cb4d479c64d7fb4c83ccc3", - "integrity": "sha512-TX5tHdYWMuvzFu9dqXYyFdN4wde+0Tuyr45nXR+cDhSTPKcYP77DETGmjfrO6a4mah1xoLKKR6G4nqGSb7yp6A==", + "version": "1.3.36", + "resolved": "https://npm.pkg.github.com/download/@newfold-labs/wp-module-ecommerce/1.3.36/a1039c5bd4c298d78e7fd0d90dd3cf0a59397048", + "integrity": "sha512-rNEGRm5mr2A+UEE7jNWFiHxxBLdRGW9XTvLgGrRGXQi+XA5EbhM3NFwPctCHxMb5G67GlraajiVZLWOySYH2Mg==", + "license": "GPL-2.0-or-later", "dependencies": { "@faizaanceg/pandora": "^1.1.1", "@heroicons/react": "2.1.3", diff --git a/package.json b/package.json index 0d8161dac..b486f55dd 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ }, "dependencies": { "@heroicons/react": "^2.1.1", - "@newfold-labs/wp-module-ecommerce": "^1.3.35", + "@newfold-labs/wp-module-ecommerce": "^1.3.36", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", From 7108ad870f7eb34874ed161f07a0276ccfc08d3b Mon Sep 17 00:00:00 2001 From: aratidgr8 Date: Wed, 10 Jul 2024 19:02:37 +0530 Subject: [PATCH 37/57] ecommerce version bump 1.3.37 --- composer.json | 2 +- composer.lock | 45 +++++++++++++++++++++++---------------------- package-lock.json | 12 ++++++------ package.json | 2 +- 4 files changed, 31 insertions(+), 30 deletions(-) diff --git a/composer.json b/composer.json index ee1ab573a..35bfacb9a 100644 --- a/composer.json +++ b/composer.json @@ -78,7 +78,7 @@ "newfold-labs/wp-module-context": "^1.0.1", "newfold-labs/wp-module-data": "^2.5.3", "newfold-labs/wp-module-deactivation": "^1.2.1", - "newfold-labs/wp-module-ecommerce": "^1.3.36", + "newfold-labs/wp-module-ecommerce": "^1.3.37", "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", diff --git a/composer.lock b/composer.lock index d661cb9c4..2e5541067 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": "edd9011fd18f58ab36baa4110f9ef95e", + "content-hash": "be0d89b98c74f7ee7780b3efd92944da", "packages": [ { "name": "doctrine/inflector", @@ -591,16 +591,16 @@ }, { "name": "newfold-labs/wp-module-deactivation", - "version": "1.2.1", + "version": "1.2.2", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-deactivation.git", - "reference": "7aa6aa4e9b594929c9c4f3088320b5db6b537ee5" + "reference": "1ccd41696bc93e15a3bb8e28166e5164e9353021" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-deactivation/zipball/7aa6aa4e9b594929c9c4f3088320b5db6b537ee5", - "reference": "7aa6aa4e9b594929c9c4f3088320b5db6b537ee5", + "url": "https://api.github.com/repos/newfold-labs/wp-module-deactivation/zipball/1ccd41696bc93e15a3bb8e28166e5164e9353021", + "reference": "1ccd41696bc93e15a3bb8e28166e5164e9353021", "shasum": "" }, "require": { @@ -645,23 +645,23 @@ ], "description": "A Module for handling WordPress brand plugins and modules deactivations", "support": { - "source": "https://github.com/newfold-labs/wp-module-deactivation/tree/1.2.1", + "source": "https://github.com/newfold-labs/wp-module-deactivation/tree/1.2.2", "issues": "https://github.com/newfold-labs/wp-module-deactivation/issues" }, - "time": "2024-06-19T18:29:23+00:00" + "time": "2024-07-09T16:30:13+00:00" }, { "name": "newfold-labs/wp-module-ecommerce", - "version": "v1.3.36", + "version": "v1.3.37", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-ecommerce.git", - "reference": "35acde73891a861ce9e4308c2294f8a76584e2e6" + "reference": "6de1a4be520e0f82d8c23b2d2c11f2825f5a520a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-ecommerce/zipball/35acde73891a861ce9e4308c2294f8a76584e2e6", - "reference": "35acde73891a861ce9e4308c2294f8a76584e2e6", + "url": "https://api.github.com/repos/newfold-labs/wp-module-ecommerce/zipball/6de1a4be520e0f82d8c23b2d2c11f2825f5a520a", + "reference": "6de1a4be520e0f82d8c23b2d2c11f2825f5a520a", "shasum": "" }, "require": { @@ -704,10 +704,10 @@ ], "description": "Brand Agnostic eCommerce Experience", "support": { - "source": "https://github.com/newfold-labs/wp-module-ecommerce/tree/v1.3.36", + "source": "https://github.com/newfold-labs/wp-module-ecommerce/tree/v1.3.37", "issues": "https://github.com/newfold-labs/wp-module-ecommerce/issues" }, - "time": "2024-07-05T12:56:42+00:00" + "time": "2024-07-10T13:06:32+00:00" }, { "name": "newfold-labs/wp-module-facebook", @@ -2807,12 +2807,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "fed98f59fae0ca97a0753263270f4a8680d09f03" + "reference": "0970dcafb84065dda980b50a7074acacafd68368" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/fed98f59fae0ca97a0753263270f4a8680d09f03", - "reference": "fed98f59fae0ca97a0753263270f4a8680d09f03", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/0970dcafb84065dda980b50a7074acacafd68368", + "reference": "0970dcafb84065dda980b50a7074acacafd68368", "shasum": "" }, "conflict": { @@ -2823,6 +2823,7 @@ "aimeos/ai-admin-graphql": ">=2022.04.1,<2022.10.10|>=2023.04.1,<2023.10.6|>=2024.04.1,<2024.04.6", "aimeos/ai-admin-jsonadm": "<2020.10.13|>=2021.04.1,<2021.10.6|>=2022.04.1,<2022.10.3|>=2023.04.1,<2023.10.4|==2024.04.1", "aimeos/ai-client-html": ">=2020.04.1,<2020.10.27|>=2021.04.1,<2021.10.22|>=2022.04.1,<2022.10.13|>=2023.04.1,<2023.10.15|>=2024.04.1,<2024.04.7", + "aimeos/ai-controller-frontend": "<2020.10.15|>=2021.04.1,<2021.10.8|>=2022.04.1,<2022.10.8|>=2023.04.1,<2023.10.9", "aimeos/aimeos-core": ">=2022.04.1,<2022.10.17|>=2023.04.1,<2023.10.17|>=2024.04.1,<2024.04.7", "aimeos/aimeos-typo3": "<19.10.12|>=20,<20.10.5", "airesvsg/acf-to-rest-api": "<=3.1", @@ -2953,7 +2954,7 @@ "ec-cube/ec-cube": "<2.4.4|>=2.11,<=2.17.1|>=3,<=3.0.18.0-patch4|>=4,<=4.1.2", "ecodev/newsletter": "<=4", "ectouch/ectouch": "<=2.7.2", - "egroupware/egroupware": "<16.1.20170922", + "egroupware/egroupware": "<23.1.20240624", "elefant/cms": "<2.0.7", "elgg/elgg": "<3.3.24|>=4,<4.0.5", "elijaa/phpmemcacheadmin": "<=1.3", @@ -3326,9 +3327,9 @@ "shopware/core": "<6.5.8.8-dev|>=6.6.0.0-RC1-dev,<6.6.1", "shopware/platform": "<6.5.8.8-dev|>=6.6.0.0-RC1-dev,<6.6.1", "shopware/production": "<=6.3.5.2", - "shopware/shopware": "<6.2.3", + "shopware/shopware": "<=5.7.17", "shopware/storefront": "<=6.4.8.1|>=6.5.8,<6.5.8.7-dev", - "shopxo/shopxo": "<2.2.6", + "shopxo/shopxo": "<=6.1", "showdoc/showdoc": "<2.10.4", "silverstripe-australia/advancedreports": ">=1,<=2", "silverstripe/admin": "<1.13.19|>=2,<2.1.8", @@ -3520,7 +3521,7 @@ "yidashi/yii2cmf": "<=2", "yii2mod/yii2-cms": "<1.9.2", "yiisoft/yii": "<1.1.29", - "yiisoft/yii2": "<2.0.50", + "yiisoft/yii2": "<2.0.49.4-dev", "yiisoft/yii2-authclient": "<2.2.15", "yiisoft/yii2-bootstrap": "<2.0.4", "yiisoft/yii2-dev": "<2.0.43", @@ -3606,7 +3607,7 @@ "type": "tidelift" } ], - "time": "2024-07-02T22:05:16+00:00" + "time": "2024-07-08T20:05:45+00:00" }, { "name": "squizlabs/php_codesniffer", @@ -4291,5 +4292,5 @@ "platform-overrides": { "php": "7.3.0" }, - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } diff --git a/package-lock.json b/package-lock.json index 3082618ff..10e796e48 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,7 @@ "license": "GPL-2.0-or-later", "dependencies": { "@heroicons/react": "^2.1.1", - "@newfold-labs/wp-module-ecommerce": "^1.3.36", + "@newfold-labs/wp-module-ecommerce": "^1.3.37", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", @@ -3197,10 +3197,9 @@ } }, "node_modules/@newfold-labs/wp-module-ecommerce": { - "version": "1.3.36", - "resolved": "https://npm.pkg.github.com/download/@newfold-labs/wp-module-ecommerce/1.3.36/a1039c5bd4c298d78e7fd0d90dd3cf0a59397048", - "integrity": "sha512-rNEGRm5mr2A+UEE7jNWFiHxxBLdRGW9XTvLgGrRGXQi+XA5EbhM3NFwPctCHxMb5G67GlraajiVZLWOySYH2Mg==", - "license": "GPL-2.0-or-later", + "version": "1.3.37", + "resolved": "https://npm.pkg.github.com/download/@newfold-labs/wp-module-ecommerce/1.3.37/dee0514d894a92cfb7729bc9494ff3a46aa7376c", + "integrity": "sha512-aEGFqk0mce/HQ4f541ZE1pMcuyoYScQ0zXy8ystKNu1WGQw3M+ngoZoFOcz0zveayYNtdejH7uMdaizuxhCQWQ==", "dependencies": { "@faizaanceg/pandora": "^1.1.1", "@heroicons/react": "2.1.3", @@ -3215,7 +3214,8 @@ "@wordpress/i18n": "^4.55.0", "classnames": "2.5.1", "moment": "^2.29.4", - "swr": "2.1.5" + "swr": "2.1.5", + "uuid": "^9.0.1" } }, "node_modules/@newfold-labs/wp-module-ecommerce/node_modules/@reduxjs/toolkit": { diff --git a/package.json b/package.json index 3d915d2f3..d75f0fa86 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ }, "dependencies": { "@heroicons/react": "^2.1.1", - "@newfold-labs/wp-module-ecommerce": "^1.3.36", + "@newfold-labs/wp-module-ecommerce": "^1.3.37", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", From 6dd089dfb630fceb21492d6f1d15b9a7b56d45b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jul 2024 15:59:01 +0000 Subject: [PATCH 38/57] NPM(deps): Bump @wordpress/element from 6.2.0 to 6.3.0 Bumps [@wordpress/element](https://github.com/WordPress/gutenberg/tree/HEAD/packages/element) from 6.2.0 to 6.3.0. - [Release notes](https://github.com/WordPress/gutenberg/releases) - [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/element/CHANGELOG.md) - [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/element@6.3.0/packages/element) --- updated-dependencies: - dependency-name: "@wordpress/element" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 16 ++++++++-------- package.json | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8496727d1..cffaee706 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "@reduxjs/toolkit": "^2.2.6", "@wordpress/compose": "^7.2.0", "@wordpress/dom-ready": "^4.2.0", - "@wordpress/element": "^6.1.0", + "@wordpress/element": "^6.3.0", "@wordpress/html-entities": "^4.2.0", "@wordpress/i18n": "^5.2.0", "@wordpress/icons": "^10.2.0", @@ -5824,14 +5824,14 @@ } }, "node_modules/@wordpress/element": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.2.0.tgz", - "integrity": "sha512-pRCchhYoH7eN0bxL4iUMBm82psqSUozlmk4B5IhQiqzYoOWn7OjvkGqejAnt81iDZUNZ8hIY2gLpRplgwwiZlQ==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.3.0.tgz", + "integrity": "sha512-DsiqzjuXqxJkLUoLomsGTFFxbSZgk+Lz+2/1yFH+BU3jQ6zeD64+JWv8Lt4+fKU154rV0KpfMwfD/oAC/Lp1zQ==", "dependencies": { "@babel/runtime": "^7.16.0", "@types/react": "^18.2.79", "@types/react-dom": "^18.2.25", - "@wordpress/escape-html": "^3.2.0", + "@wordpress/escape-html": "^3.3.0", "change-case": "^4.1.2", "is-plain-object": "^5.0.0", "react": "^18.3.0", @@ -5843,9 +5843,9 @@ } }, "node_modules/@wordpress/element/node_modules/@wordpress/escape-html": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.2.0.tgz", - "integrity": "sha512-GFJ91lrs46zN3bgRGBHREaZ4jegwUA+2Gx+P6f11VDLhihNGKyg67uNf0lXqLoLj6iQQCBDP+15k/0k2ccr3YA==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.3.0.tgz", + "integrity": "sha512-Wu/Fq96E28UGnIO5VQW/aEgCiHWvzrD8izDnP8U0WZSuwIPYcS5iYmRe2UWc7rwyoeY2YXNd6xFjgd7oTOKNCA==", "dependencies": { "@babel/runtime": "^7.16.0" }, diff --git a/package.json b/package.json index 0d8161dac..e5dcbf433 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "@reduxjs/toolkit": "^2.2.6", "@wordpress/compose": "^7.2.0", "@wordpress/dom-ready": "^4.2.0", - "@wordpress/element": "^6.1.0", + "@wordpress/element": "^6.3.0", "@wordpress/html-entities": "^4.2.0", "@wordpress/i18n": "^5.2.0", "@wordpress/icons": "^10.2.0", From c6e2f759fdcb2e70d2da338c600d3a4367b8df40 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 19:03:07 +0000 Subject: [PATCH 39/57] Composer(deps): Bump newfold-labs/wp-module-deactivation Bumps [newfold-labs/wp-module-deactivation](https://github.com/newfold-labs/wp-module-deactivation) from 1.2.1 to 1.2.3. - [Release notes](https://github.com/newfold-labs/wp-module-deactivation/releases) - [Commits](https://github.com/newfold-labs/wp-module-deactivation/compare/1.2.1...1.2.3) --- updated-dependencies: - dependency-name: newfold-labs/wp-module-deactivation dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- composer.lock | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index 5add5ae8c..e4ea5bd67 100644 --- a/composer.json +++ b/composer.json @@ -78,7 +78,7 @@ "newfold-labs/wp-module-coming-soon": "^1.2.5", "newfold-labs/wp-module-context": "^1.0.1", "newfold-labs/wp-module-data": "^2.5.3", - "newfold-labs/wp-module-deactivation": "^1.2.1", + "newfold-labs/wp-module-deactivation": "^1.2.3", "newfold-labs/wp-module-ecommerce": "^1.3.35", "newfold-labs/wp-module-facebook": "^1.0.9", "newfold-labs/wp-module-features": "^1.4.2", diff --git a/composer.lock b/composer.lock index 59f02d71b..ced42020d 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": "4b7c3b10803c1f7cc70294ee4db3f60e", + "content-hash": "6a242be5b03aa29ca2afe46d953152c9", "packages": [ { "name": "doctrine/inflector", @@ -591,16 +591,16 @@ }, { "name": "newfold-labs/wp-module-deactivation", - "version": "1.2.1", + "version": "1.2.3", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-deactivation.git", - "reference": "7aa6aa4e9b594929c9c4f3088320b5db6b537ee5" + "reference": "77fba9e7289ef3924bc349b549ce53e9f494565e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-deactivation/zipball/7aa6aa4e9b594929c9c4f3088320b5db6b537ee5", - "reference": "7aa6aa4e9b594929c9c4f3088320b5db6b537ee5", + "url": "https://api.github.com/repos/newfold-labs/wp-module-deactivation/zipball/77fba9e7289ef3924bc349b549ce53e9f494565e", + "reference": "77fba9e7289ef3924bc349b549ce53e9f494565e", "shasum": "" }, "require": { @@ -645,10 +645,10 @@ ], "description": "A Module for handling WordPress brand plugins and modules deactivations", "support": { - "source": "https://github.com/newfold-labs/wp-module-deactivation/tree/1.2.1", + "source": "https://github.com/newfold-labs/wp-module-deactivation/tree/1.2.3", "issues": "https://github.com/newfold-labs/wp-module-deactivation/issues" }, - "time": "2024-06-19T18:29:23+00:00" + "time": "2024-07-10T16:05:32+00:00" }, { "name": "newfold-labs/wp-module-ecommerce", From ec8b93d1769a373f6781cc0b66d35f6752b414bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 21:43:57 +0000 Subject: [PATCH 40/57] NPM Dev(deps-dev): Bump @wordpress/eslint-plugin from 19.2.0 to 20.0.0 Bumps [@wordpress/eslint-plugin](https://github.com/WordPress/gutenberg/tree/HEAD/packages/eslint-plugin) from 19.2.0 to 20.0.0. - [Release notes](https://github.com/WordPress/gutenberg/releases) - [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/eslint-plugin@20.0.0/packages/eslint-plugin) --- updated-dependencies: - dependency-name: "@wordpress/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package-lock.json | 40 ++++++++++++++++++++-------------------- package.json | 2 +- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/package-lock.json b/package-lock.json index b556adfbd..dc39bd9c9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,7 +34,7 @@ "@tailwindcss/forms": "^0.5.7", "@testing-library/cypress": "^10.0.2", "@wordpress/env": "^10.2.0", - "@wordpress/eslint-plugin": "^19.2.0", + "@wordpress/eslint-plugin": "^20.0.0", "@wordpress/scripts": "^27.4.0", "cypress": "^13.13.0", "cypress-axe": "^1.5.0", @@ -5908,16 +5908,16 @@ } }, "node_modules/@wordpress/eslint-plugin": { - "version": "19.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-19.2.0.tgz", - "integrity": "sha512-2mRC7WRV9qwdcMsm+VSTjcYQbLcBag5UTUXrClsQPqDZ9aeoL8QloStFCKOqXuYRYN4tYytIgnM/blvEz7OlAw==", + "version": "20.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-20.0.0.tgz", + "integrity": "sha512-rOzkWHX6xjTt7Gmhe/nwlcgQJe4O6bCXkCJKcL+iyBhYABVjCnzneDiVh4bM1cNmL8zUx6/f1ADjmb3Xz9vG0g==", "dev": true, "dependencies": { "@babel/eslint-parser": "^7.16.0", "@typescript-eslint/eslint-plugin": "^6.4.1", "@typescript-eslint/parser": "^6.4.1", - "@wordpress/babel-preset-default": "^8.2.0", - "@wordpress/prettier-config": "^4.2.0", + "@wordpress/babel-preset-default": "^8.3.0", + "@wordpress/prettier-config": "^4.3.0", "cosmiconfig": "^7.0.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.25.2", @@ -5951,9 +5951,9 @@ } }, "node_modules/@wordpress/eslint-plugin/node_modules/@wordpress/babel-preset-default": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-8.2.0.tgz", - "integrity": "sha512-bOvP+8b0zk7wjIbpaAnJSc0kkKZA6oeyJ4/GRtp+mmcrIXJWL+LNCGYQM+aUDSGO7j1QazLpTR7p5br8ygl5/g==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-8.3.0.tgz", + "integrity": "sha512-lLPZuKdJF6CLS/YUv7c2OkGhplEpKZBQ4YiCQUdbhg8joFZH12QICUxtT2kvoUxLQ22zwLtNMPYTzISClE8zSw==", "dev": true, "dependencies": { "@babel/core": "^7.16.0", @@ -5962,8 +5962,8 @@ "@babel/preset-env": "^7.16.0", "@babel/preset-typescript": "^7.16.0", "@babel/runtime": "^7.16.0", - "@wordpress/browserslist-config": "^6.2.0", - "@wordpress/warning": "^3.2.0", + "@wordpress/browserslist-config": "^6.3.0", + "@wordpress/warning": "^3.3.0", "browserslist": "^4.21.10", "core-js": "^3.31.0", "react": "^18.3.0" @@ -5974,9 +5974,9 @@ } }, "node_modules/@wordpress/eslint-plugin/node_modules/@wordpress/browserslist-config": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-6.2.0.tgz", - "integrity": "sha512-+/qiAQmWd+d7/yvVRxXevLKurlHjknO4EcFRlBfKM3moS6GNVSkCb3n6HwFXGawaQH7aaO3pPRdzmG5SIIxrEA==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-6.3.0.tgz", + "integrity": "sha512-DDz/Iiax7RQR7cuTdv1ZlAfPgCDijiszg9xE9c2lO/2Hvv7voP/sLKQhdr/mSUzNW9ZXK7/NVIYAXxFd3Eee2A==", "dev": true, "engines": { "node": ">=18.12.0", @@ -5984,9 +5984,9 @@ } }, "node_modules/@wordpress/eslint-plugin/node_modules/@wordpress/prettier-config": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-4.2.0.tgz", - "integrity": "sha512-OvIUKpaphNdS26mQ9C9/bGzRZJnoyEzbJdtCmWr45fHAcfmkYbyNdyBERGjcne0F9BbMWP3yIqfB7eHZjQ1hnw==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-4.3.0.tgz", + "integrity": "sha512-2OWp2g/e0y2iKh1LZvc+f0pxesI5NYBQSgnJkaXHt6ktc7QaBX3nwYcZQ030TBMxl2hnNclLAPUR85UMSRx0dw==", "dev": true, "engines": { "node": ">=18.12.0", @@ -5997,9 +5997,9 @@ } }, "node_modules/@wordpress/eslint-plugin/node_modules/@wordpress/warning": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.2.0.tgz", - "integrity": "sha512-i+EYX506tE45+lhOW4qAwXm/5/PmkAdvKhNt+dTxJDif+ATUqp4QaFFRl9yFIt/v+ksAapQ0bnPkKNSDsECGtA==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.3.0.tgz", + "integrity": "sha512-n82aKCxuGRNwAtSLaycErJuhKgfOc+KtiljyQITPperMh9i8bH6I+JxtYiu+aLMaY5vrVLVb+/kCzKuWVQIKPA==", "dev": true, "engines": { "node": ">=18.12.0", diff --git a/package.json b/package.json index c85a9e466..07b72b952 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "@tailwindcss/forms": "^0.5.7", "@testing-library/cypress": "^10.0.2", "@wordpress/env": "^10.2.0", - "@wordpress/eslint-plugin": "^19.2.0", + "@wordpress/eslint-plugin": "^20.0.0", "@wordpress/scripts": "^27.4.0", "cypress": "^13.13.0", "cypress-axe": "^1.5.0", From 9961a4bc896126b7145702a3bef20c0b305dc7ac Mon Sep 17 00:00:00 2001 From: wpalani Date: Thu, 11 Jul 2024 21:00:19 -0700 Subject: [PATCH 41/57] Bump version --- bluehost-wordpress-plugin.php | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bluehost-wordpress-plugin.php b/bluehost-wordpress-plugin.php index 5e1962cf3..c3cc6415f 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.13.0 + * Version: 3.13.1 * Requires at least: 6.0 * Requires PHP: 7.1 * Tested up to: 6.5.5 @@ -32,7 +32,7 @@ } // Define constants -define( 'BLUEHOST_PLUGIN_VERSION', '3.13.0' ); +define( 'BLUEHOST_PLUGIN_VERSION', '3.13.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-lock.json b/package-lock.json index b556adfbd..ce7cb2a61 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bluehost-wordpress-plugin", - "version": "3.13.0", + "version": "3.13.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bluehost-wordpress-plugin", - "version": "3.13.0", + "version": "3.13.1", "license": "GPL-2.0-or-later", "dependencies": { "@heroicons/react": "^2.1.1", diff --git a/package.json b/package.json index c85a9e466..a104e5c70 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bluehost-wordpress-plugin", - "version": "3.13.0", + "version": "3.13.1", "description": "WordPress plugin that integrates your WordPress site with the Bluehost control panel, including performance, security, and update features.", "author": { "name": "Bluehost", From b28e9090b85a620aeaa2cad5d97c6802748be51c Mon Sep 17 00:00:00 2001 From: arunshenoy99 Date: Tue, 16 Jul 2024 19:17:45 +0530 Subject: [PATCH 42/57] Bump Onboarding to 2.3.6 --- composer.json | 4 ++-- composer.lock | 48 +++++++++++++++++++++--------------------------- 2 files changed, 23 insertions(+), 29 deletions(-) diff --git a/composer.json b/composer.json index 0579cf737..a2e925a77 100644 --- a/composer.json +++ b/composer.json @@ -87,8 +87,8 @@ "newfold-labs/wp-module-marketplace": "^2.4.0", "newfold-labs/wp-module-migration": "^1.0.8", "newfold-labs/wp-module-notifications": "^1.4.0", - "newfold-labs/wp-module-onboarding": "^2.3.5", - "newfold-labs/wp-module-patterns": "2.0.0 as 1.9.9", + "newfold-labs/wp-module-onboarding": "^2.3.6", + "newfold-labs/wp-module-patterns": "^2.0.0", "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", diff --git a/composer.lock b/composer.lock index 7b60e5ece..f73968bf6 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": "5101d468a5acbfdddd69f92316ff03a5", + "content-hash": "c1b6128f7b9920d1189300d2b2316797", "packages": [ { "name": "doctrine/inflector", @@ -1190,16 +1190,16 @@ }, { "name": "newfold-labs/wp-module-onboarding", - "version": "2.3.5", + "version": "2.3.6", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding.git", - "reference": "50ace2a0dbfed48ebf8b8409b80736d5d48d9159" + "reference": "3622c6692aaba32b3375a453877133bbab69c7b9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/50ace2a0dbfed48ebf8b8409b80736d5d48d9159", - "reference": "50ace2a0dbfed48ebf8b8409b80736d5d48d9159", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/3622c6692aaba32b3375a453877133bbab69c7b9", + "reference": "3622c6692aaba32b3375a453877133bbab69c7b9", "shasum": "" }, "require": { @@ -1207,7 +1207,7 @@ "newfold-labs/wp-module-facebook": "^1.0", "newfold-labs/wp-module-migration": "^1.0", "newfold-labs/wp-module-onboarding-data": "^1.1", - "newfold-labs/wp-module-patterns": "^1.0", + "newfold-labs/wp-module-patterns": "^2.0", "wp-cli/wp-config-transformer": "^1.3", "wp-forge/helpers": "^2.0" }, @@ -1245,23 +1245,23 @@ ], "description": "Next-generation WordPress Onboarding for WordPress sites at Newfold Digital.", "support": { - "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.3.5", + "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.3.6", "issues": "https://github.com/newfold-labs/wp-module-onboarding/issues" }, - "time": "2024-06-27T14:10:10+00:00" + "time": "2024-07-16T13:35:24+00:00" }, { "name": "newfold-labs/wp-module-onboarding-data", - "version": "1.1.13", + "version": "1.1.14", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding-data.git", - "reference": "dd6784cd136ac687a373e27f2f51999d93e97788" + "reference": "0b57747f6a67d8a9308b26c0434d196d023925d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding-data/zipball/dd6784cd136ac687a373e27f2f51999d93e97788", - "reference": "dd6784cd136ac687a373e27f2f51999d93e97788", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding-data/zipball/0b57747f6a67d8a9308b26c0434d196d023925d0", + "reference": "0b57747f6a67d8a9308b26c0434d196d023925d0", "shasum": "" }, "require": { @@ -1271,7 +1271,7 @@ "newfold-labs/wp-module-data": "^2.0", "newfold-labs/wp-module-install-checker": "^1.0", "newfold-labs/wp-module-installer": "^1.1", - "newfold-labs/wp-module-patterns": "^1.0", + "newfold-labs/wp-module-patterns": "^2.0", "newfold-labs/wp-module-performance": "^1.4", "newfold-labs/wp-module-survey": "^1.0", "wp-forge/wp-upgrade-handler": "^1.0" @@ -1297,23 +1297,23 @@ ], "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.13", + "source": "https://github.com/newfold-labs/wp-module-onboarding-data/tree/1.1.14", "issues": "https://github.com/newfold-labs/wp-module-onboarding-data/issues" }, - "time": "2024-06-27T13:27:53+00:00" + "time": "2024-07-16T04:54:52+00:00" }, { "name": "newfold-labs/wp-module-patterns", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-patterns.git", - "reference": "89c05ae08ebffe28521c876eb839a7bc9b60d02a" + "reference": "383fccab930655790d149e17987ef450265b5c3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-patterns/zipball/89c05ae08ebffe28521c876eb839a7bc9b60d02a", - "reference": "89c05ae08ebffe28521c876eb839a7bc9b60d02a", + "url": "https://api.github.com/repos/newfold-labs/wp-module-patterns/zipball/383fccab930655790d149e17987ef450265b5c3b", + "reference": "383fccab930655790d149e17987ef450265b5c3b", "shasum": "" }, "require": { @@ -1351,10 +1351,10 @@ ], "description": "WordPress Cloud Patterns", "support": { - "source": "https://github.com/newfold-labs/wp-module-patterns/tree/2.0.0", + "source": "https://github.com/newfold-labs/wp-module-patterns/tree/2.1.0", "issues": "https://github.com/newfold-labs/wp-module-patterns/issues" }, - "time": "2024-05-29T16:10:58+00:00" + "time": "2024-06-26T15:45:31+00:00" }, { "name": "newfold-labs/wp-module-performance", @@ -4269,12 +4269,6 @@ } ], "aliases": [ - { - "package": "newfold-labs/wp-module-patterns", - "version": "2.0.0.0", - "alias": "1.9.9", - "alias_normalized": "1.9.9.0" - }, { "package": "newfold-labs/wp-module-performance", "version": "2.0.0.0", From b315c6fc92f726688b1300b6a4fe12475a66eb4c Mon Sep 17 00:00:00 2001 From: wpalani Date: Tue, 16 Jul 2024 15:35:01 -0700 Subject: [PATCH 43/57] Add wp 6.6 compatibility flag --- .wp-env.json | 2 +- bluehost-wordpress-plugin.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.wp-env.json b/.wp-env.json index 864f152fe..5a4b2ab44 100644 --- a/.wp-env.json +++ b/.wp-env.json @@ -1,5 +1,5 @@ { - "core": "WordPress/WordPress#tags/6.5.5", + "core": "WordPress/WordPress#tags/6.6", "config": { "WP_DEBUG": true, "WP_DEBUG_LOG": true, diff --git a/bluehost-wordpress-plugin.php b/bluehost-wordpress-plugin.php index c3cc6415f..d59e57e3e 100644 --- a/bluehost-wordpress-plugin.php +++ b/bluehost-wordpress-plugin.php @@ -15,7 +15,7 @@ * Version: 3.13.1 * Requires at least: 6.0 * Requires PHP: 7.1 - * Tested up to: 6.5.5 + * Tested up to: 6.6 * Author: Bluehost * Author URI: https://bluehost.com * Text Domain: wp-plugin-bluehost From 7662676e1f973768f4479540e47ba7cff2a36317 Mon Sep 17 00:00:00 2001 From: arunshenoy99 Date: Wed, 17 Jul 2024 20:04:09 +0530 Subject: [PATCH 44/57] Use ^2.1.0 --- composer.json | 2 +- composer.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index a2e925a77..ce194f7ce 100644 --- a/composer.json +++ b/composer.json @@ -88,7 +88,7 @@ "newfold-labs/wp-module-migration": "^1.0.8", "newfold-labs/wp-module-notifications": "^1.4.0", "newfold-labs/wp-module-onboarding": "^2.3.6", - "newfold-labs/wp-module-patterns": "^2.0.0", + "newfold-labs/wp-module-patterns": "^2.1.0", "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", diff --git a/composer.lock b/composer.lock index f73968bf6..7d43718d3 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": "c1b6128f7b9920d1189300d2b2316797", + "content-hash": "709736547f8be2495a809672e01c7e85", "packages": [ { "name": "doctrine/inflector", From e16fe400ef122b1a452ade01598dc0bd7948e60e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jul 2024 15:26:00 +0000 Subject: [PATCH 45/57] Composer Dev(deps-dev): Bump wp-phpunit/wp-phpunit from 6.5.5 to 6.6.0 Bumps [wp-phpunit/wp-phpunit](https://github.com/wp-phpunit/wp-phpunit) from 6.5.5 to 6.6.0. - [Commits](https://github.com/wp-phpunit/wp-phpunit/compare/6.5.5...6.6.0) --- updated-dependencies: - dependency-name: wp-phpunit/wp-phpunit dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- composer.lock | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 0579cf737..8b764087d 100644 --- a/composer.json +++ b/composer.json @@ -69,7 +69,7 @@ "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.4" + "wp-phpunit/wp-phpunit": "^6.6.0" }, "require": { "newfold-labs/wp-module-activation": "^1.0.3", diff --git a/composer.lock b/composer.lock index 7b60e5ece..5c6d4e364 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": "5101d468a5acbfdddd69f92316ff03a5", + "content-hash": "a9b9bfe385eaa9ba65e09dc6783c8511", "packages": [ { "name": "doctrine/inflector", @@ -4221,16 +4221,16 @@ }, { "name": "wp-phpunit/wp-phpunit", - "version": "6.5.5", + "version": "6.6.0", "source": { "type": "git", "url": "https://github.com/wp-phpunit/wp-phpunit.git", - "reference": "ef2cb44c0d991ac0c3a7a3ed0d2d1cf3fe8d8f2f" + "reference": "7a1d3a2150033a3d3e19de40aa5b2ef2fee36bc3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-phpunit/wp-phpunit/zipball/ef2cb44c0d991ac0c3a7a3ed0d2d1cf3fe8d8f2f", - "reference": "ef2cb44c0d991ac0c3a7a3ed0d2d1cf3fe8d8f2f", + "url": "https://api.github.com/repos/wp-phpunit/wp-phpunit/zipball/7a1d3a2150033a3d3e19de40aa5b2ef2fee36bc3", + "reference": "7a1d3a2150033a3d3e19de40aa5b2ef2fee36bc3", "shasum": "" }, "type": "library", @@ -4265,7 +4265,7 @@ "issues": "https://github.com/wp-phpunit/issues", "source": "https://github.com/wp-phpunit/wp-phpunit" }, - "time": "2024-05-07T16:46:52+00:00" + "time": "2024-07-17T01:13:44+00:00" } ], "aliases": [ From 623075f6628a008d921dfa3411cf2aad627dc5cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jul 2024 22:04:00 +0000 Subject: [PATCH 46/57] NPM(deps): Bump @heroicons/react from 2.1.3 to 2.1.5 Bumps [@heroicons/react](https://github.com/tailwindlabs/heroicons) from 2.1.3 to 2.1.5. - [Release notes](https://github.com/tailwindlabs/heroicons/releases) - [Changelog](https://github.com/tailwindlabs/heroicons/blob/master/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/heroicons/compare/v2.1.3...v2.1.5) --- updated-dependencies: - dependency-name: "@heroicons/react" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 16 ++++++++++++---- package.json | 2 +- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index ce7cb2a61..c95ea5280 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "3.13.1", "license": "GPL-2.0-or-later", "dependencies": { - "@heroicons/react": "^2.1.1", + "@heroicons/react": "^2.1.5", "@newfold-labs/wp-module-ecommerce": "^1.3.37", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", @@ -2590,9 +2590,9 @@ } }, "node_modules/@heroicons/react": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-2.1.3.tgz", - "integrity": "sha512-fEcPfo4oN345SoqdlCDdSa4ivjaKbk0jTd+oubcgNxnNgAfzysfwWfQUr+51wigiWHQQRiZNd1Ao0M5Y3M2EGg==", + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-2.1.5.tgz", + "integrity": "sha512-FuzFN+BsHa+7OxbvAERtgBTNeZpUjgM/MIizfVkSCL2/edriN0Hx/DWRCR//aPYwO5QX/YlgLGXk+E3PcfZwjA==", "peerDependencies": { "react": ">= 16" } @@ -3218,6 +3218,14 @@ "uuid": "^9.0.1" } }, + "node_modules/@newfold-labs/wp-module-ecommerce/node_modules/@heroicons/react": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-2.1.3.tgz", + "integrity": "sha512-fEcPfo4oN345SoqdlCDdSa4ivjaKbk0jTd+oubcgNxnNgAfzysfwWfQUr+51wigiWHQQRiZNd1Ao0M5Y3M2EGg==", + "peerDependencies": { + "react": ">= 16" + } + }, "node_modules/@newfold-labs/wp-module-ecommerce/node_modules/@reduxjs/toolkit": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.2.3.tgz", diff --git a/package.json b/package.json index a104e5c70..d1f22f21c 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "npm": ">=10" }, "dependencies": { - "@heroicons/react": "^2.1.1", + "@heroicons/react": "^2.1.5", "@newfold-labs/wp-module-ecommerce": "^1.3.37", "@newfold-labs/wp-module-facebook": "1.0.7", "@newfold-labs/wp-module-runtime": "^1.0.10", From 86466690dc15f5f43766eb1d9affb32f4beced00 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jul 2024 22:12:08 +0000 Subject: [PATCH 47/57] NPM Dev(deps-dev): Bump @wordpress/env from 10.2.0 to 10.3.0 Bumps [@wordpress/env](https://github.com/WordPress/gutenberg/tree/HEAD/packages/env) from 10.2.0 to 10.3.0. - [Release notes](https://github.com/WordPress/gutenberg/releases) - [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/env/CHANGELOG.md) - [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/env@10.3.0/packages/env) --- updated-dependencies: - dependency-name: "@wordpress/env" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index b65cd49f5..a42fb6749 100644 --- a/package-lock.json +++ b/package-lock.json @@ -33,7 +33,7 @@ "devDependencies": { "@tailwindcss/forms": "^0.5.7", "@testing-library/cypress": "^10.0.2", - "@wordpress/env": "^10.2.0", + "@wordpress/env": "^10.3.0", "@wordpress/eslint-plugin": "^20.0.0", "@wordpress/scripts": "^27.4.0", "cypress": "^13.13.0", @@ -5878,9 +5878,9 @@ } }, "node_modules/@wordpress/env": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/env/-/env-10.2.0.tgz", - "integrity": "sha512-EToZYPGXpl42Asw3bxpX8aKmHfRUdGxKPjQ9CHZVQoTAL27Af4FyjyGnepsnDpnYdIeI8VPb2S3k2NL/1+fpIA==", + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/env/-/env-10.3.0.tgz", + "integrity": "sha512-tfEYfXp+4c09btYwNovfBRDDCD25L6Dasg6ODkYw0g+gg5DXsYvaq7tQDeAAzqwtTpzeKi4DOidNsVoA4FR6Rg==", "dev": true, "dependencies": { "chalk": "^4.0.0", diff --git a/package.json b/package.json index 644689066..384f4b4a8 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "devDependencies": { "@tailwindcss/forms": "^0.5.7", "@testing-library/cypress": "^10.0.2", - "@wordpress/env": "^10.2.0", + "@wordpress/env": "^10.3.0", "@wordpress/eslint-plugin": "^20.0.0", "@wordpress/scripts": "^27.4.0", "cypress": "^13.13.0", From cf15f94cfc227ca17716d7305df6edda94a15f0e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jul 2024 22:12:11 +0000 Subject: [PATCH 48/57] NPM(deps): Bump @wordpress/compose from 7.2.0 to 7.3.0 Bumps [@wordpress/compose](https://github.com/WordPress/gutenberg/tree/HEAD/packages/compose) from 7.2.0 to 7.3.0. - [Release notes](https://github.com/WordPress/gutenberg/releases) - [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/compose/CHANGELOG.md) - [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/compose@7.3.0/packages/compose) --- updated-dependencies: - dependency-name: "@wordpress/compose" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 92 +++++++++++++++++++++++------------------------ package.json | 2 +- 2 files changed, 47 insertions(+), 47 deletions(-) diff --git a/package-lock.json b/package-lock.json index b65cd49f5..1a7c6ba19 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,7 +15,7 @@ "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", "@reduxjs/toolkit": "^2.2.6", - "@wordpress/compose": "^7.2.0", + "@wordpress/compose": "^7.3.0", "@wordpress/dom-ready": "^4.2.0", "@wordpress/element": "^6.3.0", "@wordpress/html-entities": "^4.2.0", @@ -5551,19 +5551,19 @@ } }, "node_modules/@wordpress/compose": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.2.0.tgz", - "integrity": "sha512-J2OGEatXXTgRJmXZHYcstL5GyQgQcoeSJ9dQ2wVFHJLnWoIX3hlvi5oRy10lpl1yntfm6NLkWDBuSTIbAYJzww==", + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.3.0.tgz", + "integrity": "sha512-TtAYdKnqQ/L/nF0+fmlQ1wAvm90X9HRBrAuEMNmkzKhews/5GR0rR3dNSMjlf7C6mNdTO3mkYt6AQf9fvZFoiQ==", "dependencies": { "@babel/runtime": "^7.16.0", "@types/mousetrap": "^1.6.8", - "@wordpress/deprecated": "^4.2.0", - "@wordpress/dom": "^4.2.0", - "@wordpress/element": "^6.2.0", - "@wordpress/is-shallow-equal": "^5.2.0", - "@wordpress/keycodes": "^4.2.0", - "@wordpress/priority-queue": "^3.2.0", - "@wordpress/undo-manager": "^1.2.0", + "@wordpress/deprecated": "^4.3.0", + "@wordpress/dom": "^4.3.0", + "@wordpress/element": "^6.3.0", + "@wordpress/is-shallow-equal": "^5.3.0", + "@wordpress/keycodes": "^4.3.0", + "@wordpress/priority-queue": "^3.3.0", + "@wordpress/undo-manager": "^1.3.0", "change-case": "^4.1.2", "clipboard": "^2.0.11", "mousetrap": "^1.6.5", @@ -5578,12 +5578,12 @@ } }, "node_modules/@wordpress/compose/node_modules/@wordpress/deprecated": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.2.0.tgz", - "integrity": "sha512-grD/IBGEvXzTLaNB45QZv8jDQYK6bMhCSa7obRahZDpyrM2lwKwa8p1oack5R+81YWkBL02gl9V5G9BrpNfBJg==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.3.0.tgz", + "integrity": "sha512-K2GHXlwjx6GMhZjs52X1MXySCrqzh4IjoqF5IOcydMgWqOIE2++hMuB9Y55qN/Mhsrv/HO8Q1LaTxbEd6BuNJQ==", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/hooks": "^4.2.0" + "@wordpress/hooks": "^4.3.0" }, "engines": { "node": ">=18.12.0", @@ -5591,12 +5591,12 @@ } }, "node_modules/@wordpress/compose/node_modules/@wordpress/dom": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.2.0.tgz", - "integrity": "sha512-vkeIsFdoKWl6lZJM+E49b+HocePP8gSPiDeUaa3P82JPTLTNAAfQMGWbAG0dbQCOZa7pmF4Sh0T1iVYmznm6eA==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.3.0.tgz", + "integrity": "sha512-sf4h6jVqboRdhe3soyr5bt+Vpz24WG/AIMHm7pGaxfbV5jxx06ZZ8K1RKzhr7jF3wn7IgIc1wmMA+OFzEYqGyw==", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/deprecated": "^4.2.0" + "@wordpress/deprecated": "^4.3.0" }, "engines": { "node": ">=18.12.0", @@ -5604,9 +5604,9 @@ } }, "node_modules/@wordpress/compose/node_modules/@wordpress/hooks": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.2.0.tgz", - "integrity": "sha512-N2dRMIb3F6y2dXlcT6m2CH/jDi9/Fe0gaM6ev7DrvwJ8+kX1CRzwAydemmPw34EnhQKvYKQYgGqttrfzvzgKJw==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.3.0.tgz", + "integrity": "sha512-bpqwSXGyxPfhuxESKoAtL4ofB3CazzvcwcucTZ0g9Pat3KNuBaloSrPBliqqNOiSLWNH3nmpkaRmv4u89EdKAw==", "dependencies": { "@babel/runtime": "^7.16.0" }, @@ -5616,9 +5616,9 @@ } }, "node_modules/@wordpress/compose/node_modules/@wordpress/is-shallow-equal": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.2.0.tgz", - "integrity": "sha512-WIsaAu+vDoAwnfGSWqyOMZiJeKXMXHNj6SzuESieASbL1VcbWgpg8FjDRjCNCEBgu7oe2VQrDOpDfajI1fgVvw==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.3.0.tgz", + "integrity": "sha512-sZ+fypqjYX0/DTAKsm1G9ND9Wn4d3Ju4lI7SLSmCKdUL5EPY3g/2LpKQKDqljh9m6Ex5NWp2XfU8UVXpkEfbMQ==", "dependencies": { "@babel/runtime": "^7.16.0" }, @@ -5628,12 +5628,12 @@ } }, "node_modules/@wordpress/compose/node_modules/@wordpress/keycodes": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.2.0.tgz", - "integrity": "sha512-FJMR+KLfltcfmd0GhpI2C+zohFaGwPwZTYx9e0+cnIDJ5c5Jw1KTToZ+gkWPoSi++U/dlqkxkKYLD4AnGg7L5Q==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.3.0.tgz", + "integrity": "sha512-o+L110/Y9ufS2eWVG1gXFs6+jPsMNVZoGJCt4PLjMmVabke0iaYstFppUdtQiOEDbnnhX9MH3RRtqp2AoSnaRQ==", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/i18n": "^5.2.0" + "@wordpress/i18n": "^5.3.0" }, "engines": { "node": ">=18.12.0", @@ -5641,9 +5641,9 @@ } }, "node_modules/@wordpress/compose/node_modules/@wordpress/priority-queue": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.2.0.tgz", - "integrity": "sha512-Kz/Zv+/TzgsKi5M3/iE2w4sMSi0f2Q3KnmU6taS5bEiiKRHvuC1U629YBsXCvBfi+7QWe2L7J7OVcLRwdEzAkg==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.3.0.tgz", + "integrity": "sha512-H7dGei1mFqKlz7NLFOGGtVgaBsORRaXeXNwWLI5rE0pI3XfGYd+zxNrG5aBzHw4fPqsITsxecNSaacc9fjqgjQ==", "dependencies": { "@babel/runtime": "^7.16.0", "requestidlecallback": "^0.3.0" @@ -6038,12 +6038,12 @@ } }, "node_modules/@wordpress/i18n": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.2.0.tgz", - "integrity": "sha512-G8z3/o1gm158XHANzthMBLsInQ/iWBFFIUoThiOP8C+VtpVozVpmWpgdayldPoTYolhCdaW6dicNUfdX8fOBTQ==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.3.0.tgz", + "integrity": "sha512-edHKkdZb6jNpbn+LUPu2wo1mKyhT819WJ7kI8hmMcHq82rNwwbMfcGoB3oSaphTphWfhlgxIxLczKOAbWDKudw==", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/hooks": "^4.2.0", + "@wordpress/hooks": "^4.3.0", "gettext-parser": "^1.3.1", "memize": "^2.1.0", "sprintf-js": "^1.1.1", @@ -6058,9 +6058,9 @@ } }, "node_modules/@wordpress/i18n/node_modules/@wordpress/hooks": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.2.0.tgz", - "integrity": "sha512-N2dRMIb3F6y2dXlcT6m2CH/jDi9/Fe0gaM6ev7DrvwJ8+kX1CRzwAydemmPw34EnhQKvYKQYgGqttrfzvzgKJw==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.3.0.tgz", + "integrity": "sha512-bpqwSXGyxPfhuxESKoAtL4ofB3CazzvcwcucTZ0g9Pat3KNuBaloSrPBliqqNOiSLWNH3nmpkaRmv4u89EdKAw==", "dependencies": { "@babel/runtime": "^7.16.0" }, @@ -6519,12 +6519,12 @@ } }, "node_modules/@wordpress/undo-manager": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.2.0.tgz", - "integrity": "sha512-xOjyl2hRro5I3pBuDYvrF+cLe0617KlPiuJok9YPofjUvfDvgf6gPLSBOAPj2GzYkiGASz0fnsPcE4UxS14ApQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.3.0.tgz", + "integrity": "sha512-1XvU3GKpWeKFLCRx/3yEttRbIszD38vfH53XmCq2Y6IbWiyJLUGCnq4kiZjOaxA0o/DcAa4edscPyqmJj+wE+g==", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/is-shallow-equal": "^5.2.0" + "@wordpress/is-shallow-equal": "^5.3.0" }, "engines": { "node": ">=18.12.0", @@ -6532,9 +6532,9 @@ } }, "node_modules/@wordpress/undo-manager/node_modules/@wordpress/is-shallow-equal": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.2.0.tgz", - "integrity": "sha512-WIsaAu+vDoAwnfGSWqyOMZiJeKXMXHNj6SzuESieASbL1VcbWgpg8FjDRjCNCEBgu7oe2VQrDOpDfajI1fgVvw==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.3.0.tgz", + "integrity": "sha512-sZ+fypqjYX0/DTAKsm1G9ND9Wn4d3Ju4lI7SLSmCKdUL5EPY3g/2LpKQKDqljh9m6Ex5NWp2XfU8UVXpkEfbMQ==", "dependencies": { "@babel/runtime": "^7.16.0" }, diff --git a/package.json b/package.json index 644689066..1c85352ed 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "@newfold-labs/wp-module-runtime": "^1.0.10", "@newfold/ui-component-library": "^1.1.0", "@reduxjs/toolkit": "^2.2.6", - "@wordpress/compose": "^7.2.0", + "@wordpress/compose": "^7.3.0", "@wordpress/dom-ready": "^4.2.0", "@wordpress/element": "^6.3.0", "@wordpress/html-entities": "^4.2.0", From 9f69fbbde10d667a791f7956d0d7df7e8f735946 Mon Sep 17 00:00:00 2001 From: wpalani Date: Wed, 17 Jul 2024 15:21:39 -0700 Subject: [PATCH 49/57] Fix conflict --- composer.lock | 91 +++++++++++++++++++++++++++------------------------ 1 file changed, 49 insertions(+), 42 deletions(-) diff --git a/composer.lock b/composer.lock index 5c6d4e364..b9bbc9a73 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": "a9b9bfe385eaa9ba65e09dc6783c8511", + "content-hash": "88a35e219f351b0b0bcdce1cd743c30a", "packages": [ { "name": "doctrine/inflector", @@ -504,16 +504,16 @@ }, { "name": "newfold-labs/wp-module-data", - "version": "2.5.3", + "version": "2.6.0", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-data.git", - "reference": "6c0941bc9ac3d18820f924de8c4afe58bb421782" + "reference": "6af57da8765a4db2d89e7ee737726f797945de0b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-data/zipball/6c0941bc9ac3d18820f924de8c4afe58bb421782", - "reference": "6c0941bc9ac3d18820f924de8c4afe58bb421782", + "url": "https://api.github.com/repos/newfold-labs/wp-module-data/zipball/6af57da8765a4db2d89e7ee737726f797945de0b", + "reference": "6af57da8765a4db2d89e7ee737726f797945de0b", "shasum": "" }, "require": { @@ -532,6 +532,7 @@ "kporras07/composer-symlinks": "^1.2", "lucatume/wp-browser": "^3", "newfold-labs/wp-php-standards": "^1.2", + "phpunit/phpcov": "^5.0", "wpackagist-plugin/woocommerce": "*" }, "type": "library", @@ -572,6 +573,16 @@ "create-symlinks": [ "Kporras07\\ComposerSymlinks\\ScriptHandler::createSymlinks" ], + "test": [ + "phpunit --bootstrap tests/phpunit/bootstrap.php", + "codecept run wpunit" + ], + "test-coverage": [ + "phpunit --bootstrap tests/phpunit/bootstrap.php --coverage-php tests/_output/unit.cov --coverage-text", + "codecept run wpunit --coverage wpunit.cov", + "phpcov merge --php tests/_output/merged.cov --html tests/_output/html tests/_output;", + "echo \"open tests/_output/html/index.html\" to view the report" + ], "post-install-cmd": [ "@create-symlinks" ], @@ -584,10 +595,10 @@ ], "description": "Newfold Data Module", "support": { - "source": "https://github.com/newfold-labs/wp-module-data/tree/2.5.3", + "source": "https://github.com/newfold-labs/wp-module-data/tree/2.6.0", "issues": "https://github.com/newfold-labs/wp-module-data/issues" }, - "time": "2024-06-19T17:34:08+00:00" + "time": "2024-07-16T23:30:45+00:00" }, { "name": "newfold-labs/wp-module-deactivation", @@ -1190,16 +1201,16 @@ }, { "name": "newfold-labs/wp-module-onboarding", - "version": "2.3.5", + "version": "2.3.6", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding.git", - "reference": "50ace2a0dbfed48ebf8b8409b80736d5d48d9159" + "reference": "3622c6692aaba32b3375a453877133bbab69c7b9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/50ace2a0dbfed48ebf8b8409b80736d5d48d9159", - "reference": "50ace2a0dbfed48ebf8b8409b80736d5d48d9159", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/3622c6692aaba32b3375a453877133bbab69c7b9", + "reference": "3622c6692aaba32b3375a453877133bbab69c7b9", "shasum": "" }, "require": { @@ -1207,7 +1218,7 @@ "newfold-labs/wp-module-facebook": "^1.0", "newfold-labs/wp-module-migration": "^1.0", "newfold-labs/wp-module-onboarding-data": "^1.1", - "newfold-labs/wp-module-patterns": "^1.0", + "newfold-labs/wp-module-patterns": "^2.0", "wp-cli/wp-config-transformer": "^1.3", "wp-forge/helpers": "^2.0" }, @@ -1245,23 +1256,23 @@ ], "description": "Next-generation WordPress Onboarding for WordPress sites at Newfold Digital.", "support": { - "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.3.5", + "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.3.6", "issues": "https://github.com/newfold-labs/wp-module-onboarding/issues" }, - "time": "2024-06-27T14:10:10+00:00" + "time": "2024-07-16T13:35:24+00:00" }, { "name": "newfold-labs/wp-module-onboarding-data", - "version": "1.1.13", + "version": "1.1.14", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding-data.git", - "reference": "dd6784cd136ac687a373e27f2f51999d93e97788" + "reference": "0b57747f6a67d8a9308b26c0434d196d023925d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding-data/zipball/dd6784cd136ac687a373e27f2f51999d93e97788", - "reference": "dd6784cd136ac687a373e27f2f51999d93e97788", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding-data/zipball/0b57747f6a67d8a9308b26c0434d196d023925d0", + "reference": "0b57747f6a67d8a9308b26c0434d196d023925d0", "shasum": "" }, "require": { @@ -1271,7 +1282,7 @@ "newfold-labs/wp-module-data": "^2.0", "newfold-labs/wp-module-install-checker": "^1.0", "newfold-labs/wp-module-installer": "^1.1", - "newfold-labs/wp-module-patterns": "^1.0", + "newfold-labs/wp-module-patterns": "^2.0", "newfold-labs/wp-module-performance": "^1.4", "newfold-labs/wp-module-survey": "^1.0", "wp-forge/wp-upgrade-handler": "^1.0" @@ -1297,23 +1308,23 @@ ], "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.13", + "source": "https://github.com/newfold-labs/wp-module-onboarding-data/tree/1.1.14", "issues": "https://github.com/newfold-labs/wp-module-onboarding-data/issues" }, - "time": "2024-06-27T13:27:53+00:00" + "time": "2024-07-16T04:54:52+00:00" }, { "name": "newfold-labs/wp-module-patterns", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-patterns.git", - "reference": "89c05ae08ebffe28521c876eb839a7bc9b60d02a" + "reference": "383fccab930655790d149e17987ef450265b5c3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-patterns/zipball/89c05ae08ebffe28521c876eb839a7bc9b60d02a", - "reference": "89c05ae08ebffe28521c876eb839a7bc9b60d02a", + "url": "https://api.github.com/repos/newfold-labs/wp-module-patterns/zipball/383fccab930655790d149e17987ef450265b5c3b", + "reference": "383fccab930655790d149e17987ef450265b5c3b", "shasum": "" }, "require": { @@ -1351,10 +1362,10 @@ ], "description": "WordPress Cloud Patterns", "support": { - "source": "https://github.com/newfold-labs/wp-module-patterns/tree/2.0.0", + "source": "https://github.com/newfold-labs/wp-module-patterns/tree/2.1.0", "issues": "https://github.com/newfold-labs/wp-module-patterns/issues" }, - "time": "2024-05-29T16:10:58+00:00" + "time": "2024-06-26T15:45:31+00:00" }, { "name": "newfold-labs/wp-module-performance", @@ -2807,12 +2818,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "c31e886d98723c528ab99e920e7903ccb7391bd0" + "reference": "8a515648fece51efcf2e3f79330e0cbcb7c09645" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/c31e886d98723c528ab99e920e7903ccb7391bd0", - "reference": "c31e886d98723c528ab99e920e7903ccb7391bd0", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/8a515648fece51efcf2e3f79330e0cbcb7c09645", + "reference": "8a515648fece51efcf2e3f79330e0cbcb7c09645", "shasum": "" }, "conflict": { @@ -3141,7 +3152,7 @@ "magento/core": "<=1.9.4.5", "magento/magento1ce": "<1.9.4.3-dev", "magento/magento1ee": ">=1,<1.14.4.3-dev", - "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2.0-patch2", + "magento/product-community-edition": "<2.4.4.0-patch9|>=2.4.5,<2.4.5.0-patch8|>=2.4.6,<2.4.6.0-patch6|>=2.4.7,<2.4.7.0-patch1", "magneto/core": "<1.9.4.4-dev", "maikuolan/phpmussel": ">=1,<1.6", "mainwp/mainwp": "<=4.4.3.3", @@ -3338,11 +3349,12 @@ "silverstripe/cms": "<4.11.3", "silverstripe/comments": ">=1.3,<3.1.1", "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3", - "silverstripe/framework": "<4.13.39|>=5,<5.1.11", + "silverstripe/framework": "<5.2.16", "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.8.2|>=4,<4.3.7|>=5,<5.1.3", "silverstripe/hybridsessions": ">=1,<2.4.1|>=2.5,<2.5.1", "silverstripe/recipe-cms": ">=4.5,<4.5.3", "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1", + "silverstripe/reports": "<5.2.3", "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4|>=2.1,<2.1.2", "silverstripe/silverstripe-omnipay": "<2.5.2|>=3,<3.0.2|>=3.1,<3.1.4|>=3.2,<3.2.1", "silverstripe/subsites": ">=2,<2.6.1", @@ -3391,7 +3403,7 @@ "sylius/grid-bundle": "<1.10.1", "sylius/paypal-plugin": ">=1,<1.2.4|>=1.3,<1.3.1", "sylius/resource-bundle": ">=1,<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4", - "sylius/sylius": "<1.9.10|>=1.10,<1.10.11|>=1.11,<1.11.2|>=1.12.0.0-alpha1,<1.12.16|>=1.13.0.0-alpha1,<1.13.1", + "sylius/sylius": "<1.12.19|>=1.13.0.0-alpha1,<1.13.4", "symbiote/silverstripe-multivaluefield": ">=3,<3.1", "symbiote/silverstripe-queuedjobs": ">=3,<3.0.2|>=3.1,<3.1.4|>=4,<4.0.7|>=4.1,<4.1.2|>=4.2,<4.2.4|>=4.3,<4.3.3|>=4.4,<4.4.3|>=4.5,<4.5.1|>=4.6,<4.6.4", "symbiote/silverstripe-seed": "<6.0.3", @@ -3450,7 +3462,7 @@ "topthink/framework": "<6.0.17|>=6.1,<6.1.5|>=8,<8.0.4", "topthink/think": "<=6.1.1", "topthink/thinkphp": "<=3.2.3", - "torrentpier/torrentpier": "<=2.4.1", + "torrentpier/torrentpier": "<=2.4.3", "tpwd/ke_search": "<4.0.3|>=4.1,<4.6.6|>=5,<5.0.2", "tribalsystems/zenario": "<9.5.60602", "truckersmp/phpwhois": "<=4.3.1", @@ -3492,7 +3504,8 @@ "wallabag/tcpdf": "<6.2.22", "wallabag/wallabag": "<2.6.7", "wanglelecc/laracms": "<=1.0.3", - "web-auth/webauthn-framework": ">=3.3,<3.3.4", + "web-auth/webauthn-framework": ">=3.3,<3.3.4|>=4.5,<4.9", + "web-auth/webauthn-lib": ">=4.5,<4.9", "web-feet/coastercms": "==5.5", "webbuilders-group/silverstripe-kapost-bridge": "<0.4", "webcoast/deferred-image-processing": "<1.0.2", @@ -3608,7 +3621,7 @@ "type": "tidelift" } ], - "time": "2024-07-11T20:05:10+00:00" + "time": "2024-07-17T15:06:03+00:00" }, { "name": "squizlabs/php_codesniffer", @@ -4269,12 +4282,6 @@ } ], "aliases": [ - { - "package": "newfold-labs/wp-module-patterns", - "version": "2.0.0.0", - "alias": "1.9.9", - "alias_normalized": "1.9.9.0" - }, { "package": "newfold-labs/wp-module-performance", "version": "2.0.0.0", From 299f70591a2081ff3bada592b0451fc5fffa2df0 Mon Sep 17 00:00:00 2001 From: wpalani Date: Wed, 17 Jul 2024 17:33:54 -0700 Subject: [PATCH 50/57] Update version to 3.13.2 --- bluehost-wordpress-plugin.php | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bluehost-wordpress-plugin.php b/bluehost-wordpress-plugin.php index d59e57e3e..0c1c74189 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.13.1 + * Version: 3.13.2 * Requires at least: 6.0 * Requires PHP: 7.1 * Tested up to: 6.6 @@ -32,7 +32,7 @@ } // Define constants -define( 'BLUEHOST_PLUGIN_VERSION', '3.13.1' ); +define( 'BLUEHOST_PLUGIN_VERSION', '3.13.2' ); 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-lock.json b/package-lock.json index 5e3029470..64624c97c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bluehost-wordpress-plugin", - "version": "3.13.1", + "version": "3.13.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bluehost-wordpress-plugin", - "version": "3.13.1", + "version": "3.13.2", "license": "GPL-2.0-or-later", "dependencies": { "@heroicons/react": "^2.1.5", diff --git a/package.json b/package.json index cac530644..d1815db91 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bluehost-wordpress-plugin", - "version": "3.13.1", + "version": "3.13.2", "description": "WordPress plugin that integrates your WordPress site with the Bluehost control panel, including performance, security, and update features.", "author": { "name": "Bluehost", From 0a05789870cc08c495ebb488b581421d0c879a07 Mon Sep 17 00:00:00 2001 From: wpalani Date: Wed, 17 Jul 2024 17:56:55 -0700 Subject: [PATCH 51/57] Bump @wordpress/scripts to 27.9.0 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 64624c97c..4a1861d64 100644 --- a/package-lock.json +++ b/package-lock.json @@ -35,7 +35,7 @@ "@testing-library/cypress": "^10.0.2", "@wordpress/env": "^10.3.0", "@wordpress/eslint-plugin": "^20.0.0", - "@wordpress/scripts": "^27.4.0", + "@wordpress/scripts": "^27.9.0", "cypress": "^13.13.0", "cypress-axe": "^1.5.0", "eslint-import-resolver-alias": "^1.1.2", diff --git a/package.json b/package.json index d1815db91..d33177a4a 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,7 @@ "@testing-library/cypress": "^10.0.2", "@wordpress/env": "^10.3.0", "@wordpress/eslint-plugin": "^20.0.0", - "@wordpress/scripts": "^27.4.0", + "@wordpress/scripts": "^27.9.0", "cypress": "^13.13.0", "cypress-axe": "^1.5.0", "eslint-import-resolver-alias": "^1.1.2", From e58cf6119884ca8b33106d6ebc38ca5183ee2f1c Mon Sep 17 00:00:00 2001 From: Abhijit Bhatnagar Date: Thu, 18 Jul 2024 19:21:24 +0530 Subject: [PATCH 52/57] bump help center version to 2.01 --- composer.json | 2 +- composer.lock | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/composer.json b/composer.json index 214c3afb3..fec3d7480 100644 --- a/composer.json +++ b/composer.json @@ -82,7 +82,7 @@ "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.0.0", + "newfold-labs/wp-module-help-center": "^2.0.1", "newfold-labs/wp-module-loader": "^1.0.10", "newfold-labs/wp-module-marketplace": "^2.4.0", "newfold-labs/wp-module-migration": "^1.0.8", diff --git a/composer.lock b/composer.lock index b9bbc9a73..06376b4b8 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": "88a35e219f351b0b0bcdce1cd743c30a", + "content-hash": "0dea33950ac0f63bb828da1cf04e544a", "packages": [ { "name": "doctrine/inflector", @@ -871,16 +871,16 @@ }, { "name": "newfold-labs/wp-module-help-center", - "version": "2.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-help-center.git", - "reference": "da9d0d08d5067285c7d36d31b8db58434af2184e" + "reference": "9242f848c13b3f0ed17c30d452ea5807ce75fd4a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-help-center/zipball/da9d0d08d5067285c7d36d31b8db58434af2184e", - "reference": "da9d0d08d5067285c7d36d31b8db58434af2184e", + "url": "https://api.github.com/repos/newfold-labs/wp-module-help-center/zipball/9242f848c13b3f0ed17c30d452ea5807ce75fd4a", + "reference": "9242f848c13b3f0ed17c30d452ea5807ce75fd4a", "shasum": "" }, "require": { @@ -911,10 +911,10 @@ ], "description": "HelpCenter", "support": { - "source": "https://github.com/newfold-labs/wp-module-help-center/tree/2.0.0", + "source": "https://github.com/newfold-labs/wp-module-help-center/tree/2.0.1", "issues": "https://github.com/newfold-labs/wp-module-help-center/issues" }, - "time": "2024-05-29T14:37:29+00:00" + "time": "2024-07-18T13:12:42+00:00" }, { "name": "newfold-labs/wp-module-install-checker", @@ -2818,12 +2818,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "8a515648fece51efcf2e3f79330e0cbcb7c09645" + "reference": "80e489d7669e5f7a4c56ca250489a0450d3d3219" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/8a515648fece51efcf2e3f79330e0cbcb7c09645", - "reference": "8a515648fece51efcf2e3f79330e0cbcb7c09645", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/80e489d7669e5f7a4c56ca250489a0450d3d3219", + "reference": "80e489d7669e5f7a4c56ca250489a0450d3d3219", "shasum": "" }, "conflict": { @@ -3223,7 +3223,7 @@ "onelogin/php-saml": "<2.10.4", "oneup/uploader-bundle": ">=1,<1.9.3|>=2,<2.1.5", "open-web-analytics/open-web-analytics": "<1.7.4", - "opencart/opencart": "<=3.0.3.9|>=4", + "opencart/opencart": ">=0", "openid/php-openid": "<2.3", "openmage/magento-lts": "<20.5", "opensolutions/vimbadmin": "<=3.0.15", @@ -3621,7 +3621,7 @@ "type": "tidelift" } ], - "time": "2024-07-17T15:06:03+00:00" + "time": "2024-07-18T00:16:06+00:00" }, { "name": "squizlabs/php_codesniffer", From 4c2f504d1854dbaa821a1c55c13ad99455693050 Mon Sep 17 00:00:00 2001 From: arunshenoy99 Date: Thu, 18 Jul 2024 19:55:00 +0530 Subject: [PATCH 53/57] Update Onboarding to 2.3.7 --- composer.json | 2 +- composer.lock | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/composer.json b/composer.json index 214c3afb3..eba5f3f48 100644 --- a/composer.json +++ b/composer.json @@ -87,7 +87,7 @@ "newfold-labs/wp-module-marketplace": "^2.4.0", "newfold-labs/wp-module-migration": "^1.0.8", "newfold-labs/wp-module-notifications": "^1.4.0", - "newfold-labs/wp-module-onboarding": "^2.3.6", + "newfold-labs/wp-module-onboarding": "^2.3.7", "newfold-labs/wp-module-patterns": "^2.1.0", "newfold-labs/wp-module-performance": "2.0.0 as 1.9.9", "newfold-labs/wp-module-runtime": "^1.0.11", diff --git a/composer.lock b/composer.lock index b9bbc9a73..994359d7d 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": "88a35e219f351b0b0bcdce1cd743c30a", + "content-hash": "8865dde50d704065c5f829ba9379c1d7", "packages": [ { "name": "doctrine/inflector", @@ -1201,16 +1201,16 @@ }, { "name": "newfold-labs/wp-module-onboarding", - "version": "2.3.6", + "version": "2.3.7", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding.git", - "reference": "3622c6692aaba32b3375a453877133bbab69c7b9" + "reference": "947d6d9fa22251baefed084b7708d57a601345eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/3622c6692aaba32b3375a453877133bbab69c7b9", - "reference": "3622c6692aaba32b3375a453877133bbab69c7b9", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/947d6d9fa22251baefed084b7708d57a601345eb", + "reference": "947d6d9fa22251baefed084b7708d57a601345eb", "shasum": "" }, "require": { @@ -1218,7 +1218,7 @@ "newfold-labs/wp-module-facebook": "^1.0", "newfold-labs/wp-module-migration": "^1.0", "newfold-labs/wp-module-onboarding-data": "^1.1", - "newfold-labs/wp-module-patterns": "^2.0", + "newfold-labs/wp-module-patterns": "^2.1", "wp-cli/wp-config-transformer": "^1.3", "wp-forge/helpers": "^2.0" }, @@ -1256,10 +1256,10 @@ ], "description": "Next-generation WordPress Onboarding for WordPress sites at Newfold Digital.", "support": { - "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.3.6", + "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.3.7", "issues": "https://github.com/newfold-labs/wp-module-onboarding/issues" }, - "time": "2024-07-16T13:35:24+00:00" + "time": "2024-07-18T14:13:00+00:00" }, { "name": "newfold-labs/wp-module-onboarding-data", From f0cde2e9e75756afd171d42494cf951cc736805a Mon Sep 17 00:00:00 2001 From: wpalani Date: Thu, 18 Jul 2024 10:48:00 -0700 Subject: [PATCH 54/57] Bump sso module to 1.0.6 --- composer.json | 2 +- composer.lock | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index fec3d7480..9ba7a368a 100644 --- a/composer.json +++ b/composer.json @@ -92,7 +92,7 @@ "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-sso": "^1.0.6", "newfold-labs/wp-module-staging": "^2.1.0", "wp-forge/wp-update-handler": "^1.0.2", "wp-forge/wp-upgrade-handler": "^1.0" diff --git a/composer.lock b/composer.lock index 06376b4b8..83804fe5b 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": "0dea33950ac0f63bb828da1cf04e544a", + "content-hash": "dbd27212a9e1e066fcf6186b6a1e800e", "packages": [ { "name": "doctrine/inflector", @@ -1521,16 +1521,16 @@ }, { "name": "newfold-labs/wp-module-sso", - "version": "1.0.5", + "version": "1.0.6", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-sso.git", - "reference": "3281a2a73b6d74bcb01ab8cde01854ed064ba5a7" + "reference": "663e82e5e044f3394dfe6254c2da1e68fc648d9e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-sso/zipball/3281a2a73b6d74bcb01ab8cde01854ed064ba5a7", - "reference": "3281a2a73b6d74bcb01ab8cde01854ed064ba5a7", + "url": "https://api.github.com/repos/newfold-labs/wp-module-sso/zipball/663e82e5e044f3394dfe6254c2da1e68fc648d9e", + "reference": "663e82e5e044f3394dfe6254c2da1e68fc648d9e", "shasum": "" }, "require": { @@ -1559,10 +1559,10 @@ ], "description": "Single sign-on functionality for Newfold WordPress sites.", "support": { - "source": "https://github.com/newfold-labs/wp-module-sso/tree/1.0.5", + "source": "https://github.com/newfold-labs/wp-module-sso/tree/1.0.6", "issues": "https://github.com/newfold-labs/wp-module-sso/issues" }, - "time": "2024-04-18T19:11:14+00:00" + "time": "2024-07-18T16:12:05+00:00" }, { "name": "newfold-labs/wp-module-staging", From f86e669700cb6c76a5da6c84f7f6e513a17922f8 Mon Sep 17 00:00:00 2001 From: wpalani Date: Thu, 18 Jul 2024 11:41:43 -0700 Subject: [PATCH 55/57] Fix conflict --- composer.lock | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.lock b/composer.lock index 83804fe5b..a48a0c4e4 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": "dbd27212a9e1e066fcf6186b6a1e800e", + "content-hash": "411fa9fd85d1856c69ea67d46d9c6392", "packages": [ { "name": "doctrine/inflector", @@ -1201,16 +1201,16 @@ }, { "name": "newfold-labs/wp-module-onboarding", - "version": "2.3.6", + "version": "2.3.7", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-onboarding.git", - "reference": "3622c6692aaba32b3375a453877133bbab69c7b9" + "reference": "947d6d9fa22251baefed084b7708d57a601345eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/3622c6692aaba32b3375a453877133bbab69c7b9", - "reference": "3622c6692aaba32b3375a453877133bbab69c7b9", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/947d6d9fa22251baefed084b7708d57a601345eb", + "reference": "947d6d9fa22251baefed084b7708d57a601345eb", "shasum": "" }, "require": { @@ -1218,7 +1218,7 @@ "newfold-labs/wp-module-facebook": "^1.0", "newfold-labs/wp-module-migration": "^1.0", "newfold-labs/wp-module-onboarding-data": "^1.1", - "newfold-labs/wp-module-patterns": "^2.0", + "newfold-labs/wp-module-patterns": "^2.1", "wp-cli/wp-config-transformer": "^1.3", "wp-forge/helpers": "^2.0" }, @@ -1256,10 +1256,10 @@ ], "description": "Next-generation WordPress Onboarding for WordPress sites at Newfold Digital.", "support": { - "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.3.6", + "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/2.3.7", "issues": "https://github.com/newfold-labs/wp-module-onboarding/issues" }, - "time": "2024-07-16T13:35:24+00:00" + "time": "2024-07-18T14:13:00+00:00" }, { "name": "newfold-labs/wp-module-onboarding-data", From 399197045a6264fd521fd32406fc2ad7ae479bdd Mon Sep 17 00:00:00 2001 From: wpalani Date: Thu, 18 Jul 2024 14:31:58 -0700 Subject: [PATCH 56/57] Downgrade data module to 2.5.3 --- composer.json | 2 +- composer.lock | 25 +++++++------------------ 2 files changed, 8 insertions(+), 19 deletions(-) diff --git a/composer.json b/composer.json index b08ebafd6..bba411beb 100644 --- a/composer.json +++ b/composer.json @@ -76,7 +76,7 @@ "newfold-labs/wp-module-atomic": "^1.3.0", "newfold-labs/wp-module-coming-soon": "^1.2.5", "newfold-labs/wp-module-context": "^1.0.1", - "newfold-labs/wp-module-data": "^2.5.3", + "newfold-labs/wp-module-data": "2.5.3", "newfold-labs/wp-module-deactivation": "^1.2.3", "newfold-labs/wp-module-ecommerce": "^1.3.37", "newfold-labs/wp-module-facebook": "^1.0.9", diff --git a/composer.lock b/composer.lock index a48a0c4e4..267fe0562 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": "411fa9fd85d1856c69ea67d46d9c6392", + "content-hash": "7a05b7f385f2acf976869e7d012f455b", "packages": [ { "name": "doctrine/inflector", @@ -504,16 +504,16 @@ }, { "name": "newfold-labs/wp-module-data", - "version": "2.6.0", + "version": "2.5.3", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-data.git", - "reference": "6af57da8765a4db2d89e7ee737726f797945de0b" + "reference": "6c0941bc9ac3d18820f924de8c4afe58bb421782" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-data/zipball/6af57da8765a4db2d89e7ee737726f797945de0b", - "reference": "6af57da8765a4db2d89e7ee737726f797945de0b", + "url": "https://api.github.com/repos/newfold-labs/wp-module-data/zipball/6c0941bc9ac3d18820f924de8c4afe58bb421782", + "reference": "6c0941bc9ac3d18820f924de8c4afe58bb421782", "shasum": "" }, "require": { @@ -532,7 +532,6 @@ "kporras07/composer-symlinks": "^1.2", "lucatume/wp-browser": "^3", "newfold-labs/wp-php-standards": "^1.2", - "phpunit/phpcov": "^5.0", "wpackagist-plugin/woocommerce": "*" }, "type": "library", @@ -573,16 +572,6 @@ "create-symlinks": [ "Kporras07\\ComposerSymlinks\\ScriptHandler::createSymlinks" ], - "test": [ - "phpunit --bootstrap tests/phpunit/bootstrap.php", - "codecept run wpunit" - ], - "test-coverage": [ - "phpunit --bootstrap tests/phpunit/bootstrap.php --coverage-php tests/_output/unit.cov --coverage-text", - "codecept run wpunit --coverage wpunit.cov", - "phpcov merge --php tests/_output/merged.cov --html tests/_output/html tests/_output;", - "echo \"open tests/_output/html/index.html\" to view the report" - ], "post-install-cmd": [ "@create-symlinks" ], @@ -595,10 +584,10 @@ ], "description": "Newfold Data Module", "support": { - "source": "https://github.com/newfold-labs/wp-module-data/tree/2.6.0", + "source": "https://github.com/newfold-labs/wp-module-data/tree/2.5.3", "issues": "https://github.com/newfold-labs/wp-module-data/issues" }, - "time": "2024-07-16T23:30:45+00:00" + "time": "2024-06-19T17:34:08+00:00" }, { "name": "newfold-labs/wp-module-deactivation", From b5ccfe3e6dd5688613e725e9bdf7edaa11c391b5 Mon Sep 17 00:00:00 2001 From: wpalani Date: Thu, 18 Jul 2024 14:36:53 -0700 Subject: [PATCH 57/57] Update version to 3.13.3 --- bluehost-wordpress-plugin.php | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bluehost-wordpress-plugin.php b/bluehost-wordpress-plugin.php index 0c1c74189..37142d49e 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.13.2 + * Version: 3.13.3 * Requires at least: 6.0 * Requires PHP: 7.1 * Tested up to: 6.6 @@ -32,7 +32,7 @@ } // Define constants -define( 'BLUEHOST_PLUGIN_VERSION', '3.13.2' ); +define( 'BLUEHOST_PLUGIN_VERSION', '3.13.3' ); 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-lock.json b/package-lock.json index 4a1861d64..dac2ca0b7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bluehost-wordpress-plugin", - "version": "3.13.2", + "version": "3.13.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bluehost-wordpress-plugin", - "version": "3.13.2", + "version": "3.13.3", "license": "GPL-2.0-or-later", "dependencies": { "@heroicons/react": "^2.1.5", diff --git a/package.json b/package.json index d33177a4a..72264214c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bluehost-wordpress-plugin", - "version": "3.13.2", + "version": "3.13.3", "description": "WordPress plugin that integrates your WordPress site with the Bluehost control panel, including performance, security, and update features.", "author": { "name": "Bluehost",