From 37d0241da6a45630dcc175bf0163bc56f0e444de Mon Sep 17 00:00:00 2001 From: Tom Scott Date: Mon, 28 Oct 2024 11:26:41 -0700 Subject: [PATCH 1/2] Create CODEOWNERS --- CODEOWNERS | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..6378526 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,3 @@ +# This repository is maintained by the Gryffindor team. +# See: https://github.com/orgs/infusionsoft/teams/gryffindor +* @infusionsoft/gryffindor From dd9d57dc8cb81086f037ddbe2b8ee2feda34d68f Mon Sep 17 00:00:00 2001 From: kalexieva Date: Thu, 2 Oct 2025 14:36:08 -0700 Subject: [PATCH 2/2] KPDS-6459 Upgrade axios Upgrade axios version to v1.12.2 to address CVE-2025-58754 see https://github.com/advisories/GHSA-4hjh-wcwx-xvwj and https://nvd.nist.gov/vuln/detail/CVE-2025-58754 --- Node/DisplayListOfContacts/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Node/DisplayListOfContacts/package.json b/Node/DisplayListOfContacts/package.json index 884644e..8c222f2 100644 --- a/Node/DisplayListOfContacts/package.json +++ b/Node/DisplayListOfContacts/package.json @@ -6,8 +6,8 @@ "author": "api@keap.com", "license": "MIT", "dependencies": { - "axios": "^0.24.0", - "axios-retry": "^3.2.4", - "yargs": "^17.2.1" + "axios": "^1.12.2", + "axios-retry": "^4.5.0", + "yargs": "^18.0.0" } }