Skip to content
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

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 23, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
npm-check-updates 16.6.2 -> 16.14.20 age adoption passing confidence

Release Notes

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

v16.14.20

Compare Source

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

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 has been generated by Mend Renovate. View repository job log here.

@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 2 times, most recently from 2a96ed3 to dc1ac51 Compare September 17, 2023 16:33
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.3 build(deps-dev): bump npm-check-updates to v16.14.4 Sep 17, 2023
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.4 build(deps-dev): bump npm-check-updates to v16.14.5 Oct 4, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from dc1ac51 to 55034b5 Compare October 4, 2023 23:32
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 55034b5 to db58983 Compare October 12, 2023 15:11
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.5 build(deps-dev): bump npm-check-updates to v16.14.6 Oct 12, 2023
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.6 build(deps-dev): bump npm-check-updates to v16.14.7 Nov 19, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from db58983 to a259769 Compare November 19, 2023 18:52
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.7 build(deps-dev): bump npm-check-updates to v16.14.10 Nov 19, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from a259769 to 5e796c8 Compare November 19, 2023 21:28
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.10 build(deps-dev): bump npm-check-updates to v16.14.11 Nov 20, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 5e796c8 to 33552d8 Compare November 20, 2023 01:45
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 33552d8 to 864bbc3 Compare December 13, 2023 18:18
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.11 build(deps-dev): bump npm-check-updates to v16.14.12 Dec 13, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 864bbc3 to b0655a8 Compare January 25, 2024 23:30
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.12 build(deps-dev): bump npm-check-updates to v16.14.13 Jan 25, 2024
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.13 build(deps-dev): bump npm-check-updates to v16.14.14 Jan 26, 2024
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from b0655a8 to 876909a Compare January 26, 2024 18:59
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 876909a to 656553a Compare February 10, 2024 15:42
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.14 build(deps-dev): bump npm-check-updates to v16.14.15 Feb 10, 2024
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 656553a to d46a19e Compare March 14, 2024 20:19
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.15 build(deps-dev): bump npm-check-updates to v16.14.16 Mar 14, 2024
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from d46a19e to 2448c80 Compare March 15, 2024 22:53
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.16 build(deps-dev): bump npm-check-updates to v16.14.17 Mar 15, 2024
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 2448c80 to 3d7cdba Compare March 25, 2024 17:07
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.17 build(deps-dev): bump npm-check-updates to v16.14.18 Mar 25, 2024
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 3d7cdba to aa3b155 Compare April 25, 2024 17:12
@renovate renovate bot changed the title build(deps-dev): bump npm-check-updates to v16.14.18 build(deps-dev): bump npm-check-updates to v16.14.20 Apr 25, 2024
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.

None yet

0 participants