From 1d0577056f4d2512e47de63da5ef90f5f7b4a2ae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Dec 2024 16:23:35 +0000 Subject: [PATCH 01/15] Composer(deps): Bump newfold-labs/wp-module-coming-soon Bumps [newfold-labs/wp-module-coming-soon](https://github.com/newfold-labs/wp-module-coming-soon) from 1.3.1 to 1.3.2. - [Release notes](https://github.com/newfold-labs/wp-module-coming-soon/releases) - [Commits](https://github.com/newfold-labs/wp-module-coming-soon/compare/1.3.1...1.3.2) --- updated-dependencies: - dependency-name: newfold-labs/wp-module-coming-soon dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- composer.lock | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/composer.json b/composer.json index 2e5446e8..0f10f477 100644 --- a/composer.json +++ b/composer.json @@ -74,7 +74,7 @@ "doctrine/inflector": "1.4.4 as 1.3.1", "newfold-labs/wp-module-activation": "^1.0.5", "newfold-labs/wp-module-atomic": "^1.3", - "newfold-labs/wp-module-coming-soon": "^1.3.1", + "newfold-labs/wp-module-coming-soon": "^1.3.2", "newfold-labs/wp-module-context": "^1.0.1", "newfold-labs/wp-module-data": "^2.6.7", "newfold-labs/wp-module-deactivation": "^1.2.3", diff --git a/composer.lock b/composer.lock index f212b3ee..ad186c90 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": "8eb51bdbbcf7b809589a6f3a08aeafb3", + "content-hash": "e7d37c440a9170034088392e15d80bf4", "packages": [ { "name": "doctrine/inflector", @@ -722,20 +722,20 @@ }, { "name": "newfold-labs/wp-module-coming-soon", - "version": "1.3.1", + "version": "1.3.2", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-coming-soon.git", - "reference": "e84e21cfe97179a6dcc007186a903226bfbb1570" + "reference": "c1485a16b23fdf7b1fca52820c2fa686f2a6e30c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-coming-soon/zipball/e84e21cfe97179a6dcc007186a903226bfbb1570", - "reference": "e84e21cfe97179a6dcc007186a903226bfbb1570", + "url": "https://api.github.com/repos/newfold-labs/wp-module-coming-soon/zipball/c1485a16b23fdf7b1fca52820c2fa686f2a6e30c", + "reference": "c1485a16b23fdf7b1fca52820c2fa686f2a6e30c", "shasum": "" }, "require": { - "newfold-labs/wp-module-data": ">=2.6.2", + "newfold-labs/wp-module-data": "^2.6.7", "wp-forge/wp-upgrade-handler": "^1.0" }, "require-dev": { @@ -769,10 +769,10 @@ ], "description": "Coming Soon module for WordPress sites.", "support": { - "source": "https://github.com/newfold-labs/wp-module-coming-soon/tree/1.3.1", + "source": "https://github.com/newfold-labs/wp-module-coming-soon/tree/1.3.2", "issues": "https://github.com/newfold-labs/wp-module-coming-soon/issues" }, - "time": "2024-11-24T06:34:39+00:00" + "time": "2024-12-03T23:45:51+00:00" }, { "name": "newfold-labs/wp-module-context", @@ -4136,11 +4136,11 @@ } ], "minimum-stability": "stable", - "stability-flags": {}, + "stability-flags": [], "prefer-stable": false, "prefer-lowest": false, - "platform": {}, - "platform-dev": {}, + "platform": [], + "platform-dev": [], "platform-overrides": { "php": "7.3.0" }, From c00c6414fec0399965b591e8930294a901bd61d3 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Thu, 5 Dec 2024 12:58:08 -0500 Subject: [PATCH 02/15] exclude tests based on specific dependency - woo, jetpack, wonder --- cypress.config.js | 62 +++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 52 insertions(+), 10 deletions(-) diff --git a/cypress.config.js b/cypress.config.js index 78c528af..4b801e95 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -31,8 +31,6 @@ module.exports = defineConfig({ // You may want to clean this up later by importing these. setupNodeEvents(on, config) { - const semver = require('semver'); - // Ensure that the base URL is always properly set. if (config.env && config.env.baseUrl) { config.baseUrl = config.env.baseUrl; @@ -56,17 +54,27 @@ module.exports = defineConfig({ } } - // Exclude tests for WordPress lower than 6.5 (6.4 or 6.3) or PHP lower than 7.4 (7.1, 7.2 and 7.3) - if ( - semver.satisfies( config.env.wpSemverVersion, '<6.5.0' ) || - semver.satisfies( config.env.phpSemverVersion, '<7.4.0' ) - ) { + // Tests require Wondor Theme, exclude if not supported due to WP or PHP versions + if ( ! supportsWonderTheme( config.env ) ) { + config.excludeSpecPattern = config.excludeSpecPattern.concat( [ + 'vendor/newfold-labs/wp-module-onboarding/tests/cypress/integration/**', // Onboarding requires Wonder Theme + 'vendor/newfold-labs/wp-module-ecommerce/tests/cypress/integration/Home/ecommerce-next-steps.cy.js', // Requires Onboarding + ] ); + } + + // Tests requires Woo, so exclude if not supported due to WP or PHP versions + if ( ! supportsWoo( config.env ) ) { config.excludeSpecPattern = config.excludeSpecPattern.concat( [ 'vendor/newfold-labs/wp-module-ecommerce/tests/cypress/integration/Site-Capabilities/**', 'vendor/newfold-labs/wp-module-ecommerce/tests/cypress/integration/Home/homePageWithWoo.cy.js', - 'vendor/newfold-labs/wp-module-ecommerce/tests/cypress/integration/Home/ecommerce-next-steps.cy.js', // Skip this since Onboarding does not support this version - 'vendor/newfold-labs/wp-module-onboarding/tests/cypress/integration/**', // Onboarding requires WP 6.5 or greater, as it uses the Wonder Theme which has the same requirement - 'vendor/newfold-labs/wp-module-coming-soon/tests/cypress/integration/coming-soon-woo.cy.js', // woo is required and is not supported in older WP or PHP + 'vendor/newfold-labs/wp-module-coming-soon/tests/cypress/integration/coming-soon-woo.cy.js', + ] ); + } + + // Test requires Jetpack, so exclude if not supported due to WP or PHP versions + if ( ! supportsJetpack( config.env ) ) { + config.excludeSpecPattern = config.excludeSpecPattern.concat( [ + 'vendor/newfold-labs/wp-module-solutions/tests/cypress/integration/wp-plugins-installation-check.cy.js', ] ); } @@ -88,3 +96,37 @@ module.exports = defineConfig({ retries: 1, experimentalMemoryManagement: true, }) + +// Check against plugin support at https://wordpress.org/plugins/woocommerce/ +const supportsWoo = ( env ) => { + const semver = require( 'semver' ); + if ( + semver.satisfies( env.wpSemverVersion, '>=6.5.0' ) && + semver.satisfies( env.phpSemverVersion, '>=7.4.0' ) + ) { + return true; + } + return false; +}; +// Check against plugin support at https://wordpress.org/plugins/jetpack/ +const supportsJetpack = ( env ) => { + const semver = require( 'semver' ); + if ( + semver.satisfies( env.wpSemverVersion, '>=6.6.0' ) && + semver.satisfies( env.phpSemverVersion, '>=7.2.0' ) + ) { + return true; + } + return false; +}; +// Check against theme support at https://github.com/newfold-labs/yith-wonder/blob/master/style.css +const supportsWonderTheme = ( env ) => { + const semver = require( 'semver' ); + if ( + semver.satisfies( env.wpSemverVersion, '>=6.5.0' ) && + semver.satisfies( env.phpSemverVersion, '>=7.0.0' ) + ) { + return true; + } + return false; +}; From 8faa97185e9a2eb4ce7d5d6ec4ab2490ea97fa97 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Thu, 5 Dec 2024 15:25:34 -0500 Subject: [PATCH 03/15] add version bump script and command --- package.json | 1 + set-version-bump.js | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 set-version-bump.js diff --git a/package.json b/package.json index 41e64e44..96c5c2fd 100644 --- a/package.json +++ b/package.json @@ -71,6 +71,7 @@ "php-deps": "composer install --no-dev --optimize-autoloader", "postprepare": "npm run set-wp-version", "prebuild:cleanup": "rm -rf ./build ./wp-plugin-hostgator ./wp-plugin-hostgator.zip ./vendor", + "set-version-bump": "node ./set-version-bump.js && npm i && rm -rf ./build && npm run build && composer run i18n", "set-wp-version": "node ./set-latest-wp-version.js", "srb": "npm run simulate-runner-build", "simulate-runner-build": "npm run prebuild:cleanup && npm i && npm run php-deps && npm run build && npm run create:dist && npm run create:zip", diff --git a/set-version-bump.js b/set-version-bump.js new file mode 100644 index 00000000..9d2e8131 --- /dev/null +++ b/set-version-bump.js @@ -0,0 +1,32 @@ +const fs = require( 'fs' ); +const semver = require( 'semver' ); +const packagefile = './package.json'; +const pluginfile = './wp-plugin-hostgator.php'; + +if ( fs.existsSync( packagefile ) && fs.existsSync( pluginfile ) ) { + const packageData = require( packagefile ); + const currentVersion = packageData.version; + let type = process.argv[ 2 ]; + if ( ! [ 'major', 'minor', 'patch' ].includes( type ) ) { + type = 'patch'; + } + + const newVersion = semver.inc( packageData.version, type ); + packageData.version = newVersion; + fs.writeFileSync( packagefile, JSON.stringify( packageData, null, 4 ) ); + + fs.readFile( pluginfile, 'utf8', function ( err, data ) { + if ( err ) { + return console.log( err ); + } + const result = data.replaceAll( currentVersion, newVersion ); + + fs.writeFile( pluginfile, result, 'utf8', function ( err ) { + if ( err ) { + return console.log( err ); + } + } ); + } ); + + console.log( 'Version updated', currentVersion, '=>', newVersion ); +} From c379f8cb6436c0970d12a0cc43ae717d6491552e Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Thu, 5 Dec 2024 16:02:24 -0500 Subject: [PATCH 04/15] auto retry workflow step when wp install fails --- .github/workflows/cypress-matrix.yml | 6 +++++- .github/workflows/cypress-tests.yml | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cypress-matrix.yml b/.github/workflows/cypress-matrix.yml index 8f8c3d62..eb9c386c 100644 --- a/.github/workflows/cypress-matrix.yml +++ b/.github/workflows/cypress-matrix.yml @@ -110,7 +110,11 @@ jobs: echo '{"wpVersion": "${{ matrix.wpVersion }}","phpVersion": "${{ matrix.phpVersion }}"}' > cypress.env.json - name: Install WordPress - run: npx wp-env start --debug + uses: nick-fields/retry@v3 + with: + timeout_minutes: 4 + max_attempts: 3 + command: npx wp-env start --debug - name: Run Cypress Tests if: ${{ github.repository != 'newfold-labs/wp-plugin-hostgator' || github.actor == 'dependabot[bot]' }} diff --git a/.github/workflows/cypress-tests.yml b/.github/workflows/cypress-tests.yml index ea117088..d5c5e190 100644 --- a/.github/workflows/cypress-tests.yml +++ b/.github/workflows/cypress-tests.yml @@ -109,7 +109,11 @@ jobs: run: echo '{"config":{"WP_DEBUG_DISPLAY":false},"plugins":["${{ steps.workflow.outputs.DIST }}/${{ steps.workflow.outputs.PACKAGE }}"]}' > .wp-env.override.json - name: Install WordPress - run: npx wp-env start --debug + uses: nick-fields/retry@v3 + with: + timeout_minutes: 4 + max_attempts: 3 + command: npx wp-env start --debug - name: Run Cypress Tests if: ${{ github.repository != 'newfold-labs/wp-plugin-hostgator' || github.actor == 'dependabot[bot]' }} From f350a799f5cdf84cb01fb30906cdc43acaf63fe0 Mon Sep 17 00:00:00 2001 From: Abhijit Bhatnagar Date: Fri, 6 Dec 2024 18:38:07 +0530 Subject: [PATCH 05/15] updated latam region.js --- src/app/data/region.js | 70 +++++++++++++++++++++--------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/src/app/data/region.js b/src/app/data/region.js index 551ca9a8..4e05357f 100644 --- a/src/app/data/region.js +++ b/src/app/data/region.js @@ -39,42 +39,42 @@ const region = { }, site_info_portal: { // site info portal link in plugin info section - big button with snappy icon. default: 'https://www.hostgator.com/my-account/login', - AR: 'https://billing.hostgator.ar', - BO: 'https://billing.hostgator.bo', + AR: 'https://cliente.hostgator.ar', + BO: 'https://cliente.hostgator.bo', BR: 'https://financeiro.hostgator.com.br', - CL: 'https://billing.hostgator.cl', - CO: 'https://billing.hostgator.co', - DO: 'https://billing.hostgator.do', - EC: 'https://billing.hostgator.net.ec', - MX: 'https://billing.hostgator.mx', - PE: 'https://billing.hostgator.pe', - UY: 'https://billing.hostgator.uy', + CL: 'https://cliente.hostgator.cl', + CO: 'https://cliente.hostgator.co', + DO: 'https://cliente.hostgator.do', + EC: 'https://cliente.hostgator.net.ec', + MX: 'https://cliente.hostgator.mx', + PE: 'https://cliente.hostgator.pe', + UY: 'https://cliente.hostgator.uy', }, home_manage_sites: { // Manage Sites button to manage sites within control panel. default: 'https://www.hostgator.com/my-account/hosting/details/sites', - AR: 'https://billing.hostgator.ar', - BO: 'https://billing.hostgator.bo', + AR: 'https://cliente.hostgator.ar/sitios-web', + BO: 'https://cliente.hostgator.bo/sitios-web', BR: 'https://cliente.hostgator.com.br', - CL: 'https://billing.hostgator.cl', - CO: 'https://billing.hostgator.co', - DO: 'https://billing.hostgator.do', - EC: 'https://billing.hostgator.net.ec', - MX: 'https://billing.hostgator.mx', - PE: 'https://billing.hostgator.pe', - UY: 'https://billing.hostgator.uy', + CL: 'https://cliente.hostgator.cl/sitios-web', + CO: 'https://cliente.hostgator.co/sitios-web', + DO: 'https://cliente.hostgator.do/sitios-web', + EC: 'https://cliente.hostgator.net.ec/sitios-web', + MX: 'https://cliente.hostgator.mx/sitios-web', + PE: 'https://cliente.hostgator.pe/sitios-web', + UY: 'https://cliente.hostgator.uy/sitios-web', }, home_manage_email: { // Manage email button to manage email in control panel. default: 'https://www.hostgator.com/my-account/google-workspace/google-workspace-list', - AR: 'https://cliente.hostgator.ar/emails-list', - BO: 'https://cliente.hostgator.bo/emails-list', + AR: 'https://cliente.hostgator.ar/e-mails', + BO: 'https://cliente.hostgator.bo/e-mails', BR: 'https://cliente.hostgator.com.br/emails-list', CL: 'https://cliente.hostgator.cl/emails-list', CO: 'https://cliente.hostgator.co/emails-list', - DO: 'https://cliente.hostgator.do/emails-list', - EC: 'https://cliente.hostgator.net.ec/emails-list', - MX: 'https://cliente.hostgator.mx/emails-list', - PE: 'https://cliente.hostgator.pe/emails-list', - UY: 'https://cliente.hostgator.uy/emails-list', + DO: 'https://cliente.hostgator.do/e-mails', + EC: 'https://cliente.hostgator.net.ec/e-mails', + MX: 'https://cliente.hostgator.mx/e-mails', + PE: 'https://cliente.hostgator.pe/e-mails', + UY: 'https://cliente.hostgator.uy/e-mails', }, home_find_domain: { // Manage Domain button to manage domains in control panel. default: 'https://www.hostgator.com/my-account/domain-center/domain-list', @@ -104,16 +104,16 @@ const region = { }, help_chat: { // Support live chat link. default: 'https://helpchat.hostgator.com', - AR: 'https://cliente.hostgator.ar', - BO: 'https://cliente.hostgator.bo', - BR: 'https://suporte.hostgator.com.br', - CL: 'https://cliente.hostgator.cl', - CO: 'https://cliente.hostgator.co', - DO: 'https://cliente.hostgator.do', - EC: 'https://cliente.hostgator.net.ec', - MX: 'https://cliente.hostgator.mx', - PE: 'https://cliente.hostgator.pe', - UY: 'https://cliente.hostgator.uy', + AR: 'https://soporte.hostgator.mx/hc/es-419/articles/28439167280915-C%C3%B3mo-entrar-en-contacto-con-Soporte', + BO: 'https://soporte.hostgator.mx/hc/es-419/articles/28439167280915-C%C3%B3mo-entrar-en-contacto-con-Soporte', + BR: 'https://soporte.hostgator.mx/hc/es-419/articles/28439167280915-C%C3%B3mo-entrar-en-contacto-con-Soporte', + CL: 'https://soporte.hostgator.mx/hc/es-419/articles/28439167280915-C%C3%B3mo-entrar-en-contacto-con-Soporte', + CO: 'https://soporte.hostgator.mx/hc/es-419/articles/28439167280915-C%C3%B3mo-entrar-en-contacto-con-Soporte', + DO: 'https://soporte.hostgator.mx/hc/es-419/articles/28439167280915-C%C3%B3mo-entrar-en-contacto-con-Soporte', + EC: 'https://soporte.hostgator.mx/hc/es-419/articles/28439167280915-C%C3%B3mo-entrar-en-contacto-con-Soporte', + MX: 'https://soporte.hostgator.mx/hc/es-419/articles/28439167280915-C%C3%B3mo-entrar-en-contacto-con-Soporte', + PE: 'https://soporte.hostgator.mx/hc/es-419/articles/28439167280915-C%C3%B3mo-entrar-en-contacto-con-Soporte', + UY: 'https://soporte.hostgator.mx/hc/es-419/articles/28439167280915-C%C3%B3mo-entrar-en-contacto-con-Soporte', }, help_twitter: { // Region-specific Twitter/X url for support. A string 'false' value will remove this section if it is not applicable to the region. default: 'https://twitter.com/hgsupport', From 03850d022e686e95365716dc293551154ad21df6 Mon Sep 17 00:00:00 2001 From: Abhijit Bhatnagar Date: Fri, 6 Dec 2024 19:06:26 +0530 Subject: [PATCH 06/15] updated cyress test to check for correct support url --- tests/cypress/integration/region.cy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cypress/integration/region.cy.js b/tests/cypress/integration/region.cy.js index df2f36c3..c210a6dc 100644 --- a/tests/cypress/integration/region.cy.js +++ b/tests/cypress/integration/region.cy.js @@ -62,7 +62,7 @@ describe('Regional Adjustments', { testIsolation: true }, () => { cy.get('.card-help-chat').should('exist').contains('.nfd-button', 'Chat ao Vivo'); cy.get('.card-help-chat .nfd-button').should('have.attr', 'href') .then(href => { - expect(href).to.contain('suporte.hostgator.com.br') + expect(href).to.contain('suporte.hostgator.mx') }); }); From 6e006376cf6918c85bb307ca65ad31f6bb3f8ddd Mon Sep 17 00:00:00 2001 From: Abhijit Bhatnagar Date: Fri, 6 Dec 2024 19:15:49 +0530 Subject: [PATCH 07/15] fix typo in the support url --- tests/cypress/integration/region.cy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cypress/integration/region.cy.js b/tests/cypress/integration/region.cy.js index c210a6dc..63ce2a05 100644 --- a/tests/cypress/integration/region.cy.js +++ b/tests/cypress/integration/region.cy.js @@ -62,7 +62,7 @@ describe('Regional Adjustments', { testIsolation: true }, () => { cy.get('.card-help-chat').should('exist').contains('.nfd-button', 'Chat ao Vivo'); cy.get('.card-help-chat .nfd-button').should('have.attr', 'href') .then(href => { - expect(href).to.contain('suporte.hostgator.mx') + expect(href).to.contain('soporte.hostgator.mx') }); }); From a92ff6d6c502f16d2d6415312e9130a63f9e1c59 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 12:25:49 +0000 Subject: [PATCH 08/15] Composer(deps): Bump newfold-labs/wp-module-data from 2.6.7 to 2.6.8 Bumps [newfold-labs/wp-module-data](https://github.com/newfold-labs/wp-module-data) from 2.6.7 to 2.6.8. - [Release notes](https://github.com/newfold-labs/wp-module-data/releases) - [Commits](https://github.com/newfold-labs/wp-module-data/compare/2.6.7...2.6.8) --- updated-dependencies: - dependency-name: newfold-labs/wp-module-data 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 0f10f477..570acc11 100644 --- a/composer.json +++ b/composer.json @@ -76,7 +76,7 @@ "newfold-labs/wp-module-atomic": "^1.3", "newfold-labs/wp-module-coming-soon": "^1.3.2", "newfold-labs/wp-module-context": "^1.0.1", - "newfold-labs/wp-module-data": "^2.6.7", + "newfold-labs/wp-module-data": "^2.6.8", "newfold-labs/wp-module-deactivation": "^1.2.3", "newfold-labs/wp-module-ecommerce": "^1.4.4", "newfold-labs/wp-module-features": "^1.4.2", diff --git a/composer.lock b/composer.lock index ad186c90..33ef4e9b 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": "e7d37c440a9170034088392e15d80bf4", + "content-hash": "f2ffcbc39cd52a5e3eaf565c4e4a848f", "packages": [ { "name": "doctrine/inflector", @@ -830,16 +830,16 @@ }, { "name": "newfold-labs/wp-module-data", - "version": "2.6.7", + "version": "2.6.8", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-data.git", - "reference": "4e06582959bbf8ebdfe053d7be27dc3e2dcba69a" + "reference": "ee5d861ed085e67fe102ffebae1cb46ed3ee0d49" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-data/zipball/4e06582959bbf8ebdfe053d7be27dc3e2dcba69a", - "reference": "4e06582959bbf8ebdfe053d7be27dc3e2dcba69a", + "url": "https://api.github.com/repos/newfold-labs/wp-module-data/zipball/ee5d861ed085e67fe102ffebae1cb46ed3ee0d49", + "reference": "ee5d861ed085e67fe102ffebae1cb46ed3ee0d49", "shasum": "" }, "require": { @@ -925,10 +925,10 @@ ], "description": "Newfold Data Module", "support": { - "source": "https://github.com/newfold-labs/wp-module-data/tree/2.6.7", + "source": "https://github.com/newfold-labs/wp-module-data/tree/2.6.8", "issues": "https://github.com/newfold-labs/wp-module-data/issues" }, - "time": "2024-11-19T20:09:13+00:00" + "time": "2024-12-06T21:56:08+00:00" }, { "name": "newfold-labs/wp-module-deactivation", From da05502bdb05cfbd35d21860663dcc7608f7f886 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 13:10:53 +0000 Subject: [PATCH 09/15] NPM Dev(deps-dev): Bump @wordpress/env from 10.12.0 to 10.14.0 Bumps [@wordpress/env](https://github.com/WordPress/gutenberg/tree/HEAD/packages/env) from 10.12.0 to 10.14.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.14.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 | 64 +++++++++++++++++++++++++++++++++++++++++++---- package.json | 2 +- 2 files changed, 60 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 36b964dd..f632c5d5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -32,7 +32,7 @@ "@automattic/babel-plugin-preserve-i18n": "^1.0.0", "@tailwindcss/forms": "^0.5.7", "@testing-library/cypress": "^10.0.2", - "@wordpress/env": "^10.12.0", + "@wordpress/env": "^10.14.0", "@wordpress/scripts": "^30.6.0", "cypress": "^13.16.0", "cypress-axe": "1.5.0", @@ -6019,10 +6019,11 @@ } }, "node_modules/@wordpress/env": { - "version": "10.12.0", - "resolved": "https://registry.npmjs.org/@wordpress/env/-/env-10.12.0.tgz", - "integrity": "sha512-+tsdVfngQYcysxdVonXRSwuJjqoqTSv7wwrcThCYXR1OBCMQ/xT2Ywfvf9a/yItJs5uicO9Vx8B5aIuvXiGVqg==", + "version": "10.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/env/-/env-10.14.0.tgz", + "integrity": "sha512-tDJyW6KaaEs9jz2XMTjY0RpGWdsjEfOCx5jeCMWtzkgrDY5N9iZr1BFjNzmFzY1BcXQshnFsrecsnYdyIfvsTA==", "dev": true, + "license": "GPL-2.0-or-later", "dependencies": { "chalk": "^4.0.0", "copy-dir": "^1.3.0", @@ -6032,7 +6033,7 @@ "inquirer": "^7.1.0", "js-yaml": "^3.13.1", "ora": "^4.0.2", - "rimraf": "^3.0.2", + "rimraf": "^5.0.10", "simple-git": "^3.5.0", "terminal-link": "^2.0.0", "yargs": "^17.3.0" @@ -6045,6 +6046,59 @@ "npm": ">=8.19.2" } }, + "node_modules/@wordpress/env/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@wordpress/env/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@wordpress/env/node_modules/rimraf": { + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/@wordpress/escape-html": { "version": "2.58.0", "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-2.58.0.tgz", diff --git a/package.json b/package.json index 41e64e44..4bd597e5 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "@automattic/babel-plugin-preserve-i18n": "^1.0.0", "@tailwindcss/forms": "^0.5.7", "@testing-library/cypress": "^10.0.2", - "@wordpress/env": "^10.12.0", + "@wordpress/env": "^10.14.0", "@wordpress/scripts": "^30.6.0", "cypress": "^13.16.0", "cypress-axe": "1.5.0", From d3dbb978d11050051c57e5d3f6878be9bb5d74fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 13:11:20 +0000 Subject: [PATCH 10/15] NPM(deps): Bump @wordpress/icons from 10.12.0 to 10.14.0 Bumps [@wordpress/icons](https://github.com/WordPress/gutenberg/tree/HEAD/packages/icons) from 10.12.0 to 10.14.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.14.0/packages/icons) --- updated-dependencies: - dependency-name: "@wordpress/icons" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 9 +++++---- package.json | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 36b964dd..e6647013 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18,7 +18,7 @@ "@wordpress/dom-ready": "^4.13.0", "@wordpress/element": "^6.13.0", "@wordpress/i18n": "^5.12.0", - "@wordpress/icons": "^10.12.0", + "@wordpress/icons": "^10.14.0", "ajv": "^8.17.1", "classnames": "^2.5.1", "jquery": "^3.7.1", @@ -6214,9 +6214,10 @@ } }, "node_modules/@wordpress/icons": { - "version": "10.12.0", - "resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-10.12.0.tgz", - "integrity": "sha512-d2D/XfDfrP1MPj4unfQ58DSgNas+PT/nuxw4R8RZpNL0XfarjZ/ff3VPJvsLhB+3ikXqnwJ4zFVs9pFewRkvHA==", + "version": "10.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-10.14.0.tgz", + "integrity": "sha512-4S1AaBeqvTpsTC23y0+4WPiSyz7j+b7vJ4vQ4nqnPeBF7ZeC8J/UXWQnEuKY38n8TiutXljgagkEqGNC9pF2Mw==", + "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "7.25.7", "@wordpress/element": "*", diff --git a/package.json b/package.json index 41e64e44..a5215a91 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "@wordpress/dom-ready": "^4.13.0", "@wordpress/element": "^6.13.0", "@wordpress/i18n": "^5.12.0", - "@wordpress/icons": "^10.12.0", + "@wordpress/icons": "^10.14.0", "ajv": "^8.17.1", "classnames": "^2.5.1", "jquery": "^3.7.1", From 20591a0ca0bc48a1f716059a1a92e316eba49fa2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 13:13:25 +0000 Subject: [PATCH 11/15] NPM(deps): Bump @wordpress/compose from 7.12.0 to 7.14.0 Bumps [@wordpress/compose](https://github.com/WordPress/gutenberg/tree/HEAD/packages/compose) from 7.12.0 to 7.14.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.14.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 | 9 +++++---- package.json | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 36b964dd..08e0a9a4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14,7 +14,7 @@ "@newfold-labs/wp-module-runtime": "^1.0.12", "@newfold/ui-component-library": "^1.1.0", "@reduxjs/toolkit": "^2.3.0", - "@wordpress/compose": "^7.12.0", + "@wordpress/compose": "^7.14.0", "@wordpress/dom-ready": "^4.13.0", "@wordpress/element": "^6.13.0", "@wordpress/i18n": "^5.12.0", @@ -5679,9 +5679,10 @@ } }, "node_modules/@wordpress/compose": { - "version": "7.12.0", - "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.12.0.tgz", - "integrity": "sha512-ffSN6eaghI33hSswGuYBq7T0/+Ffx9zM/qkgstYG5IjXuT7moP+GxagvzEkAfhZNJJo0Btk5PuIRMDcyCg5F8g==", + "version": "7.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.14.0.tgz", + "integrity": "sha512-V8llRKmEWfrHWdZVnZFeyM5VAB40MyjVxm+bCwgBO65Tv8yeVi+ZipQ+Nk5abIeQWp3G0BDYybG1gmVwuCik2g==", + "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "7.25.7", "@types/mousetrap": "^1.6.8", diff --git a/package.json b/package.json index 41e64e44..c3cd9c8f 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "@newfold-labs/wp-module-runtime": "^1.0.12", "@newfold/ui-component-library": "^1.1.0", "@reduxjs/toolkit": "^2.3.0", - "@wordpress/compose": "^7.12.0", + "@wordpress/compose": "^7.14.0", "@wordpress/dom-ready": "^4.13.0", "@wordpress/element": "^6.13.0", "@wordpress/i18n": "^5.12.0", From 6be1f33eacb395f15de77c80c871cf170ad5830a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 19:26:42 +0000 Subject: [PATCH 12/15] Composer(deps): Bump newfold-labs/wp-module-help-center Bumps [newfold-labs/wp-module-help-center](https://github.com/newfold-labs/wp-module-help-center) from 2.2.1 to 2.2.2. - [Release notes](https://github.com/newfold-labs/wp-module-help-center/releases) - [Commits](https://github.com/newfold-labs/wp-module-help-center/compare/2.2.1...2.2.2) --- updated-dependencies: - dependency-name: newfold-labs/wp-module-help-center dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- composer.lock | 38 +++++++++++++++++++------------------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/composer.json b/composer.json index 570acc11..89a49f6b 100644 --- a/composer.json +++ b/composer.json @@ -81,7 +81,7 @@ "newfold-labs/wp-module-ecommerce": "^1.4.4", "newfold-labs/wp-module-features": "^1.4.2", "newfold-labs/wp-module-global-ctb": "^1.0.13", - "newfold-labs/wp-module-help-center": "^2.2.1", + "newfold-labs/wp-module-help-center": "^2.2.2", "newfold-labs/wp-module-loader": "^1.0.10", "newfold-labs/wp-module-marketplace": "^2.4.0", "newfold-labs/wp-module-migration": "^1.0.12", diff --git a/composer.lock b/composer.lock index 33ef4e9b..29aa9eb7 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": "f2ffcbc39cd52a5e3eaf565c4e4a848f", + "content-hash": "faf06fb7406017b575ef170b72795c29", "packages": [ { "name": "doctrine/inflector", @@ -1201,16 +1201,16 @@ }, { "name": "newfold-labs/wp-module-help-center", - "version": "2.2.1", + "version": "2.2.2", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-help-center.git", - "reference": "b13d4e79a68002ac628152aae4c48c1191037120" + "reference": "9ea76efb6f7eb7eef0fa6d20469fdd39e3419022" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-help-center/zipball/b13d4e79a68002ac628152aae4c48c1191037120", - "reference": "b13d4e79a68002ac628152aae4c48c1191037120", + "url": "https://api.github.com/repos/newfold-labs/wp-module-help-center/zipball/9ea76efb6f7eb7eef0fa6d20469fdd39e3419022", + "reference": "9ea76efb6f7eb7eef0fa6d20469fdd39e3419022", "shasum": "" }, "require": { @@ -1242,10 +1242,10 @@ ], "description": "HelpCenter", "support": { - "source": "https://github.com/newfold-labs/wp-module-help-center/tree/2.2.1", + "source": "https://github.com/newfold-labs/wp-module-help-center/tree/2.2.2", "issues": "https://github.com/newfold-labs/wp-module-help-center/issues" }, - "time": "2024-11-13T13:27:22+00:00" + "time": "2024-12-05T14:17:46+00:00" }, { "name": "newfold-labs/wp-module-install-checker", @@ -1334,16 +1334,16 @@ }, { "name": "newfold-labs/wp-module-loader", - "version": "1.0.10", + "version": "1.0.11", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-loader.git", - "reference": "8ab6725a6b3bc9ed10b89127f09bcb3e81f795c6" + "reference": "bb470f8c57b0bca62548e65b210df0a13ddce767" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-loader/zipball/8ab6725a6b3bc9ed10b89127f09bcb3e81f795c6", - "reference": "8ab6725a6b3bc9ed10b89127f09bcb3e81f795c6", + "url": "https://api.github.com/repos/newfold-labs/wp-module-loader/zipball/bb470f8c57b0bca62548e65b210df0a13ddce767", + "reference": "bb470f8c57b0bca62548e65b210df0a13ddce767", "shasum": "" }, "require": { @@ -1373,10 +1373,10 @@ ], "description": "A module that handles registration and management of Newfold modules used within our WordPress plugins.", "support": { - "source": "https://github.com/newfold-labs/wp-module-loader/tree/1.0.10", + "source": "https://github.com/newfold-labs/wp-module-loader/tree/1.0.11", "issues": "https://github.com/newfold-labs/wp-module-loader/issues" }, - "time": "2022-10-03T20:07:41+00:00" + "time": "2024-12-11T18:25:14+00:00" }, { "name": "newfold-labs/wp-module-marketplace", @@ -2266,16 +2266,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v2.5.3", + "version": "v2.5.4", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "80d075412b557d41002320b96a096ca65aa2c98d" + "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d", - "reference": "80d075412b557d41002320b96a096ca65aa2c98d", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/605389f2a7e5625f273b53960dc46aeaf9c62918", + "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918", "shasum": "" }, "require": { @@ -2313,7 +2313,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3" + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.4" }, "funding": [ { @@ -2329,7 +2329,7 @@ "type": "tidelift" } ], - "time": "2023-01-24T14:02:46+00:00" + "time": "2024-09-25T14:11:13+00:00" }, { "name": "typesense/typesense-php", From 95e78973af9fa779412308101a11285e0468ba32 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 19:27:03 +0000 Subject: [PATCH 13/15] NPM(deps): Bump @wordpress/i18n from 5.12.0 to 5.14.0 Bumps [@wordpress/i18n](https://github.com/WordPress/gutenberg/tree/HEAD/packages/i18n) from 5.12.0 to 5.14.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.14.0/packages/i18n) --- updated-dependencies: - dependency-name: "@wordpress/i18n" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 9 +++++---- package.json | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 230ab908..ac80270a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "@wordpress/compose": "^7.14.0", "@wordpress/dom-ready": "^4.13.0", "@wordpress/element": "^6.13.0", - "@wordpress/i18n": "^5.12.0", + "@wordpress/i18n": "^5.14.0", "@wordpress/icons": "^10.14.0", "ajv": "^8.17.1", "classnames": "^2.5.1", @@ -6237,9 +6237,10 @@ } }, "node_modules/@wordpress/i18n": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.12.0.tgz", - "integrity": "sha512-+fAhdRqbTmzTUe46VVMfpFbDJCV1/prB7TccPvUCYf84kM5yLkMa2oqkEwniD7gB97HK1tH9bVD+jJDZL22l9A==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.14.0.tgz", + "integrity": "sha512-2KHyQ+zoyQggokmoTqfVhl2DOM4E11pF/M1+5Q0kUDAHLIAVDhKCzHNPZreHjJld4Tm7hl2HUOutfPmCVudj7g==", + "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "7.25.7", "@wordpress/hooks": "*", diff --git a/package.json b/package.json index 410aa0c9..a0d9c4d2 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "@wordpress/compose": "^7.14.0", "@wordpress/dom-ready": "^4.13.0", "@wordpress/element": "^6.13.0", - "@wordpress/i18n": "^5.12.0", + "@wordpress/i18n": "^5.14.0", "@wordpress/icons": "^10.14.0", "ajv": "^8.17.1", "classnames": "^2.5.1", From 420408c38e1e192d5f6227c3cde17f14bc41f86b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 19:27:15 +0000 Subject: [PATCH 14/15] NPM(deps): Bump @reduxjs/toolkit from 2.3.0 to 2.5.0 Bumps [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) from 2.3.0 to 2.5.0. - [Release notes](https://github.com/reduxjs/redux-toolkit/releases) - [Commits](https://github.com/reduxjs/redux-toolkit/compare/v2.3.0...v2.5.0) --- updated-dependencies: - dependency-name: "@reduxjs/toolkit" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 11 ++++++----- package.json | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 230ab908..03399f19 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,7 @@ "@newfold-labs/wp-module-ecommerce": "^1.4.4", "@newfold-labs/wp-module-runtime": "^1.0.12", "@newfold/ui-component-library": "^1.1.0", - "@reduxjs/toolkit": "^2.3.0", + "@reduxjs/toolkit": "^2.5.0", "@wordpress/compose": "^7.14.0", "@wordpress/dom-ready": "^4.13.0", "@wordpress/element": "^6.13.0", @@ -3776,9 +3776,10 @@ } }, "node_modules/@reduxjs/toolkit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.3.0.tgz", - "integrity": "sha512-WC7Yd6cNGfHx8zf+iu+Q1UPTfEcXhQ+ATi7CV1hlrSAaQBdlPzg7Ww/wJHNQem7qG9rxmWoFCDCPubSvFObGzA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.5.0.tgz", + "integrity": "sha512-awNe2oTodsZ6LmRqmkFhtb/KH03hUhxOamEQy411m3Njj3BbFvoBovxo4Q1cBWnV1ErprVj9MlF0UPXkng0eyg==", + "license": "MIT", "dependencies": { "immer": "^10.0.3", "redux": "^5.0.1", @@ -3786,7 +3787,7 @@ "reselect": "^5.1.0" }, "peerDependencies": { - "react": "^16.9.0 || ^17.0.0 || ^18", + "react": "^16.9.0 || ^17.0.0 || ^18 || ^19", "react-redux": "^7.2.1 || ^8.1.3 || ^9.0.0" }, "peerDependenciesMeta": { diff --git a/package.json b/package.json index 410aa0c9..27e24baf 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "@newfold-labs/wp-module-ecommerce": "^1.4.4", "@newfold-labs/wp-module-runtime": "^1.0.12", "@newfold/ui-component-library": "^1.1.0", - "@reduxjs/toolkit": "^2.3.0", + "@reduxjs/toolkit": "^2.5.0", "@wordpress/compose": "^7.14.0", "@wordpress/dom-ready": "^4.13.0", "@wordpress/element": "^6.13.0", From b7f1f2ace9ac3c24e944bad95ed70cc322376171 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 20:12:25 +0000 Subject: [PATCH 15/15] Composer(deps): Bump newfold-labs/wp-module-patterns from 2.8.0 to 2.8.1 Bumps [newfold-labs/wp-module-patterns](https://github.com/newfold-labs/wp-module-patterns) from 2.8.0 to 2.8.1. - [Release notes](https://github.com/newfold-labs/wp-module-patterns/releases) - [Commits](https://github.com/newfold-labs/wp-module-patterns/compare/2.8.0...2.8.1) --- updated-dependencies: - dependency-name: newfold-labs/wp-module-patterns 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 89a49f6b..7d719a98 100644 --- a/composer.json +++ b/composer.json @@ -87,7 +87,7 @@ "newfold-labs/wp-module-migration": "^1.0.12", "newfold-labs/wp-module-notifications": "^1.6.6", "newfold-labs/wp-module-onboarding": "^2.5.5", - "newfold-labs/wp-module-patterns": "^2.8.0", + "newfold-labs/wp-module-patterns": "^2.8.1", "newfold-labs/wp-module-performance": "2.0.1 as 1.9.9", "newfold-labs/wp-module-runtime": "^1.0.12", "newfold-labs/wp-module-secure-passwords": "^1.1.1", diff --git a/composer.lock b/composer.lock index 29aa9eb7..8915fa53 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": "faf06fb7406017b575ef170b72795c29", + "content-hash": "9b307049f3e9bf228485e5c83af9d98b", "packages": [ { "name": "doctrine/inflector", @@ -1666,16 +1666,16 @@ }, { "name": "newfold-labs/wp-module-patterns", - "version": "2.8.0", + "version": "2.8.1", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-patterns.git", - "reference": "a1133bbd4898104a421abf4945fb59286bf69126" + "reference": "fa02626a8515759691594d38fee339fbdaa113f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-patterns/zipball/a1133bbd4898104a421abf4945fb59286bf69126", - "reference": "a1133bbd4898104a421abf4945fb59286bf69126", + "url": "https://api.github.com/repos/newfold-labs/wp-module-patterns/zipball/fa02626a8515759691594d38fee339fbdaa113f3", + "reference": "fa02626a8515759691594d38fee339fbdaa113f3", "shasum": "" }, "require": { @@ -1714,10 +1714,10 @@ ], "description": "WordPress Cloud Patterns", "support": { - "source": "https://github.com/newfold-labs/wp-module-patterns/tree/2.8.0", + "source": "https://github.com/newfold-labs/wp-module-patterns/tree/2.8.1", "issues": "https://github.com/newfold-labs/wp-module-patterns/issues" }, - "time": "2024-11-21T19:24:57+00:00" + "time": "2024-12-10T18:50:32+00:00" }, { "name": "newfold-labs/wp-module-performance",