Skip to content

chore(deps): bump axios from 1.12.2 to 1.16.0 in /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client#1655

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/axios-1.16.0
Open

chore(deps): bump axios from 1.12.2 to 1.16.0 in /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client#1655
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/axios-1.16.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 12, 2026

Copy link
Copy Markdown
Contributor

Bumps axios from 1.12.2 to 1.16.0.

Release notes

Sourced from axios's releases.

v1.16.0 — May 2, 2026

This release adds support for the QUERY HTTP method and a new ECONNREFUSED error constant, lands a substantial wave of HTTP, fetch, and XHR adapter bug fixes around redirects, aborts, headers, and timeouts, and welcomes 23 new contributors.

⚠️ Notable Changes

A handful of fixes in this release are either security-adjacent or change observable behaviour. Please review before upgrading:

  • Fetch adapter now enforces maxBodyLength and maxContentLength. These limits were silently ignored on the fetch adapter prior to 1.16.0 — anyone relying on them as a safety net (DoS protection, accidental large uploads) had no protection. (#10795)
  • Proxy requests now preserve user-supplied Host headers. Previously, the proxy path could overwrite a custom Host. Virtual-host-style routing through a proxy will now behave correctly. (#10822)
  • Basic auth credentials embedded in URLs are now URL-decoded. If you have percent-encoded credentials in a URL (e.g. https://user:p%40ss@host), the decoded value is what now goes on the wire. (#10825)
  • parseProtocol now strictly requires a colon in the protocol separator. Strings that loosely parsed as protocols before may no longer match. (#10729)
  • Deprecated unescape() replaced with modern UTF-8 encoding. Non-ASCII URL handling is now spec-correct; consumers depending on legacy unescape() quirks may see different output bytes. (#7378)
  • transformRequest input typing change was reverted. The typing change introduced in #10745 was reverted in #10810 after follow-up review — net behavior is unchanged from 1.15.2. (#10745, #10810)

🚀 New Features

  • QUERY HTTP Method: Added support for the QUERY HTTP method across adapters and type definitions. (#10802)
  • ECONNREFUSED Error Constant: Exposed ECONNREFUSED as a constant on AxiosError so callers can match connection-refused failures without comparing string literals (closes #6485). (#10680)
  • Encode Helper Export: Exported the internal encode helper from buildURL so userland param serializers can reuse the same encoding logic that axios uses internally. (#6897)

🐛 Bug Fixes

  • HTTP Adapter — Redirects & Headers: Cleared stale headers when a redirect targets a no-proxy host, fixed the redirect listener chain so listeners no longer stack across hops, restored the missing requestDetails argument on beforeRedirect, preserved user-supplied Host headers when forwarding through a proxy, and properly URL-decoded basic auth credentials. (#10794, #10800, #6241, #10822, #10825)
  • HTTP Adapter — Streams & Timeouts: Preserved the partial response object on AxiosError when a stream is aborted after headers arrive, honoured the timeout option during the connect phase when redirects are disabled, and resolved an unsettled-promise hang when an aborted request was combined with compression and maxRedirects: 0. (#10708, #10819, #7149)
  • Fetch Adapter: Enforced maxBodyLength / maxContentLength in the fetch adapter, set the User-Agent header to match the HTTP adapter, preserved the original abort reason instead of replacing it with a generic error, and deferred global access so importing the module no longer throws a TypeError in restricted environments. (#10795, #10772, #10806, #7260)
  • XHR Adapter: Unsubscribed the cancelToken and AbortSignal listeners on the error, timeout, and abort code paths to prevent leaked subscriptions. (#10787)
  • Error Handling: Attached the parsed response to AxiosError when JSON.parse fails inside dispatchRequest, prevented settle from emitting undefined error codes, and tightened the parseProtocol regex to require a colon in the protocol separator. (#10724, #7276, #10729)
  • Types & Exports: Aligned the CommonJS CancelToken typings with the ESM build, fixed a compiler error caused by RawAxiosHeaders, and re-exported create from the package index. (#7414, #6389, #6460)
  • UTF-8 Encoding: Replaced the deprecated unescape() call with a modern UTF-8 encoding implementation. (#7378)
  • Misc Cleanup: Resolved a batch of small inconsistencies and gadget-level issues across the codebase. (#10833)

🔧 Maintenance & Chores

  • Refactor — ES6 Modernisation: Modernised the utils module and XHR adapter to use ES6 features, and tidied the multipart boundary error message. (#10588, #7419)
  • Tests: Hardened the HTTP test server lifecycle to fix flaky FormData EPIPE failures, fixed Win32 platform support for the pipe tests, and corrected an incorrect test assumption. (#10820, #10791, #10796)
  • Docs: Documented paramsSerializer.encode for strict RFC 3986 query encoding, updated the parseReviver TypeScript definitions and configuration docs for ES2023, added timeout guidance to the README's first async example, and expanded notes around the recent type changes. (#10821, #10782, #10759, #10804)
  • Reverted: Reverted the transformRequest input typing change from #10745 after follow-up review. (#10745, #10810)
  • Dependencies: Bumped actions/setup-node, the github-actions group, and postcss (in /docs) to their latest versions. (#10785, #10813, #10814)
  • Release: Updated changelog and packages, and prepared the 1.16.0 release. (#10790, #10834)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

... (truncated)

Changelog

Sourced from axios's changelog.

v1.16.0 — May 2, 2026

This release adds support for the QUERY HTTP method and a new ECONNREFUSED error constant, lands a substantial wave of HTTP, fetch, and XHR adapter bug fixes around redirects, aborts, headers, and timeouts, and welcomes 23 new contributors.

⚠️ Notable Changes

A handful of fixes in this release are either security-adjacent or change observable behaviour. Please review before upgrading:

  • Fetch adapter now enforces maxBodyLength and maxContentLength. These limits were silently ignored on the fetch adapter prior to 1.16.0 — anyone relying on them as a safety net (DoS protection, accidental large uploads) had no protection. (#10795)
  • Proxy requests now preserve user-supplied Host headers. Previously, the proxy path could overwrite a custom Host. Virtual-host-style routing through a proxy will now behave correctly. (#10822)
  • Basic auth credentials embedded in URLs are now URL-decoded. If you have percent-encoded credentials in a URL (e.g. https://user:p%40ss@host), the decoded value is what now goes on the wire. (#10825)
  • parseProtocol now strictly requires a colon in the protocol separator. Strings that loosely parsed as protocols before may no longer match. (#10729)
  • Deprecated unescape() replaced with modern UTF-8 encoding. Non-ASCII URL handling is now spec-correct; consumers depending on legacy unescape() quirks may see different output bytes. (#7378)
  • transformRequest input typing change was reverted. The typing change introduced in #10745 was reverted in #10810 after follow-up review — net behavior is unchanged from 1.15.2. (#10745, #10810)

🚀 New Features

  • QUERY HTTP Method: Added support for the QUERY HTTP method across adapters and type definitions. (#10802)
  • ECONNREFUSED Error Constant: Exposed ECONNREFUSED as a constant on AxiosError so callers can match connection-refused failures without comparing string literals (closes #6485). (#10680)
  • Encode Helper Export: Exported the internal encode helper from buildURL so userland param serializers can reuse the same encoding logic that axios uses internally. (#6897)

🐛 Bug Fixes

  • HTTP Adapter — Redirects & Headers: Cleared stale headers when a redirect targets a no-proxy host, fixed the redirect listener chain so listeners no longer stack across hops, restored the missing requestDetails argument on beforeRedirect, preserved user-supplied Host headers when forwarding through a proxy, and properly URL-decoded basic auth credentials. (#10794, #10800, #6241, #10822, #10825)
  • HTTP Adapter — Streams & Timeouts: Preserved the partial response object on AxiosError when a stream is aborted after headers arrive, honoured the timeout option during the connect phase when redirects are disabled, and resolved an unsettled-promise hang when an aborted request was combined with compression and maxRedirects: 0. (#10708, #10819, #7149)
  • Fetch Adapter: Enforced maxBodyLength / maxContentLength in the fetch adapter, set the User-Agent header to match the HTTP adapter, preserved the original abort reason instead of replacing it with a generic error, and deferred global access so importing the module no longer throws a TypeError in restricted environments. (#10795, #10772, #10806, #7260)
  • XHR Adapter: Unsubscribed the cancelToken and AbortSignal listeners on the error, timeout, and abort code paths to prevent leaked subscriptions. (#10787)
  • Error Handling: Attached the parsed response to AxiosError when JSON.parse fails inside dispatchRequest, prevented settle from emitting undefined error codes, and tightened the parseProtocol regex to require a colon in the protocol separator. (#10724, #7276, #10729)
  • Types & Exports: Aligned the CommonJS CancelToken typings with the ESM build, fixed a compiler error caused by RawAxiosHeaders, and re-exported create from the package index. (#7414, #6389, #6460)
  • UTF-8 Encoding: Replaced the deprecated unescape() call with a modern UTF-8 encoding implementation. (#7378)
  • Misc Cleanup: Resolved a batch of small inconsistencies and gadget-level issues across the codebase. (#10833)

🔧 Maintenance & Chores

  • Refactor — ES6 Modernisation: Modernised the utils module and XHR adapter to use ES6 features, and tidied the multipart boundary error message. (#10588, #7419)
  • Tests: Hardened the HTTP test server lifecycle to fix flaky FormData EPIPE failures, fixed Win32 platform support for the pipe tests, and corrected an incorrect test assumption. (#10820, #10791, #10796)
  • Docs: Documented paramsSerializer.encode for strict RFC 3986 query encoding, updated the parseReviver TypeScript definitions and configuration docs for ES2023, added timeout guidance to the README's first async example, and expanded notes around the recent type changes. (#10821, #10782, #10759, #10804)
  • Reverted: Reverted the transformRequest input typing change from #10745 after follow-up review. (#10745, #10810)
  • Dependencies: Bumped actions/setup-node, the github-actions group, and postcss (in /docs) to their latest versions. (#10785, #10813, #10814)
  • Release: Updated changelog and packages, and prepared the 1.16.0 release. (#10790, #10834)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

... (truncated)

Commits
  • df53d7d chore(release): prepare release 1.16.0 (#10834)
  • 9d92bcd fix: gadgets and smaller issues (#10833)
  • 5107ee6 fix: prevent undefined error codes in settle (#7276)
  • e573499 fix(fetch): defer global access in fetch adapter (#7260)
  • ad68e1a fix(http): honor timeout during connect without redirects (#10819)
  • 2a51828 fix(http): decode URL basic auth credentials (#10825)
  • 0e8b6bb fix(http): preserve user-supplied Host header when forwarding through a proxy...
  • 79f39e1 docs: document paramsSerializer.encode for strict RFC 3986 query encoding (#1...
  • 0fe3a5f [Docs/Types] Update parseReviver TypeScript definitions for ES2023 and add ...
  • cd6737f chore: matches the sibling responseStream.on(aborted) handler and added tests...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for axios since your current version.

Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [axios](https://github.com/axios/axios) from 1.12.2 to 1.16.0.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.12.2...v1.16.0)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 1.16.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 12, 2026
@github-actions github-actions Bot added the 03-integrations 03-integrations label Jun 12, 2026
@github-actions

Copy link
Copy Markdown

Latest scan for commit: e7d80c0 | Updated: 2026-06-12 00:57:20 UTC

Security Scan Results

Scan Metadata

  • Project: ASH
  • Scan executed: 2026-06-12T00:57:07+00:00
  • ASH version: 3.0.0

Summary

Scanner Results

The table below shows findings by scanner, with status based on severity thresholds and dependencies:

Column Explanations:

Severity Levels (S/C/H/M/L/I):

  • Suppressed (S): Security findings that have been explicitly suppressed/ignored and don't affect the scanner's pass/fail status
  • Critical (C): The most severe security vulnerabilities requiring immediate remediation (e.g., SQL injection, remote code execution)
  • High (H): Serious security vulnerabilities that should be addressed promptly (e.g., authentication bypasses, privilege escalation)
  • Medium (M): Moderate security risks that should be addressed in normal development cycles (e.g., weak encryption, input validation issues)
  • Low (L): Minor security concerns with limited impact (e.g., information disclosure, weak recommendations)
  • Info (I): Informational findings for awareness with minimal security risk (e.g., code quality suggestions, best practice recommendations)

Other Columns:

  • Time: Duration taken by each scanner to complete its analysis
  • Action: Total number of actionable findings at or above the configured severity threshold that require attention

Scanner Results:

  • PASSED: Scanner found no security issues at or above the configured severity threshold - code is clean for this scanner
  • FAILED: Scanner found security vulnerabilities at or above the threshold that require attention and remediation
  • MISSING: Scanner could not run because required dependencies/tools are not installed or available
  • SKIPPED: Scanner was intentionally disabled or excluded from this scan
  • ERROR: Scanner encountered an execution error and could not complete successfully

Severity Thresholds (Thresh Column):

  • CRITICAL: Only Critical severity findings cause scanner to fail
  • HIGH: High and Critical severity findings cause scanner to fail
  • MEDIUM (MED): Medium, High, and Critical severity findings cause scanner to fail
  • LOW: Low, Medium, High, and Critical severity findings cause scanner to fail
  • ALL: Any finding of any severity level causes scanner to fail

Threshold Source: Values in parentheses indicate where the threshold is configured:

  • (g) = global: Set in the global_settings section of ASH configuration
  • (c) = config: Set in the individual scanner configuration section
  • (s) = scanner: Default threshold built into the scanner itself

Statistics calculation:

  • All statistics are calculated from the final aggregated SARIF report
  • Suppressed findings are counted separately and do not contribute to actionable findings
  • Scanner status is determined by comparing actionable findings to the threshold
Scanner S C H M L I Time Action Result Thresh
bandit 0 0 0 0 0 0 451ms 0 PASSED MED (g)
cdk-nag 0 0 0 0 0 0 8.7s 0 PASSED MED (g)
cfn-nag 0 0 0 0 0 0 1.2s 0 PASSED MED (g)
checkov 0 0 0 0 0 0 5.4s 0 PASSED MED (g)
detect-secre… 0 0 0 0 0 0 1.3s 0 PASSED MED (g)
grype 0 30 0 21 4 0 50.8s 51 FAILED MED (g)
npm-audit 0 0 0 0 0 0 885ms 0 PASSED MED (g)
opengrep 0 0 0 0 0 0 <1ms 0 SKIPPED MED (g)
semgrep 0 0 0 0 0 0 <1ms 0 MISSING MED (g)
syft 0 0 0 0 0 0 3.0s 0 PASSED MED (g)

Detailed Findings

Show 51 actionable findings

Finding 1: GHSA-mw96-cpmx-2vgc-rollup

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-mw96-cpmx-2vgc-rollup
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: rollup, version 2.79.2 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 2: GHSA-rp65-9cf3-cjxr-nth-check

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-rp65-9cf3-cjxr-nth-check
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: nth-check, version 1.0.2 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 3: GHSA-87r5-mp6g-5w5j-jsonpath

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-87r5-mp6g-5w5j-jsonpath
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: jsonpath, version 1.1.1 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 4: GHSA-7fh5-64p2-3v2j-postcss

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-7fh5-64p2-3v2j-postcss
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: postcss, version 7.0.39 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 5: GHSA-xpqw-6gx7-v673-svgo

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-xpqw-6gx7-v673-svgo
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: svgo, version 2.8.0 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 6: GHSA-5m6q-g25r-mvwx-node-forge

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-5m6q-g25r-mvwx-node-forge
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: node-forge, version 1.3.3 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 7: GHSA-w7jw-789q-3m8p-shell-quote

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-w7jw-789q-3m8p-shell-quote
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A critical vulnerability in npm package: shell-quote, version 1.8.3 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 8: GHSA-rf6f-7fwh-wjgh-flatted

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-rf6f-7fwh-wjgh-flatted
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: flatted, version 3.3.3 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 9: GHSA-4v9v-hfq4-rm2v-webpack-dev-server

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-4v9v-hfq4-rm2v-webpack-dev-server
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: webpack-dev-server, version 4.15.2 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 10: GHSA-6c59-mwgh-r2x6-jsonpath

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-6c59-mwgh-r2x6-jsonpath
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: jsonpath, version 1.1.1 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 11: GHSA-q3j6-qgpj-74h6-fast-uri

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-q3j6-qgpj-74h6-fast-uri
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: fast-uri, version 3.1.0 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 12: GHSA-r5fr-rjxr-66jc-lodash

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-r5fr-rjxr-66jc-lodash
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: lodash, version 4.17.21 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 13: GHSA-q67f-28xg-22rw-node-forge

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-q67f-28xg-22rw-node-forge
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: node-forge, version 1.3.3 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 14: GHSA-3v7f-55p6-f55p-picomatch

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-3v7f-55p6-f55p-picomatch
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: picomatch, version 2.3.1 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 15: GHSA-ppp5-5v6c-4jwp-node-forge

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-ppp5-5v6c-4jwp-node-forge
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: node-forge, version 1.3.3 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 16: GHSA-7r86-cg39-jmmj-minimatch

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-7r86-cg39-jmmj-minimatch
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: minimatch, version 3.1.2 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 17: GHSA-7r86-cg39-jmmj-minimatch

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-7r86-cg39-jmmj-minimatch
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: minimatch, version 5.1.6 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 18: GHSA-7r86-cg39-jmmj-minimatch

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-7r86-cg39-jmmj-minimatch
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: minimatch, version 9.0.5 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 19: GHSA-2328-f5f3-gj25-node-forge

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-2328-f5f3-gj25-node-forge
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: node-forge, version 1.3.3 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 20: GHSA-q8mj-m7cp-5q26-qs

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-q8mj-m7cp-5q26-qs
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: qs, version 6.13.0 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 21: GHSA-9jgg-88mc-972h-webpack-dev-server

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-9jgg-88mc-972h-webpack-dev-server
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: webpack-dev-server, version 4.15.2 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 22: GHSA-3ppc-4f35-3m26-minimatch

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-3ppc-4f35-3m26-minimatch
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: minimatch, version 3.1.2 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 23: GHSA-3ppc-4f35-3m26-minimatch

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-3ppc-4f35-3m26-minimatch
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: minimatch, version 5.1.6 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 24: GHSA-3ppc-4f35-3m26-minimatch

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-3ppc-4f35-3m26-minimatch
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: minimatch, version 9.0.5 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 25: GHSA-23c5-xmqv-rm74-minimatch

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-23c5-xmqv-rm74-minimatch
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: minimatch, version 3.1.2 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 26: GHSA-23c5-xmqv-rm74-minimatch

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-23c5-xmqv-rm74-minimatch
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: minimatch, version 5.1.6 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 27: GHSA-23c5-xmqv-rm74-minimatch

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-23c5-xmqv-rm74-minimatch
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: minimatch, version 9.0.5 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 28: GHSA-5j98-mcp5-4vw2-glob

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-5j98-mcp5-4vw2-glob
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: glob, version 10.4.5 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 29: GHSA-6rw7-vpxm-498p-qs

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-6rw7-vpxm-498p-qs
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: qs, version 6.13.0 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 30: GHSA-25h7-pfq9-p65f-flatted

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-25h7-pfq9-p65f-flatted
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: flatted, version 3.3.3 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 31: GHSA-79cf-xcqc-c78w-webpack-dev-server

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-79cf-xcqc-c78w-webpack-dev-server
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: webpack-dev-server, version 4.15.2 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 32: GHSA-xxjr-mmjv-4gpg-lodash

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-xxjr-mmjv-4gpg-lodash
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: lodash, version 4.17.21 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 33: GHSA-f886-m6hf-6m8v-brace-expansion

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-f886-m6hf-6m8v-brace-expansion
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: brace-expansion, version 1.1.12 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 34: GHSA-f886-m6hf-6m8v-brace-expansion

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-f886-m6hf-6m8v-brace-expansion
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: brace-expansion, version 2.0.2 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 35: GHSA-qpx9-hpmf-5gmw-underscore

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-qpx9-hpmf-5gmw-underscore
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: underscore, version 1.12.1 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 36: GHSA-fv7c-fp4j-7gwp-@babel/plugin-transform-modules-systemjs

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-fv7c-fp4j-7gwp-@babel/plugin-transform-modules-systemjs
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: @babel/plugin-transform-modules-systemjs, version 7.27.1 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 37: GHSA-c2c7-rcm5-vvqj-picomatch

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-c2c7-rcm5-vvqj-picomatch
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: picomatch, version 2.3.1 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 38: GHSA-f23m-r3pf-42rh-lodash

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-f23m-r3pf-42rh-lodash
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: lodash, version 4.17.21 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 39: GHSA-37ch-88jc-xwx2-path-to-regexp

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-37ch-88jc-xwx2-path-to-regexp
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: path-to-regexp, version 0.1.12 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 40: GHSA-48c2-rrv3-qjmp-yaml

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-48c2-rrv3-qjmp-yaml
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: yaml, version 1.10.2 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 41: GHSA-w5hq-g745-h8pq-uuid

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-w5hq-g745-h8pq-uuid
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: uuid, version 8.3.2 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 42: GHSA-w5hq-g745-h8pq-uuid

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-w5hq-g745-h8pq-uuid
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: uuid, version 9.0.1 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 43: GHSA-qj8w-gfj5-8c6v-serialize-javascript

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-qj8w-gfj5-8c6v-serialize-javascript
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: serialize-javascript, version 6.0.2 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 44: GHSA-v39h-62p7-jpjc-fast-uri

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-v39h-62p7-jpjc-fast-uri
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: fast-uri, version 3.1.0 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 45: GHSA-2g4f-4pwh-qvx6-ajv

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-2g4f-4pwh-qvx6-ajv
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: ajv, version 6.12.6 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 46: GHSA-2g4f-4pwh-qvx6-ajv

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-2g4f-4pwh-qvx6-ajv
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: ajv, version 8.17.1 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 47: GHSA-qx2v-qp2m-jg93-postcss

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-qx2v-qp2m-jg93-postcss
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: postcss, version 7.0.39 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 48: GHSA-qx2v-qp2m-jg93-postcss

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-qx2v-qp2m-jg93-postcss
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: postcss, version 8.5.6 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 49: GHSA-58qx-3vcg-4xpx-ws

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-58qx-3vcg-4xpx-ws
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A medium vulnerability in npm package: ws, version 8.18.3 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 50: GHSA-5c6j-r48x-rmvq-serialize-javascript

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-5c6j-r48x-rmvq-serialize-javascript
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: serialize-javascript, version 4.0.0 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Finding 51: GHSA-5c6j-r48x-rmvq-serialize-javascript

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-5c6j-r48x-rmvq-serialize-javascript
  • Location: 03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json:1

Description:
A high vulnerability in npm package: serialize-javascript, version 6.0.2 was found at: /03-integrations/agents-hosted-outside-runtime/agents-on-ecs/agentic-sales-analyst/client/package-lock.json


Report generated by Automated Security Helper (ASH) at 2026-06-12T00:57:02+00:00

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

03-integrations 03-integrations dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants