Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion amplify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ frontend:
test:
artifacts:
baseDirectory: /website/cypress
configFilePath: "/report/mochawesome.json"
configFilePath: "report/mochawesome.json"
files:
- "**/*.png"
- "**/*.mp4"
Expand Down
12 changes: 12 additions & 0 deletions website/blog/2026-03-31-axios-vulnerability-supply-chain-attack.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
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.**


5 changes: 3 additions & 2 deletions website/cypress/e2e/basic.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ describe("Top Navigation in web & mobile", function () {
hamburgerMenu: ".hamburger-menu"
};

Cypress.on("uncaught:exception", () => false);

beforeEach(function () {
cy.visit('http://localhost:3000/learn/')
Cypress.on('uncaught:exception', (err, runnable) => { return false; })
cy.visit("/");
cy.get(".navbar").should("be.visible");
});

it("Verifies top nav has 6 options in desktop browser", function () {
Expand Down