From 4d6890dcad8ea88bc7e6ac01c00a6f14946fe309 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Jan 2026 23:57:18 +0000 Subject: [PATCH 1/2] Bump lodash in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [lodash](https://github.com/lodash/lodash). Updates `lodash` from 4.17.21 to 4.17.23 - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.21...4.17.23) --- updated-dependencies: - dependency-name: lodash dependency-version: 4.17.23 dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] --- package-lock.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index b31fa10..67976e4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15683,10 +15683,11 @@ } }, "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "dev": true, + "license": "MIT" }, "node_modules/lodash-es": { "version": "4.17.22", From b103110ffbf956baee659f7a6293857e92c85e41 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Tue, 27 Jan 2026 11:40:20 +1100 Subject: [PATCH 2/2] Use post for testing to avoid pattern overlay on pages. --- tests/cypress/e2e/insert-character-in-post.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/cypress/e2e/insert-character-in-post.test.js b/tests/cypress/e2e/insert-character-in-post.test.js index e73a581..aafec1a 100644 --- a/tests/cypress/e2e/insert-character-in-post.test.js +++ b/tests/cypress/e2e/insert-character-in-post.test.js @@ -10,8 +10,8 @@ describe( 'Insert character in post', () => { it( 'Admin can add character in post and save it', () => { cy.createPost( { - title: 'Page with special characters', - postType: 'page', + title: 'Post with special characters', + postType: 'post', } ); cy.window().then( ( win ) => { @@ -72,7 +72,7 @@ describe( 'Insert character in post', () => { } ); it( 'Verify the character on the front end', () => { - cy.visit( `${ Cypress.config().baseUrl }/page-with-special-characters` ); + cy.visit( `${ Cypress.config().baseUrl }/post-with-special-characters` ); cy.get( 'body' ).invoke( 'text' ).then( text => { if ( text.includes( 'Hello world∀' ) ) {