Skip to content

chore(deps): update dependency npm-check-updates to v16 #98

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 24, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
npm-check-updates 15.3.4 -> 16.14.14 age adoption passing confidence

Release Notes

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

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

v16.6.2

Compare Source

v16.6.1

Compare Source

v16.6.0

Compare Source

v16.5.6

Compare Source

v16.5.5

Compare Source

v16.5.4

Compare Source

v16.5.3

Compare Source

v16.5.2

Compare Source

v16.5.1

Compare Source

v16.5.0

Compare Source

v16.4.3

Compare Source

v16.4.2

Compare Source

v16.4.1

Compare Source

v16.4.0

Compare Source

Feature

Added --cacheClear option for—you guessed it—clearing the cache 🫥.

This brings the suite of cache-related options to:

  • --cache : Cache versions to the cache file.
  • --cacheClear : Clear the default cache, or the cache file specified by --cacheFile.
  • --cacheExpiration <min> : Cache expiration in minutes (default: 10).
  • --cacheFile <path> : Filepath for the cache file (default: "~/.ncu-cache.json").

Thanks to @​ly3xqhl8g9 whose code is gratefully more lucid than his username.

v16.3.25

Compare Source

v16.3.24

Compare Source

v16.3.23

Compare Source

v16.3.22

Compare Source

v16.3.21

Compare Source

v16.3.20

Compare Source

v16.3.19

Compare Source

v16.3.18

Compare Source

v16.3.17

Compare Source

v16.3.16

Compare Source

v16.3.15

Compare Source

v16.3.14

Compare Source

v16.3.13

Compare Source

v16.3.12

Compare Source

v16.3.11

Compare Source

v16.3.10

Compare Source

v16.3.9

Compare Source

v16.3.8

Compare Source

v16.3.7

Compare Source

v16.3.6

Compare Source

v16.3.5

Compare Source

v16.3.4

Compare Source

v16.3.3

Compare Source

v16.3.2

Compare Source

v16.3.1

Compare Source

v16.3.0

Compare Source

Feature

  • Added workspace support! 🚢

Upgrade all workspaces:

ncu --workspaces
ncu -ws

Upgrade a single workspace:

ncu --workspace a
ncu -w a

Upgrade more than one workspace:

ncu --workspace a --workspace b
ncu -w a -w b

Upgrade all workspaces AND the root project:

ncu --workspaces --root

Upgrade a single workspace AND the root project:

ncu --workspace a --root

Notes

  • If workspaces or --workspace is run in --interactive mode, ncu will prompt to npm install once in the root project rather than separately in each workspace (#​1182).
  • Running --deep will not trigger workspace support.

v16.2.1

Compare Source

v16.2.0

Compare Source

v16.1.3

Compare Source

v16.1.2

Compare Source

v16.1.1

Compare Source

v16.1.0

Compare Source

v16.0.6

Compare Source

v16.0.5

Compare Source

v16.0.4

Compare Source

v16.0.3

Compare Source

v16.0.2

Compare Source

v16.0.1

Compare Source

v16.0.0

Compare Source

Breaking
  • Automatic detection of package data on stdin has been removed. This feature was deprecated in v14.0.0. Add --stdin for old behavior.
  • Wild card filters now apply to scoped packages. Previously, ncu -f '*vite*' would not include @vitejs/plugin-react. Now, filters will match any part of the package name, including the scope. Use a more specific glob or regex expression for old behavior.

raineorshine/npm-check-updates@v15.3.4...v16.0.0


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 force-pushed the renovate/npm-check-updates-16.x branch 3 times, most recently from e570656 to 55e631e Compare July 29, 2022 14:36
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 2 times, most recently from 1e965b1 to a53cdea Compare August 1, 2022 18:46
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from a53cdea to ed2a3d3 Compare August 26, 2022 15:53
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 3 times, most recently from a392260 to 13df29e Compare September 10, 2022 22:48
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 2 times, most recently from b276c26 to 328c694 Compare September 19, 2022 23:00
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 2 times, most recently from f04dd05 to 8e75385 Compare September 23, 2022 22:15
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 8e75385 to 9f0d2ee Compare November 20, 2022 14:39
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 9f0d2ee to 9394d8c Compare April 3, 2023 16:11
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 9394d8c to 782e285 Compare April 17, 2023 12:26
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 782e285 to d8d2e0d Compare May 28, 2023 11:37
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from d8d2e0d to 2a32990 Compare June 24, 2023 00:33
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 2a32990 to a57fe0f Compare July 7, 2023 01:02
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from a57fe0f to e68cff4 Compare July 16, 2023 22:45
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from e68cff4 to 3c17d69 Compare July 25, 2023 21:40
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 3 times, most recently from 94e6e67 to 31a1bde Compare August 12, 2023 22:03
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 6 times, most recently from 4c15131 to 6f2370e Compare August 23, 2023 13:43
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 6f2370e to 8efbb26 Compare August 28, 2023 16:38
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 4 times, most recently from e753131 to 52eee6a Compare September 13, 2023 17:00
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 2 times, most recently from 5241519 to 8fdb31b Compare September 17, 2023 15:36
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 8fdb31b to db79a1a Compare October 5, 2023 01:44
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from db79a1a to 09acff2 Compare October 12, 2023 16:16
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 2 times, most recently from f545239 to 97e65af Compare November 19, 2023 22:51
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 97e65af to c8f4622 Compare December 13, 2023 18:04
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from c8f4622 to 4fea4d2 Compare January 25, 2024 23:50
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 4fea4d2 to 6c962fe Compare January 26, 2024 20:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants