Replies: 8 comments 1 reply
-
|
It seems so. I am having 500 errors on all my GitHub actions and local environments. I noticed this for about 4 hours now. Was coming here to post this but saw your ticket |
Beta Was this translation helpful? Give feedback.
-
|
According to npm docs, audit commands send your dependency tree to the registry to retrieve vulnerability reports, so failures often happen when the registry endpoint is unstable or returning errors. |
Beta Was this translation helpful? Give feedback.
-
|
Down for me too |
Beta Was this translation helpful? Give feedback.
-
|
Actually, it is NOT fully down. While I can get it to work with a minimal As soon as I add any packages like |
Beta Was this translation helpful? Give feedback.
-
|
Down for us as well, any news on this ? |
Beta Was this translation helpful? Give feedback.
-
|
I think the issue may be due to A simple test: and we have the audit failure. If you view it: the only dependency is So this leads me to believe it is an issue with They even state:
Other packages I use seem to use this package as a dependency directly or as a dependency of a dependency. If I remove all packages that use this, audit works for me. While not the best way to identify the issue, and perhaps even completely wrong, this is my assessment for my repos. They do seem to have a vulnerability (ReDoS risk) that I have seen 2 PRs for. While I am not 100% sure if that is the cause for everyone's issue with audit not working, this does appear to be the issue for me. Since |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for the detailed feedback @jpSimkins. It really was related to some specific dependencies. I ran some tests yesterday and it seemed to be linked to my devDependencies, though I couldn't identify exactly which ones. We tested it today and it’s back up and running! |
Beta Was this translation helpful? Give feedback.
-
|
If The registry is not down. EvidenceMinimal reproduction: {
"name": "audit-test",
"devDependencies": {
"minimatch": "^9.0.5"
}
}Running: pnpm auditReturns Removing Why This Happens
How to Confirmgrep minimatch pnpm-lock.yaml
# or
grep minimatch yarn.lockIf you see WorkaroundRecommended: Wait for PatchSince this affects a core ecosystem dependency, a fix is likely being prioritized. Optional: Pin Stable Versionpnpm {
"pnpm": {
"overrides": {
"minimatch": "7.4.6"
}
}
}Yarn {
"resolutions": {
"minimatch": "7.4.6"
}
}Reinstall dependencies after pinning. Bottom LineThis is not a local issue or full registry outage. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Body
Hi everyone,
I'm consistently getting a "500 Internal Server Error" when running pnpm audit and yarn audit in my projects.
I’ve checked the official npm status page and searched online, but I can't find any reports of an ongoing outage. Is anyone else experiencing this?
Beta Was this translation helpful? Give feedback.
All reactions