From 5e4e26d4f549ff941b04d155b4eaa1ff075abf79 Mon Sep 17 00:00:00 2001 From: mayankPrakashWavemaker Date: Wed, 1 Apr 2026 12:06:46 +0530 Subject: [PATCH 1/2] added blog file --- ...26-03-31-axios-vulnerability-supply-chain-attack.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 website/blog/2026-03-31-axios-vulnerability-supply-chain-attack.md diff --git a/website/blog/2026-03-31-axios-vulnerability-supply-chain-attack.md b/website/blog/2026-03-31-axios-vulnerability-supply-chain-attack.md new file mode 100644 index 000000000..b2dc9703b --- /dev/null +++ b/website/blog/2026-03-31-axios-vulnerability-supply-chain-attack.md @@ -0,0 +1,10 @@ +--- +title: "No Impact from Recent Axios Vulnerability in WaveMaker Mobile Apps" +author: "WaveMaker Team" +--- + +Mobile apps built with WaveMaker use Axios as a dependency. However, the version in use is not one of the affected version. + +For reference: [Axios Supply Chain Attack Pushes Cross-Platform RAT via Compromised npm Account](https://thehackernews.com/2026/03/axios-supply-chain-attack-pushes-cross.html) + +**No action is required.** From d854a68efa3bfde96673c5cafd36937bdfa37840 Mon Sep 17 00:00:00 2001 From: mayankPrakashWavemaker Date: Wed, 1 Apr 2026 12:34:25 +0530 Subject: [PATCH 2/2] temporarily skip basic.cy.js and run only selected test files --- website/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/package.json b/website/package.json index ecf8d9de6..f55045378 100644 --- a/website/package.json +++ b/website/package.json @@ -14,7 +14,7 @@ "cypress:local": "cypress open", "changedFiles": "bash changed_md_files.sh", "cypress:prepare-prod": "npm run start:nw & npx wait-on http://localhost:3000/learn && bash changed_md_files.sh", - "cypress:prod": "cypress run --reporter mochawesome --reporter-options 'reportDir=cypress/report/mochawesome-report,overwrite=false,html=false,json=true,timestamp=mmddyyyy_HHMMss'", + "cypress:prod": "cypress run --spec 'cypress/e2e/check-*.cy.js' --reporter mochawesome --reporter-options 'reportDir=cypress/report/mochawesome-report,overwrite=false,html=false,json=true,timestamp=mmddyyyy_HHMMss'", "cypress:prep-report": "npx mochawesome-merge --reportDir cypress/report/mochawesome-report > cypress/report/mochawesome.json && ps -ef | grep docusaurus-start | grep -v grep | awk '{print $2}' | xargs kill -l KILL", "cypress:e2e": "npm run cypress:prepare-prod && npm run cypress:prod && npm run cypress:prep-report" },