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

Update dependency npm-check-updates to v16.14.12 #273

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 17, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
npm-check-updates 16.6.0 -> 16.14.12 age adoption passing confidence

Release Notes

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

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

v16.6.2

Compare Source

v16.6.1

Compare Source


Configuration

📅 Schedule: Branch creation - "every weekend" in timezone America/New_York, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 requested a review from paulshryock as a code owner December 17, 2022 11:34
@renovate renovate bot enabled auto-merge (rebase) December 17, 2022 11:34
@netlify
Copy link

netlify bot commented Dec 17, 2022

Deploy Preview for releasebump ready!

Name Link
🔨 Latest commit 54a630c
🔍 Latest deploy log https://app.netlify.com/sites/releasebump/deploys/657a0ea587ff880008afb112
😎 Deploy Preview https://deploy-preview-273--releasebump.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

auto-merge was automatically disabled December 17, 2022 11:36

Base branch requires signed commits

@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from f6c48e7 to 4d8a460 Compare December 17, 2022 14:27
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.6.0 Update dependency npm-check-updates to v16.6.0 - autoclosed Dec 17, 2022
@renovate renovate bot closed this Dec 17, 2022
@renovate renovate bot deleted the renovate/npm-check-updates-16.x branch December 17, 2022 15:23
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.6.0 - autoclosed Update dependency npm-check-updates to v16.6.0 Dec 21, 2022
@renovate renovate bot reopened this Dec 21, 2022
@renovate renovate bot restored the renovate/npm-check-updates-16.x branch December 21, 2022 19:51
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.6.0 Update dependency npm-check-updates to v16.6.2 Dec 21, 2022
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 4d8a460 to 3b151ac Compare December 21, 2022 22:34
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 3b151ac to edad022 Compare January 5, 2023 07:45
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 2 times, most recently from ecf5fcb to 114092f Compare January 23, 2023 17:50
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.6.2 Update dependency npm-check-updates to v16.6.3 Jan 23, 2023
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.6.3 Update dependency npm-check-updates to v16.6.4 Feb 5, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 4305fe9 to 8999cc9 Compare February 6, 2023 20:11
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.6.4 Update dependency npm-check-updates to v16.6.5 Feb 6, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 8999cc9 to 08ecfee Compare February 9, 2023 19:09
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.6.5 Update dependency npm-check-updates to v16.7.2 Feb 9, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 08ecfee to bd24d16 Compare February 10, 2023 05:24
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.7.2 Update dependency npm-check-updates to v16.7.4 Feb 10, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from bd24d16 to 39693c6 Compare March 11, 2023 14:36
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.7.4 Update dependency npm-check-updates to v16.7.12 Mar 16, 2023
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.7.12 Update dependency npm-check-updates to v16.9.0 Mar 31, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 39693c6 to a80038d Compare March 31, 2023 17:53
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.12.2 Update dependency npm-check-updates to v16.12.3 Aug 22, 2023
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.12.3 Update dependency 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 a415975 to 2f23e0f Compare August 23, 2023 17:29
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.13.0 Update dependency npm-check-updates to v16.13.1 Aug 23, 2023
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.13.1 Update dependency npm-check-updates to v16.13.2 Aug 28, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 2f23e0f to 897f251 Compare August 28, 2023 19:44
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 897f251 to b456c86 Compare September 7, 2023 16:44
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.13.2 Update dependency npm-check-updates to v16.13.3 Sep 7, 2023
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.13.3 Update dependency npm-check-updates to v16.14.0 Sep 13, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from b456c86 to 2b212d3 Compare September 13, 2023 02:07
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.0 Update dependency npm-check-updates to v16.14.1 Sep 13, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 2b212d3 to dcb5506 Compare September 13, 2023 15:29
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.1 Update dependency npm-check-updates to v16.14.2 Sep 13, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from dcb5506 to ab675b7 Compare September 13, 2023 20:00
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.2 Update dependency npm-check-updates to v16.14.3 Sep 15, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from ab675b7 to fb68189 Compare September 15, 2023 19:12
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.3 Update dependency npm-check-updates to v16.14.4 Sep 17, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from fb68189 to a7c9afc Compare September 17, 2023 17:44
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.4 Update dependency npm-check-updates to v16.14.5 Oct 5, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from a7c9afc to 597fa5c Compare October 5, 2023 00:02
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.5 Update dependency npm-check-updates to v16.14.6 Oct 12, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 597fa5c to 71403b8 Compare October 12, 2023 13:42
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 71403b8 to d3b2528 Compare November 19, 2023 20:04
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.6 Update dependency npm-check-updates to v16.14.8 Nov 19, 2023
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.8 Update dependency npm-check-updates to v16.14.11 Nov 19, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from d3b2528 to b38677c Compare November 19, 2023 22:09
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.11 Update dependency npm-check-updates to v16.14.12 Dec 13, 2023
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from b38677c to 54a630c Compare December 13, 2023 20:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants