-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[Bug?]: Error for packages without any versions #6630
Comments
The problem with just removing the {
"_id": "lodash",
"dist-tags": {
"latest": "4.17.21"
},
"versions": {}
//...
} When adding packages without specifying a range (e.g. If instead the
Adding a specific range that is not satisfiable is also an expected error
HTTP status codes convey semantics. A registry saying "This package does not exist" and "This package exists but has no versions" is semantically distinct. Reinterpreting a 200 as a 404 will just leads to more problems down the line, especially if the error message says the registry returned 404 which would be very confusing for registry developers. And FWIW, the |
That's a good point, I'm not sure what NPM or PNPM do differently in this case, but this seems like very reasonable behavior. Filtering out the latest version with the private registry in a scenario where no versions are present seems like the correct choice, however I'm curious if there is a good solution when only the latest version is filtered. The registry at that point has no way of truly knowing what the latest version before that was as far as I can tell, so would the expected behavior be to just sort by semver versions without suffix and pick the highest one? I'd assume this isn't something yarn can do itself? I appreciate the detailed response, feel free to close this issue any time I think the root of the issue has been resolved. |
Hi! 👋 It seems like this issue as been marked as probably resolved, or missing important information blocking its progression. As a result, it'll be closed in a few days unless a maintainer explicitly vouches for it. |
Self-service
Describe the bug
When running Yarn against a package that provides an empty
versions
object on the metadata, the following error is printed:This was reproduced with a custom registry, however other package managers like npm and pnpm do not run into errors with this. It seems reasonable to me that an empty versions object should be treated like a 404 on the endpoint, which gives essentially the same output just without the "ugly" backtrace and error.
The endpoint hit here specifically should be
https://registry.npmjs.org/typescript
, or its corresponding version with the private registry.To reproduce
It might be possible to reproduce this with a package that had versions completely unpublished, I'm not entirely sure to which degree that is possible with NPM.
The easiest way is likely to run it against a proxy where one has full control over the response. I'd imagine it should be easy to reproduce by just editing the response object in the code itself, even if that is not a "real world" reproduction of this bug.
If more detailed reproduction steps are necessary, please let me know. But I'd imagine this should be quite simple to fix if it is considered to be a bug with Yarn.
Environment
Additional context
No response
The text was updated successfully, but these errors were encountered: