Skip to content

chore(deps-dev): bump npm-check-updates from 16.6.2 to 16.13.3#183

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-check-updates-16.13.3
Closed

chore(deps-dev): bump npm-check-updates from 16.6.2 to 16.13.3#183
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-check-updates-16.13.3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 11, 2023

Copy link
Copy Markdown
Contributor

Bumps npm-check-updates from 16.6.2 to 16.13.3.

Release notes

Sourced from npm-check-updates's releases.

v16.13.0

Feature

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

Usage:

ncu --install [value]

Default: prompt

Control the auto-install behavior.

v16.10.0

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!

... (truncated)

Commits
  • c686244 16.13.3
  • 9d117b3 fix #1325 - setting errorLevel in workspaces doesn't work as expected (#1326)
  • 7b2e1a0 16.13.2
  • b7fec80 fix: npm alias parsing with complex version strings (#1319)
  • 1a5b0d6 Wrap workspaces tests in describe block.
  • 46b79c7 Fix merge pnpm workspace config test.
  • 5591132 install test: stripAnsi
  • e3b9e73 Lock typescript and typescript-json-schema versions.
  • e13e974 16.13.1
  • bc695c9 autoinstall: Print message to indicate installation in progress (#1316).
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [npm-check-updates](https://github.com/raineorshine/npm-check-updates) from 16.6.2 to 16.13.3.
- [Release notes](https://github.com/raineorshine/npm-check-updates/releases)
- [Changelog](https://github.com/raineorshine/npm-check-updates/blob/main/CHANGELOG.md)
- [Commits](raineorshine/npm-check-updates@v16.6.2...v16.13.3)

---
updated-dependencies:
- dependency-name: npm-check-updates
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Sep 11, 2023
@dependabot @github

dependabot Bot commented on behalf of github Sep 18, 2023

Copy link
Copy Markdown
Contributor Author

Superseded by #184.

@dependabot dependabot Bot closed this Sep 18, 2023
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/npm-check-updates-16.13.3 branch September 18, 2023 22:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants