All Versions
11
Latest Version
Avg Release Cycle
8 days
Latest Release
2115 days ago

Changelog History
Page 1

  • v6.2.0 Changes

    July 05, 2018

    ๐Ÿš€ This is a quick patch to the release to fix an issue that was preventing users
    from installing npm@next.

    • ๐Ÿšš ecdcbd745 #21129 Remove postinstall script that depended on source files, thus preventing npm@next from being installable from the registry. (@zkat)
  • v6.2.0-next.1 Changes

    July 05, 2018

    ๐Ÿš€ This is a quick patch to the release to fix an issue that was preventing users
    from installing npm@next.

    • ๐Ÿšš ecdcbd745 #21129 Remove postinstall script that depended on source files, thus preventing npm@next from being installable from the registry. (@zkat)
  • v6.2.0-next.0 Changes

    June 29, 2018

    ๐Ÿ†• NEW FEATURES

    • โšก๏ธ ce0793358 #20750 You can now disable the update notifier entirely by using --no-update-notifier or setting it in your config with npm config set update-notifier false. (@travi)
    • d2ad776f6 #20879 When npm run-script <script> fails due to a typo or missing script, npm will now do a "did you mean?..." for scripts that do exist. (@watilde)

    ๐Ÿ›  BUGFIXES

    • 8f033d72d #20948 Fix the regular expression matching in xcode_emulation in node-gyp to also handle version numbers with multiple-digit major versions which would otherwise break under use of XCode 10. (@Trott)
    • c8ba7573a Stop trying to hoist/dedupe bundles dependencies. (@iarna)
    • cd698f068 #20762 Add synopsis to brief help for npm audit and suppress trailing newline. (@wyardley)
    • 6808ee3bd #20881 Exclude /.github directory from npm tarball. (@styfle)
    • 177cbb476 #21105 Add suggestion to use a temporary cache instead of npm cache clear --force. (@karanjthakkar)

    ๐Ÿ“„ DOCS

    DEPENDENCY SHUFFLE!

    ๐Ÿšš We did some reshuffling and moving around of npm's own dependencies. This significantly reduces the total bundle size of the npm pack, from 8MB to 4.8MB for the distributed tarball! We also moved around what we actually commit to the repo as far as devDeps go.

    DEPENDENCIES

  • v6.1.0 Changes

    May 24, 2018

    ๐Ÿš€ Look at that! A feature bump! npm@6 was super-exciting not just because it used a bigger number than ever before, but also because it included a super shiny new command: npm audit. Well, we've kept working on it since then and have some really nice improvements for it. You can expect more of them, and the occasional fix, in the next few releases as more users start playing with it and we get more feedback about what y'all would like to see from something like this.

    I, for one, have started running it (and the new subcommand...) in all my projects, and it's one of those things that I don't know how I ever functioned -without- it! This will make a world of difference to so many people as far as making the npm ecosystem a higher-quality, safer commons for all of us.

    This is also a good time to remind y'all that we have a new RFCs repository, along with a new process for them. This repo is open to anyone's RFCs, and has already received some great ideas about where we can take the CLI (and, to a certain extent, the registry). It's a great place to get feedback, and completely replaces feature requests in the main repo, so we won't be accepting feature requests there at all anymore. Check it out if you have something you'd like to suggest, or if you want to keep track of what the future might look like!

    ๐Ÿ†• NEW FEATURE: npm audit fix

    ๐Ÿš€ This is the biggie with this release! npm audit fix does exactly what it says on the tin. It takes all the actionable reports from your npm audit and runs the installs automatically for you, so you don't have to try to do all that mechanical work yourself!

    ๐Ÿ”’ Note that by default, npm audit fix will stick to semver-compatible changes, so you should be able to safely run it on most projects and carry on with your day without having to track down what breaking changes were included. If you want your (toplevel) dependencies to accept semver-major bumps as well, you can use npm audit fix --force and it'll toss those in, as well. Since it's running the npm installer under the hood, it also supports --production and --only=dev flags, as well as things like --dry-run, --json, and --package-lock-only, if you want more control over what it does.

    ๐Ÿ‘€ Give it a whirl and tell us what you think! See npm help audit for full docs!

    • 3800a660d Add npm audit fix subcommand to automatically fix detected vulnerabilities. (@zkat)

    OTHER NEW audit FEATURES

    • ๐Ÿ–จ 1854b1c7f #20568 Add support for npm audit --json to print the report in JSON format. (@finnp)
    • ๐Ÿ“ฆ 85b86169d #20570 Include number of audited packages in npm install summary output. (@zkat)
    • ๐Ÿ’… 957cbe275 [email protected]: Overhaul audit install and detail output format. The new format is terser and fits more closely into the visual style of the CLI, while still providing you with the important bits of information you need. They also include a bit more detail on the footer about what actions you can take! (@zkat)

    ๐Ÿ†• NEW FEATURE: GIT DEPS AND npm init <pkg>!

    Another exciting change that came with npm@6 was the new npm init command that allows for community-authored generators. That means you can, for example, do npm init react-app and it'll one-off download, install, and run create-react-app for you, without requiring or keeping around any global installs. That is, it basically just calls out to npx.

    ๐Ÿ‘ The first version of this command only really supported registry dependencies, but now, @jdalton went ahead and extended this feature so you can use hosted git dependencies, and their shorthands.

    ๐Ÿ“ฆ So go ahead and do npm init facebook/create-react-app and it'll grab the package from the github repo now! Or you can use it with a private github repository to maintain your organizational scaffolding tools or whatnot. โœจ

    ๐Ÿ›  FIX WRITE AFTER END ERROR

    ๐Ÿ‘€ First introduced in 5.8.0, this finally puts to bed errors where you would occasionally see Error: write after end at MiniPass.write.

    DETECT CHANGES IN GIT SPECIFIERS

    • โšก๏ธ 0e1726c03 We can now determine if the commitid of a git dependency in the lockfile is derived from the specifier in the package.json and if it isn't we now trigger an update for it. (@iarna)

    ๐Ÿ›  OTHER BUGFIXES

    • โšก๏ธ 442d2484f 2f0c88351 631d30a34 When requesting the update of a direct dependency that was also a transitive dependency to a version incompatible with the transitive requirement and you had a lock-file but did not have a node_modules folder then npm would fail to provide a new copy of the transitive dependency, resulting in an invalid lock-file that could not self heal. (@iarna)
    • be5dd0f49 #20715 Cleanup output of npm ci summary report. (@legodude17)
    • โœ… 98ffe4adb Node.js now has a test that scans for things that look like conflict markers in source code. This was triggering false positives on a fixture in a test of npm's ability to heal lockfiles with conflicts in them. (@iarna)
    • a41c0393c #20538 Make the new npm view work when the license field is an object instead of a string. (@zkat)
    • ๐Ÿณ eb7522073 #20582 Add support for environments (like Docker) where the expected binary for opening external URLs is not available. (@bcoe)
    • โšก๏ธ 212266529 #20536 Fix a spurious colon in the new update notifier message and add support for the npm canary. (@zkat)
    • ๐Ÿ“ฆ 5ee1384d0 #20597 Infer a version range when a package.json has a dist-tag instead of a version range in one of its dependency specs. Previously, this would cause dependencies to be flagged as invalid. (@zkat)
    • 4fa68ae41 #20585 Make sure scoped bundled deps are shown in the new publish preview, too. (@zkat)
    • ๐Ÿ“‡ 1f3ee6b7e [email protected]: Stop dropping size from metadata on npm cache verify. (@jfmartinez)
    • 91ef93691 #20513 Fix nested command aliases. (@mmermerkaya)
    • ๐Ÿ 18b2b3cf7 [email protected]: Make sure different versions of the Path env var on Windows all get node_modules/.bin prepended when running lifecycle scripts. (@laggingreflex)

    ๐Ÿ“š DOCUMENTATION

    DEPENDENCY BUMPS

  • v6.1.0-next.0 Changes

    May 17, 2018

    ๐Ÿš€ This release became 6.1.0

  • v6.0.1 Changes

    May 10, 2018

    ๐Ÿ“ฆ CTRL-C OUT DURING PACKAGE EXTRACTION AS MUCH AS YOU WANT!

    SHRONKWRAPS AND LACKFILES

    ๐Ÿ”’ If a published modules had legacy npm-shrinkwrap.json we were saving ordinary registry dependencies (name@version) to your package-lock.json as https:// URLs instead of versions.

    • ๐Ÿ”’ 89102c0d9 When saving the lock-file compute how the dependency is being required instead of using _resolved in the package.json. This fixes the bug that was converting registry dependencies into https:// dependencies. (@iarna)
    • ๐Ÿ”’ 676f1239a When encountering a https:// URL in our lockfiles that point at our default registry, extract the version and use them as registry dependencies. This lets us heal package-lock.json files produced by 6.0.0 (@iarna)

    AUDIT AUDIT EVERYWHERE

    You can't use it quite yet, but we do have a few last moment patches to npm audit to make it even better when it is turned on!

    • b2e4f48f5 Make sure we hide stream errors on background audit submissions. Previously some classes of error could end up being displayed (harmlessly) during installs. (@iarna)
    • 1fe0c7fea Include session and scope in requests (as we do in other requests to the registry). (@iarna)
    • โœ… d04656461 Exit with non-zero status when vulnerabilities are found. So you can have npm audit as a test or prepublish step! (@iarna)
    • fcdbcbacc Verify lockfile integrity before running. You'd get an error either way, but this way it's faster and can give you more concrete instructions on how to fix it. (@iarna)
    • 2ac8edd42 Refuse to run in global mode. Audits require a lockfile and globals don't have one. Yet. (@iarna)
    • โฑ 3dcc240db Timeout audit requests eventually. (@iarna)

    Looking forward

    We're still a way from having node@11, so now's a good time to ensure we don't warn about being used with it.

    ๐Ÿ“š DOCUMENTATION IMPROVEMENTS

    โšก๏ธ DEPENDENCY UPDATES

  • v6.0.1-next.0 Changes

    May 04, 2018

    ๐Ÿ“ฆ CTRL-C OUT DURING PACKAGE EXTRACTION AS MUCH AS YOU WANT!

    SHRONKWRAPS AND LACKFILES

    ๐Ÿ”’ If a published modules had legacy npm-shrinkwrap.json we were saving ordinary registry dependencies (name@version) to your package-lock.json as https:// URLs instead of versions.

    • ๐Ÿ”’ 89102c0d9 When saving the lock-file compute how the dependency is being required instead of using _resolved in the package.json. This fixes the bug that was converting registry dependencies into https:// dependencies. (@iarna)
    • ๐Ÿ”’ 676f1239a When encountering a https:// URL in our lockfiles that point at our default registry, extract the version and use them as registry dependencies. This lets us heal package-lock.json files produced by 6.0.0 (@iarna)

    AUDIT AUDIT EVERYWHERE

    You can't use it quite yet, but we do have a few last moment patches to npm audit to make it even better when it is turned on!

    • b2e4f48f5 Make sure we hide stream errors on background audit submissions. Previously some classes of error could end up being displayed (harmlessly) during installs. (@iarna)
    • 1fe0c7fea Include session and scope in requests (as we do in other requests to the registry). (@iarna)
    • โœ… d04656461 Exit with non-zero status when vulnerabilities are found. So you can have npm audit as a test or prepublish step! (@iarna)
    • fcdbcbacc Verify lockfile integrity before running. You'd get an error either way, but this way it's faster and can give you more concrete instructions on how to fix it. (@iarna)
    • 2ac8edd42 Refuse to run in global mode. Audits require a lockfile and globals don't have one. Yet. (@iarna)

    ๐Ÿ“š DOCUMENTATION IMPROVEMENTS

    โšก๏ธ DEPENDENCY UPDATES

  • v6.0.0 Changes

    May 04, 2018

    ๐Ÿš€ This release contains:

    v6.0.0.next-1

    ๐Ÿš€ There's two major features included with this release, along with a few miscellaneous fixes and changes.

    EXTENDED npm init SCAFFOLDING

    Thanks to the wonderful efforts of @jdalton of lodash fame, npm init can now be used to invoke custom scaffolding tools!

    ๐Ÿ“ฆ You can now do things like npm init react-app or npm init esm to scaffold an npm package by running create-react-app and create-esm, respectively. This also adds an npm create alias, to correspond to Yarn's yarn create feature, which
    inspired this.

    DEPENDENCY AUDITING

    ๐Ÿ”’ This version of npm adds a new command, npm audit, which will run a security audit of your project's dependency tree and notify you about any actions you may need to take.

    The registry-side services required for this command to work will be available on the main npm registry in the coming weeks. Until then, you won't get much out of trying to use this on the CLI.

    ๐Ÿš‘ As part of this change, the npm CLI now sends scrubbed and cryptographically anonymized metadata about your dependency tree to your configured registry, to allow notifying you about the existence of critical security flaws. For details about how the CLI protects your privacy when it shares this metadata, see npm help audit, or read the docs for npm audit online. You can disable this altogether by doing npm config set audit false, but will no longer benefit from the service.

    ๐Ÿ”’ MORE package-lock.json FORMAT CHANGES?!

    • ๐Ÿ“‡ 820f74ae2 #20384 Add from field back into package-lock for git dependencies. This will give npm the information it needs to figure out whether git deps are valid, specially when running with legacy install metadata or in --package-lock-only mode when there's no node_modules. This should help remove a significant amount of git-related churn on the lock-file. (@zkat)

    ๐Ÿ›  BUGFIXES

    • ๐Ÿ”’ 9d5d0a18a #20358 npm install-test (aka npm it) will no longer generate package-lock.json when running with --no-package-lock or package-lock=false. (@raymondfeng)
    • ๐Ÿ”’ e4ed976e2 2facb35fb 9c1eb945b #20390 Fix a scenario where a git dependency had a comittish associated with it that was not a complete commitid. npm would never consider that entry in the package.json as matching the entry in the package-lock.json and this resulted in inappropriate pruning or reinstallation of git dependencies. This has been addressed in two ways, first, the addition of the from field as described in #20384 means we can exactly match the package.json. Second, when that's missing (when working with older package-lock.json files), we assume that the match is ok. (If it's not, we'll fix it up when a real installation is done.) (@iarna)

    DEPENDENCIES

    ๐Ÿ“„ DOCS

    v6.0.0-next.0

    ๐Ÿ†• NEW FEATURES

    ๐Ÿ› BUG FIXES

    685764308 Fix a bug where OTPs passed in via the commandline would have leading zeros deleted resulted in authentication failures. (@iarna)

    โช 8f3faa323 6800f76ff ec90c06c7 825b5d2c6 4785f13fb bd16485f5 Restore the ability to bundle dependencies that are uninstallable from the registry. This also eliminates needless registry lookups for bundled dependencies.

    ๐Ÿ›  Fixed a bug where attempting to install a dependency that is bundled inside another module without reinstalling that module would result in ENOENT errors. (@iarna)

    ๐Ÿ”’ 429498a8c #20029 Allow packages with non-registry specifiers to follow the fast path that the we use with the lock-file for registry specifiers. This will improve install time especially when operating only on the package-lock (--package-lock-only). (@zkat)

    ๐Ÿ›  Fix the a bug where npm i --only=prod could remove development dependencies from lock-file. (@iarna)

    โšก๏ธ 834b46ff4 #20122 Improve the update-notifier messaging (borrowing ideas from pnpm) and eliminate false positives. (@zkat)

    ๐Ÿ”’ f9de7ef3a #20154 Let version succeed when package-lock.json is gitignored. (@nwoltman)

    f8ec52073 #20212 Ensure that we only create an etc directory if we are actually going to write files to it. (@buddydvd)

    ๐Ÿ“š ab489b753 #20140 Note in documentation that package-lock.json version gets touched by npm version. (@srl295)

    857c2138d #20032 Fix bug where unauthenticated errors would get reported as both 404s and 401s, i.e. npm ERR! 404 Registry returned 401. In these cases the error message will now be much more informative. (@iarna)

    d2d290bca #20082 Allow optional @ prefix on scope with npm team commands for parity with other commands. (@bcoe)

    b5babf0a9 #19580 Improve messaging when two-factor authentication is required while publishing. (@jdeniau)

    ๐Ÿ”’ 471ee1c5b 0da38b7b4 Fix a bug where optional status of a dependency was not being saved to the package-lock on the initial install. (@iarna)

    ๐Ÿ”’ b3f98d8ba 9dea95e31 Ensure that --no-optional does not remove optional dependencies from the lock-file. (@iarna)

    MISCELLANEOUS

    • โœ… ec6b12099 Exclude all tests from the published version of npm itself. (@iarna)

    โšก๏ธ DEPENDENCY UPDATES

  • v6.0.0-next.2 Changes

    April 21, 2018

    ๐Ÿš€ This release became 6.0.0

  • v5.10.0 Changes

    May 11, 2018

    With this, likely the last release of the [email protected] series, we backport a number of features from 6.0.0. Contrary to Github at publication time, this is not the latest release. That honor belongs to 6.0.1, just below this. If you're using 6.0.1 there's nothing here you haven't seen before.

    EXTENDED npm init SCAFFOLDING

    Thanks to the wonderful efforts of @jdalton of lodash fame, npm init can now be used to invoke custom scaffolding tools!

    ๐Ÿ“ฆ You can now do things like npm init react-app or npm init esm to scaffold an npm package by running create-react-app and create-esm, respectively. This also adds an npm create alias, to correspond to Yarn's yarn create feature, which inspired this.

    DEPENDENCY AUDITING

    ๐Ÿ”’ This version of npm adds a new command, npm audit, which will run a security audit of your project's dependency tree and notify you about any actions you may need to take.

    The registry-side services required for this command to work will be available on the main npm registry in the coming weeks. Until then, you won't get much out of trying to use this on the CLI.

    ๐Ÿš‘ As part of this change, the npm CLI now sends scrubbed and cryptographically anonymized metadata about your dependency tree to your configured registry, to allow notifying you about the existence of critical security flaws. For details about how the CLI protects your privacy when it shares this metadata, see npm help audit, or read the docs for npm audit online. You can disable this altogether by doing npm config set audit false, but will no longer benefit from the service.

    ๐Ÿ“ฆ CTRL-C OUT DURING PACKAGE EXTRACTION AS MUCH AS YOU WANT!

    SHRONKWRAPS AND LACKFILES

    ๐Ÿ”’ If a published modules had legacy npm-shrinkwrap.json we were saving ordinary registry dependencies (name@version) to your package-lock.json as https:// URLs instead of versions.

    • ๐Ÿ”’ 36f998411 When saving the lock-file compute how the dependency is being required instead of using _resolved in the package.json. This fixes the bug that was converting registry dependencies into https:// dependencies. (@iarna)
    • ๐Ÿ”’ 113e1a3af When encountering a https:// URL in our lockfiles that point at our default registry, extract the version and use them as registry dependencies. This lets us heal package-lock.json files produced by 6.0.0 (@iarna)

    ๐Ÿ”’ MORE package-lock.json FORMAT CHANGES?!

    • ๐Ÿ“‡ 074502916 #20384 Add from field back into package-lock for git dependencies. This will give npm the information it needs to figure out whether git deps are valid, specially when running with legacy install metadata or in --package-lock-only mode when there's no node_modules. This should help remove a significant amount of git-related churn on the lock-file. (@zkat)

    ๐Ÿ“š DOCUMENTATION IMPROVEMENTS

    ๐Ÿ›  BUGFIXES

    • ๐Ÿ”’ 1b535cb9d #20358 npm install-test (aka npm it) will no longer generate package-lock.json when running with --no-package-lock or package-lock=false. (@raymondfeng)
    • ๐Ÿ”’ 268f7ac50 5f84ebdb6 c12e61431 #20390 Fix a scenario where a git dependency had a comittish associated with it that was not a complete commitid. npm would never consider that entry in the package.json as matching the entry in the package-lock.json and this resulted in inappropriate pruning or reinstallation of git dependencies. This has been addressed in two ways, first, the addition of the from field as described in #20384 means we can exactly match the package.json. Second, when that's missing (when working with older package-lock.json files), we assume that the match is ok. (If it's not, we'll fix it up when a real installation is done.) (@iarna)

    ๐Ÿ“„ DOCS

    โšก๏ธ DEPENDENCY UPDATES