npm audit tells me to install version 3.0.0 while the latest version is 1.1.7
See original GitHub issueDescription
When I run npm audit
it tells me to install version 3.0.0 (Run npm install --save-dev @frctl/fractal@3.0.0 to resolve 8 vulnerabilities
), but that is actually a very old release (published on npm 3 years ago) with a faulty version number.
Steps to Reproduce
npm audit
Expected behavior (upgrade to latest version 1.1.7):
=== npm audit security report ===
# Run npm install --save-dev @frctl/fractal@1.1.7 to resolve 8 vulnerabilities
SEMVER WARNING: Recommended action is a potentially breaking change
Actual behavior:
=== npm audit security report ===
# Run npm install --save-dev @frctl/fractal@3.0.0 to resolve 8 vulnerabilities
SEMVER WARNING: Recommended action is a potentially breaking change
Reproduces how often:
Always
Versions
- What version of Fractal are you running? @frctl/fractal@1.1.7
- What version of Node.js are you running? (run
node -v
) v11.11.0
Additional Information
Version 3.0.0 was published between 0.2.2 and 0.3.0, so it obviously was a typo in the version number.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:4
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Npm audit fix --force react script downgrade automatically
I'm trying to update the libraries on my project but seems something wrong happens. This is the package.json { "name": "server", "version": "1.1 ......
Read more >npm-audit
The audit command submits a description of the dependencies configured in your project to your default registry and asks for a report of...
Read more >npm-audit-resolver/README.md - UNPKG
The CDN for npm-audit-resolver. ... 17, npm install -g npm-audit-resolver ... of it in version control and have a log of who decided...
Read more >chokidar 2 does not receive security updates since 2019 ...
Just use the following command to update the version of your npm: ... I'm trying to run npm install - g expo-cli on...
Read more >Error while updating the instance - Google Groups
npm WARN read-shrinkwrap This version of npm is compatible with ... 1.12.2 requires a peer of webpack@^1.0.0 || ^2.0.0 || ^3.0.0 but none...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Note that unpublishing packages on npm isn’t easy. Considering 3.0.0 was published a long time ago, it can’t be unpublished:
It gets worse: according to the docs, version 3.0.0 can’t be reused ever again:
Considering the popularity of
@frcl/fractal
, the npm staff might just make an exception and completely delete the version. Either way, I suppose an owner should get in touch with npm support and ask for help.If, for whatever reason, npm support refuses to unpublish the package, the package owner could deprecate the package so hopefully it won’t show up in an
npm audit
.Version 3.0.0 has been deprecated. NPM won’t remove released packages 😦