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.20 #458

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 14, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
npm-check-updates 16.3.25 -> 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

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.


Configuration

📅 Schedule: Branch creation - "every weekday except on Monday,every weekend,before 5pm on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

@github-actions
Copy link

github-actions bot commented Nov 14, 2022

Terraform Format and Style 🖌success

Terraform Initialization ⚙️success

Terraform Plan 📖failure

Show Plan
terraform
module.thadmin_routing.module.acm.aws_acm_certificate.this: Refreshing state... [id=arn:aws:acm:us-east-1:627002765486:certificate/565d3a00-d047-48f2-956a-aed08dd6956b]
module.thadmin_routing.module.cloudfront.aws_cloudfront_origin_access_identity.this["s3_bucket"]: Refreshing state... [id=E3JOC36ODMBL65]
module.thadmin_hosting.aws_s3_bucket.this: Refreshing state... [id=thalia-thadmin-staging]
module.thadmin_routing.module.acm.aws_route53_record.validation["thadmin-staging.technicie.nl"]: Refreshing state... [id=Z3I4ZHBBD5NSHU__f4c1968cf0da5157d0f46ed63ecf426e.thadmin-staging.technicie.nl._CNAME]
module.thadmin_routing.module.acm.aws_acm_certificate_validation.this: Refreshing state... [id=2022-03-15 04:55:50.004 +0000 UTC]
module.thadmin_hosting.aws_s3_bucket_acl.this: Refreshing state... [id=thalia-thadmin-staging,private]
module.thadmin_hosting.aws_s3_bucket_cors_configuration.this: Refreshing state... [id=thalia-thadmin-staging]
module.thadmin_routing.aws_s3_bucket_policy.bucket_policy: Refreshing state... [id=thalia-thadmin-staging]
module.thadmin_routing.module.cloudfront.aws_cloudfront_distribution.this[0]: Refreshing state... [id=E2ZP8HCBLISQFN]
module.thadmin_routing.aws_route53_record.api: Refreshing state... [id=Z3I4ZHBBD5NSHU_thadmin-staging_A]

Warning: Value for undeclared variable

The root module does not declare a variable named "aws_profile" but a value
was found in file "terraform.tfvars". To use this value, add a "variable"
block to the configuration.

Using a variables file to set an undeclared variable is deprecated and will
become an error in a future release. If you wish to provide certain "global"
settings to all configurations in your organization, use TF_VAR_...
environment variables to set these instead.

@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 6 times, most recently from 0496c4e to adef6d3 Compare November 22, 2022 12:15
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.4.1 Update dependency npm-check-updates to v16.4.2 Nov 22, 2022
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 2 times, most recently from db450a6 to e66809e Compare November 22, 2022 23:04
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.4.2 Update dependency npm-check-updates to v16.4.3 Nov 22, 2022
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 5 times, most recently from 1d6201f to 2fb2626 Compare November 29, 2022 17:16
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 2 times, most recently from 812bfcf to d3f16ee Compare December 3, 2022 02:55
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.4.3 Update dependency npm-check-updates to v16.5.0 Dec 7, 2022
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 2 times, most recently from 91826aa to e222a23 Compare December 7, 2022 19:13
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.5.0 Update dependency npm-check-updates to v16.5.1 Dec 7, 2022
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 3 times, most recently from 7cd0255 to a99f8db Compare December 8, 2022 07:14
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.5.1 Update dependency npm-check-updates to v16.5.3 Dec 9, 2022
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 2 times, most recently from 2f0e23a to effff31 Compare December 9, 2022 18:38
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.5.3 Update dependency npm-check-updates to v16.5.5 Dec 9, 2022
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from effff31 to f387af6 Compare December 10, 2022 03:05
@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 12 times, most recently from e67d759 to 3464a74 Compare December 30, 2023 19:23
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 3464a74 to 199b87e Compare January 25, 2024 23:25
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.12 Update dependency npm-check-updates to v16.14.13 Jan 25, 2024
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 199b87e to 7a5b697 Compare January 26, 2024 17:27
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.13 Update dependency npm-check-updates to v16.14.14 Jan 26, 2024
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.14 Update dependency npm-check-updates to v16.14.15 Feb 10, 2024
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 7a5b697 to 6edc73f Compare February 10, 2024 14:08
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 6edc73f to 9688b85 Compare February 21, 2024 00:14
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 9688b85 to d3f6a11 Compare March 14, 2024 21:25
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.15 Update dependency npm-check-updates to v16.14.16 Mar 14, 2024
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from d3f6a11 to 57c9f8a Compare March 15, 2024 21:29
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.16 Update dependency npm-check-updates to v16.14.17 Mar 15, 2024
@renovate renovate bot enabled auto-merge (rebase) March 20, 2024 14:09
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 57c9f8a to f06fba3 Compare March 25, 2024 16:37
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.17 Update dependency npm-check-updates to v16.14.18 Mar 25, 2024
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from f06fba3 to 79feacf Compare April 25, 2024 16:16
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.14.18 Update dependency 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
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants