Skip to content

fix(deps): ignore unreachable ip-address advisory in dependabot config - #66

Merged
asachs01 merged 1 commit into
mainfrom
fix/ignore-unreachable-ip-address-advisory
Aug 6, 2026
Merged

fix(deps): ignore unreachable ip-address advisory in dependabot config#66
asachs01 merged 1 commit into
mainfrom
fix/ignore-unreachable-ip-address-advisory

Conversation

@asachs01

@asachs01 asachs01 commented Aug 6, 2026

Copy link
Copy Markdown
Member

Summary

Dependabot's daily Security job fails identically every day (security_update_not_possible, latest-resolvable-version: 10.2.0, lowest-non-vulnerable-version: 10.3.1) because ip-address isn't a direct dependency anywhere — it's nested 3 deep: @semantic-release/npmnpm (bundled) → socksip-address@10.2.0.

Why this can't be fixed with a manifest change

npm's published package ships bundleDependencies covering its entire tree, so it's vendored/pre-resolved at publish time — not resolved through the consuming project's normal dependency graph. Verified empirically: added a package.json overrides pin for ip-address >=10.3.1, ran npm install, and node_modules/npm/node_modules/ip-address stayed at 10.2.0. No dependency-management mechanism available in this repo can reach it. Only a future npm release bundling a patched socks/ip-address closes this.

Change

Adds an ignore rule for ip-address in .github/dependabot.yml, with a dated comment explaining the full chain and how to revisit later. This stops the doomed daily retry from failing CI — it does not dismiss the underlying GHSA alert, which stays open/visible on the repo's Security > Dependabot alerts tab as it should.

Why bother at all (low severity, so why not just leave it red?)

A permanently-red scheduled job trains people to stop looking at it, which risks masking an unrelated, actually-fixable advisory landing later in the same daily run. Silencing the unreachable one keeps the signal meaningful.

Pilot fix for this specific advisory — same root cause confirmed across 6 more repos on the shared node-*-mcp dependabot template (node-halopsa, node-superops, node-atera, node-syncro, node-connectwise-automate, node-it-glue); will propagate once this is verified.

🤖 Generated with murph

Dependabot's daily Security job has failed identically since at least
2026-08-04 (security_update_not_possible: latest-resolvable-version
10.2.0, lowest-non-vulnerable-version 10.3.1). Traced why: ip-address
isn't a direct dependency anywhere — it's nested 3 deep via
@semantic-release/npm -> npm (bundled) -> socks -> ip-address@10.2.0.

npm's published package ships bundleDependencies covering its entire
tree, so it's vendored/pre-resolved at publish time. Verified
empirically that a package.json `overrides` pin has zero effect on
this path — node_modules/npm/node_modules/ip-address stayed at 10.2.0
after npm install with the override in place. No dependency management
in this repo can reach it; only a new npm release bundling a patched
socks/ip-address closes this.

Ignoring it in dependabot.yml (with a dated comment explaining why +
how to revisit) so the doomed daily retry stops failing CI. The
underlying GHSA alert stays open/visible on the repo's Security tab —
this only stops the unreachable PR-open attempt, not the vulnerability
tracking itself. A permanently-red scheduled job trains people to stop
looking at it, which risks masking a real, fixable advisory later.
@asachs01
asachs01 merged commit 984be29 into main Aug 6, 2026
2 checks passed
@asachs01
asachs01 deleted the fix/ignore-unreachable-ip-address-advisory branch August 6, 2026 16:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant