From 66373b2723ece783f0688bcb2a85c5218abde056 Mon Sep 17 00:00:00 2001 From: Aravind Kumar Date: Fri, 24 Oct 2025 12:51:24 +0530 Subject: [PATCH 1/7] sca-scan.yml From 9fee7664d73cc172781eab1260010fd35ee7557a Mon Sep 17 00:00:00 2001 From: Aravind Kumar Date: Fri, 24 Oct 2025 12:51:28 +0530 Subject: [PATCH 2/7] policy-scan.yml From 5722335777ea7d4d7032a437eace6f6fecf7c53a Mon Sep 17 00:00:00 2001 From: Aravind Kumar Date: Fri, 24 Oct 2025 12:51:36 +0530 Subject: [PATCH 3/7] issues-jira.yml From 9eb392428d643b8c817ba5c504e803cd002491ad Mon Sep 17 00:00:00 2001 From: Aravind Kumar Date: Fri, 24 Oct 2025 12:51:39 +0530 Subject: [PATCH 4/7] Updated codeowners --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 6db65bf..92f01b3 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,3 +1,4 @@ +* @contentstack/marketplace-pr-reviewers * @contentstack/ghost-pr-reviewers .github/workflows/sca-scan.yml @contentstack/security-admin From a65f1c837195cb105a843d9be1edcbdf1f443dc2 Mon Sep 17 00:00:00 2001 From: Aravind Kumar Date: Fri, 24 Oct 2025 13:36:06 +0530 Subject: [PATCH 5/7] Update CODEOWNERS --- .github/CODEOWNERS | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 92f01b3..ede8288 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,6 +1,4 @@ * @contentstack/marketplace-pr-reviewers -* @contentstack/ghost-pr-reviewers - .github/workflows/sca-scan.yml @contentstack/security-admin **/.snyk @contentstack/security-admin From 29df5c1cba18de066140aca1dbcc7563c3625c36 Mon Sep 17 00:00:00 2001 From: Pradyumna Garg Date: Thu, 6 Nov 2025 17:23:53 +0530 Subject: [PATCH 6/7] fix: MKT-14048 revert apdater changes --- src/utils/adapter.ts | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/utils/adapter.ts b/src/utils/adapter.ts index 82637c7..9c19fc4 100644 --- a/src/utils/adapter.ts +++ b/src/utils/adapter.ts @@ -16,15 +16,11 @@ import { axiosToFetchResponse, fetchToAxiosConfig } from "./utils"; export const dispatchAdapter = (postRobot: typeof PostRobot) => ( - config: AxiosRequestConfig, - context?: { installationUID: string; extensionUID: string } + config: AxiosRequestConfig ) => { return new Promise((resolve, reject) => { postRobot - .sendToParent("apiAdapter", { - data: config, - extension: context, - }) + .sendToParent("apiAdapter", config) .then((event: unknown) => { const { data: response } = event as { data: AxiosResponse }; @@ -63,14 +59,12 @@ export const dispatchAdapter = */ export const dispatchApiRequest = async ( url: string, - options?: RequestInit, - context?: { installationUID: string; extensionUID: string } + options?: RequestInit ): Promise => { try { const config = fetchToAxiosConfig(url, options); const axiosResponse = (await dispatchAdapter(PostRobot)( - config, - context + config )) as AxiosResponse; return axiosToFetchResponse(axiosResponse); From d7cab1ac579c2844e1c96f2f66694346dfad0cb1 Mon Sep 17 00:00:00 2001 From: Pradyumna Garg Date: Thu, 6 Nov 2025 18:16:11 +0530 Subject: [PATCH 7/7] fix: revert codeowner changes --- .github/CODEOWNERS | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index ede8288..6db65bf 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,4 +1,5 @@ -* @contentstack/marketplace-pr-reviewers +* @contentstack/ghost-pr-reviewers + .github/workflows/sca-scan.yml @contentstack/security-admin **/.snyk @contentstack/security-admin