Skip to content

Releases: raineorshine/npm-check-updates

v2.10.5

03 Apr 18:16

Choose a tag to compare

PATCH: Allow multiple instances of ncu to be run programmatically.

PR #336, fixes #328.

v2.10.4

22 Mar 02:24

Choose a tag to compare

Fixes #329 with PR #332.

v2.3.2

13 Oct 18:41

Choose a tag to compare

Fix wording in update message to be package manager agnostics (#145).

v2.3.1

13 Oct 18:20

Choose a tag to compare

Do not crash when installed package is undefined (#148).

v2.3.0

03 Oct 19:05

Choose a tag to compare

Added bower support (#43).

v2.2.1

09 Sep 15:39

Choose a tag to compare

Fixed #128

v2.2.0

14 Aug 17:52

Choose a tag to compare

  • Add --packageFile option to specify alternative package.json

v2.1.0

14 Aug 17:56

Choose a tag to compare

  • Add -o/--optional to check only optionalDependencies

v2.0.0

14 Aug 17:56

Choose a tag to compare

v2 has a few important differences from v1:

  • Newer published versions that satisfy the specified range are not upgraded by default (e.g. 1.0.0 to 1.1.0). This change was made because npm update handles upgrades within the satisfied range just fine, and npm-check-updates is primarily intended to provide functionality not otherwise provided by npm itself. These satisfied dependencies will still be shown when you run npm-check-updates, albeit with a short explanation. For the old behavior, add the -ua/--upgradeAll option.
  • The command-line argument now specifies a package name filter (e.g. ncu /^gulp-/). For the old behavior (specifying an alternative package.json), pipe the package.json through stdin.
  • Use the easier-to-type ncu instead of npm-check-updates. npm-check-updates is preserved for backwards-compatibility.

Changelog

  • Allow packageData to be specified as an option
  • Colored table output
  • Add -a/--upgradeAll
  • Add -e/--error-level option
  • Add -j/--json and --jsonFlat flags for json output
  • Add -r/--registry option for specifying third-party npm registry
  • Add -t/--greatest option to search for the highest versions instead of the default latest stable versions.
  • Remove -f/--filter option and move to command-line argument
  • Replace < and <= with ^
  • Automatically look for the closest descendant package.json if not found in current directory
  • Add ncu alias
  • Export functionality to allow for programmatic use
  • Bug fixes and refactoring
  • Full unit test coverage!

v1.5.1

14 Aug 17:55

Choose a tag to compare

  • Fix bug where package names got truncated (grunt-concurrent -> grunt)