Skip to content

build(deps-dev): bump npm-check-updates to v16.14.20#382

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/npm-check-updates-16.x
Open

build(deps-dev): bump npm-check-updates to v16.14.20#382
renovate[bot] wants to merge 1 commit intomainfrom
renovate/npm-check-updates-16.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 23, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
npm-check-updates 16.6.216.14.20 age adoption passing confidence

Release Notes

raineorshine/npm-check-updates (npm-check-updates)

v16.14.20

Compare Source

Breaking
  • Require node >= 18.18.0
  • Deprecated versions are no longer excluded by default, as it requires fetching package info for every published version, significantly slowing down upgrades.
    • You can opt in with --no-deprecated in the CLI or deprecated: false in your ncurc config.
  • In workspaces mode, --root is now set by default (#​1353)
    • To not check the root package.json, use --no-root.
  • If you have a packageManager field in your package.json, it is now upgraded by default (#​1390)
    • Use --dep prod,dev,optional for the old behavior.

raineorshine/npm-check-updates@v16.14.20...v17.0.0

v16.14.19

Compare Source

v16.14.18

Compare Source

v16.14.17

Compare Source

v16.14.16

Compare Source

v16.14.15

Compare Source

v16.14.14

Compare Source

v16.14.13

Compare Source

v16.14.12

Compare Source

v16.14.11

Compare Source

v16.14.10

Compare Source

v16.14.9

Compare Source

v16.14.8

Compare Source

v16.14.7

Compare Source

v16.14.6

Compare Source

v16.14.5

Compare Source

v16.14.4

Compare Source

v16.14.3

Compare Source

v16.14.2

Compare Source

Breaking
  • Require node >= 18.18.0
  • Deprecated versions are no longer excluded by default, as it requires fetching package info for every published version, significantly slowing down upgrades.
    • You can opt in with --no-deprecated in the CLI or deprecated: false in your ncurc config.
  • In workspaces mode, --root is now set by default (#​1353)
    • To not check the root package.json, use --no-root.
  • If you have a packageManager field in your package.json, it is now upgraded by default (#​1390)
    • Use --dep prod,dev,optional for the old behavior.

raineorshine/npm-check-updates@v16.14.20...v17.0.0

v16.14.1

Compare Source

v16.14.0

Compare Source

bun

Feature
  • Added experimental support for bun package manager.
  • Automatically used if bun.lockb is detected.
  • Assistance needed to test it out on different platforms.
$ ncu --packageManager bun
$ ncu -p bun

Thanks to @​ImBIOS for the PR!

v16.13.4

Compare Source

v16.13.3

Compare Source

v16.13.2

Compare Source

v16.13.1

Compare Source

v16.13.0

Compare Source

Feature
  • Added --install option to control auto-install behavior.

Usage:

ncu --install [value]

Default: prompt

Control the auto-install behavior.

alwaysRuns your package manager's install command automatically after upgrading.
neverDoes not install and does not prompt.
promptShows a message after upgrading that recommends an install, but does not install. In interactive mode, prompts for install. (default)

v16.12.3

Compare Source

v16.12.2

Compare Source

v16.12.1

Compare Source

v16.12.0

Compare Source

v16.11.2

Compare Source

v16.11.1

Compare Source

v16.11.0

Compare Source

v16.10.19

Compare Source

v16.10.18

Compare Source

v16.10.17

Compare Source

v16.10.16

Compare Source

v16.10.15

Compare Source

v16.10.14

Compare Source

v16.10.13

Compare Source

v16.10.12

Compare Source

v16.10.11

Compare Source

v16.10.10

Compare Source

v16.10.9

Compare Source

v16.10.8

Compare Source

v16.10.7

Compare Source

v16.10.6

Compare Source

v16.10.5

Compare Source

v16.10.4

Compare Source

v16.10.3

Compare Source

v16.10.2

Compare Source

v16.10.1

Compare Source

v16.10.0

Compare Source

Feature

  • Added filterResults option to filter out upgrades based on a user provided function.

filterResults runs after new versions are fetched, in contrast to filter and filterVersion, which run before. This allows you to filter out upgrades with filterResults based on how the version has changed (e.g. a major version change).

Only available in .ncurc.js or when importing npm-check-updates as a module.

/** Filter out non-major version updates.
  @​param {string} packageName               The name of the dependency.
  @​param {string} currentVersion            Current version declaration (may be range).
  @​param {SemVer[]} currentVersionSemver    Current version declaration in semantic versioning format (may be range).
  @​param {string} upgradedVersion           Upgraded version.
  @​param {SemVer} upgradedVersionSemver     Upgraded version in semantic versioning format.
  @​returns {boolean}                        Return true if the upgrade should be kept, otherwise it will be ignored.
*/
filterResults: (packageName, {currentVersion, currentVersionSemver, upgradedVersion, upgradedVersionSemver}) => {
  const currentMajorVersion = currentVersionSemver?.[0]?.major
  const upgradedMajorVersion = upgradedVersionSemver?.major
  if (currentMajorVersion && upgradedMajorVersion) {
    return currentMajorVersion < upgradedMajorVersion
  }
  return true
}

For the SemVer type definition, see: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring

Thanks to mslowiak for this enhancement!

v16.9.0

Compare Source

v16.8.2

Compare Source

v16.8.1

Compare Source

v16.8.0

Compare Source

Feature

  • Added --format lines
$ ncu --format lines
@&#8203;ava/typescript@^4.0.0
ava@^5.2.0
eslint@^8.36.0
lerna@^6.5.1
typescript@^5.0.2

This is particularly useful for upgrading global modules:

npm install -g $(ncu -g --format lines)

Thanks to @​vanodevium for the PR!

v16.7.13

Compare Source

v16.7.12

Compare Source

v16.7.11

Compare Source

v16.7.10

Compare Source

v16.7.9

Compare Source

v16.7.8

Compare Source

v16.7.7

Compare Source

v16.7.6

Compare Source

v16.7.5

Compare Source

v16.7.4

Compare Source

v16.7.3

Compare Source

v16.7.2

Compare Source

v16.7.1

Compare Source

v16.7.0

Compare Source

v16.6.5

Compare Source

v16.6.4

Compare Source

v16.6.3

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added build dependencies Pull requests that update a dependency file deps-dev labels Jan 23, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 34bfaf0 to ec85daa Compare February 5, 2023 18:05
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.6.3 build(deps-dev): bump npm-check-updates to v16.6.4 Feb 5, 2023
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.6.4 build(deps-dev): bump npm-check-updates to v16.6.5 Feb 6, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from ec85daa to 9b22525 Compare February 6, 2023 18:28
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.6.5 build(deps-dev): bump npm-check-updates to v16.7.2 Feb 9, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 9b22525 to 2ce3326 Compare February 9, 2023 22:57
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.7.2 build(deps-dev): bump npm-check-updates to v16.7.4 Feb 10, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 2ce3326 to 43de21d Compare February 10, 2023 03:43
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 43de21d to d3ea174 Compare February 18, 2023 02:47
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.7.4 build(deps-dev): bump npm-check-updates to v16.7.5 Feb 18, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from d3ea174 to 08e418e Compare February 22, 2023 18:22
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.7.5 build(deps-dev): bump npm-check-updates to v16.7.7 Feb 22, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 08e418e to 25ee33e Compare February 22, 2023 23:11
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.7.7 build(deps-dev): bump npm-check-updates to v16.7.9 Feb 22, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 25ee33e to 3b239f5 Compare February 27, 2023 18:39
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.7.9 build(deps-dev): bump npm-check-updates to v16.7.10 Feb 27, 2023
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.7.10 build(deps-dev): bump npm-check-updates to v16.7.12 Mar 9, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 3b239f5 to 2f8c44a Compare March 9, 2023 15:36
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 2f8c44a to ca95ff1 Compare March 19, 2023 15:29
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.7.12 build(deps-dev): bump npm-check-updates to v16.7.13 Mar 19, 2023
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.7.13 build(deps-dev): bump npm-check-updates to v16.8.0 Mar 22, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from ca95ff1 to 8c14ce3 Compare March 22, 2023 22:33
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.8.0 build(deps-dev): bump npm-check-updates to v16.8.1 Mar 28, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 8c14ce3 to 7a1f9cc Compare March 28, 2023 21:52
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.8.1 build(deps-dev): bump npm-check-updates to v16.8.2 Mar 29, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 2 times, most recently from c64c431 to f35ffb2 Compare March 29, 2023 19:54
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from dd9fc61 to b34ad07 Compare April 11, 2023 20:32
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.10.7 build(deps-dev): bump npm-check-updates to v16.10.8 Apr 11, 2023
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.10.8 build(deps-dev): bump npm-check-updates to v16.10.12 May 28, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from b34ad07 to 2d5d383 Compare May 28, 2023 11:16
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.10.12 build(deps-dev): bump npm-check-updates to v16.10.13 Jun 24, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 2d5d383 to 907e378 Compare June 24, 2023 01:16
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.10.13 build(deps-dev): bump npm-check-updates to v16.10.15 Jul 7, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 907e378 to 0650bc1 Compare July 7, 2023 02:28
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.10.15 build(deps-dev): bump npm-check-updates to v16.10.16 Jul 17, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 0650bc1 to dcf13e7 Compare July 17, 2023 01:18
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.10.16 build(deps-dev): bump npm-check-updates to v16.10.17 Jul 25, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from dcf13e7 to 0cadd31 Compare July 25, 2023 22:22
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.10.17 build(deps-dev): bump npm-check-updates to v16.10.18 Aug 7, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 0cadd31 to e16ed4f Compare August 7, 2023 15:46
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.10.18 build(deps-dev): bump npm-check-updates to v16.10.19 Aug 12, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from e16ed4f to fb6586b Compare August 12, 2023 16:36
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.10.19 build(deps-dev): bump npm-check-updates to v16.11.0 Aug 12, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from fb6586b to cd53f79 Compare August 12, 2023 19:44
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.11.0 build(deps-dev): bump npm-check-updates to v16.11.1 Aug 12, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from cd53f79 to 6d9f58f Compare August 12, 2023 22:46
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.11.1 build(deps-dev): bump npm-check-updates to v16.11.2 Aug 16, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 2 times, most recently from 89d3920 to 4c3262d Compare August 17, 2023 16:29
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.11.2 build(deps-dev): bump npm-check-updates to v16.12.2 Aug 17, 2023
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.12.2 build(deps-dev): bump npm-check-updates to v16.12.3 Aug 22, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 4c3262d to 7452f96 Compare August 22, 2023 02:23
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.12.3 build(deps-dev): bump npm-check-updates to v16.13.0 Aug 22, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 2 times, most recently from 8a4e2b2 to 2c4993a Compare August 23, 2023 17:03
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

build dependencies Pull requests that update a dependency file deps-dev

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants