From 5c6a69bf83d336fc5fb761866551fc5d8a82f07a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Aug 2024 14:15:32 +0000 Subject: [PATCH 1/3] Bump axios in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [axios](https://github.com/axios/axios). Updates `axios` from 1.6.4 to 1.7.4 - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v1.6.4...v1.7.4) --- updated-dependencies: - dependency-name: axios dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] --- package-lock.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index 37facda5b..307923ad0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5779,12 +5779,12 @@ } }, "node_modules/axios": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.4.tgz", - "integrity": "sha512-heJnIs6N4aa1eSthhN9M5ioILu8Wi8vmQW9iHQ9NUvfkJb0lEEDUiIdQNAuBtfUt3FxReaKdpQA5DbmMOqzF/A==", + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.4.tgz", + "integrity": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==", "dev": true, "dependencies": { - "follow-redirects": "^1.15.4", + "follow-redirects": "^1.15.6", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } @@ -25528,12 +25528,12 @@ "dev": true }, "axios": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.4.tgz", - "integrity": "sha512-heJnIs6N4aa1eSthhN9M5ioILu8Wi8vmQW9iHQ9NUvfkJb0lEEDUiIdQNAuBtfUt3FxReaKdpQA5DbmMOqzF/A==", + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.4.tgz", + "integrity": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==", "dev": true, "requires": { - "follow-redirects": "^1.15.4", + "follow-redirects": "^1.15.6", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" }, From da1b254b57a1cac62b1e1de6807aab9515742dea Mon Sep 17 00:00:00 2001 From: Dharmesh Patel Date: Fri, 23 Aug 2024 13:26:14 +0530 Subject: [PATCH 2/3] Fix distributed post tests. --- tests/cypress/e2e/distributed-post.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/cypress/e2e/distributed-post.test.js b/tests/cypress/e2e/distributed-post.test.js index c985abffe..a4cc527f1 100644 --- a/tests/cypress/e2e/distributed-post.test.js +++ b/tests/cypress/e2e/distributed-post.test.js @@ -25,7 +25,7 @@ describe( 'Distributed Post Tests', () => { // Ensure the settings panel is open. cy.get( 'button[aria-label="Settings"]' ).then( () => { cy.openDocumentSettingsSidebar( 'Post' ); - cy.openDocumentSettingsPanel( 'Distributor' ); + cy.openDocumentSettingsPanel( 'Pulled Content' ); cy.get( '#distributed-to' ).should( 'contain.text', 'Distributed to 1 connection' @@ -46,7 +46,7 @@ describe( 'Distributed Post Tests', () => { $settings.trigger( 'click' ); } cy.openDocumentSettingsSidebar( 'Post' ); - cy.openDocumentSettingsPanel( 'Distributor' ); + cy.openDocumentSettingsPanel( 'Pulled Content' ); cy.get( '#distributed-to' ).should( 'contain.text', 'Distributed to 2 connections' @@ -91,7 +91,7 @@ describe( 'Distributed Post Tests', () => { $settings.trigger( 'click' ); } cy.openDocumentSettingsSidebar( 'Post' ); - cy.openDocumentSettingsPanel( 'Distributor' ); + cy.openDocumentSettingsPanel( 'Pulled Content' ); cy.get( '#distributed-from' ).should( 'contain.text', 'Distributed on' From 826dc5a174721fcd673a8e93cece845eecd2261d Mon Sep 17 00:00:00 2001 From: Dharmesh Patel Date: Fri, 23 Aug 2024 13:38:01 +0530 Subject: [PATCH 3/3] Update wordings. --- tests/cypress/e2e/distributed-post.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cypress/e2e/distributed-post.test.js b/tests/cypress/e2e/distributed-post.test.js index a4cc527f1..74afcd522 100644 --- a/tests/cypress/e2e/distributed-post.test.js +++ b/tests/cypress/e2e/distributed-post.test.js @@ -94,7 +94,7 @@ describe( 'Distributed Post Tests', () => { cy.openDocumentSettingsPanel( 'Pulled Content' ); cy.get( '#distributed-from' ).should( 'contain.text', - 'Distributed on' + 'Pulled & linked on' ); } );