You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deprecated versions are no longer excluded by default, as it requires fetching package info for every published version, significantly slowing down upgrades.
You can opt in with --no-deprecated in the CLI or deprecated: false in your ncurc config.
In workspaces mode, --root is now set by default (#1353)
To not check the root package.json, use --no-root.
If you have a packageManager field in your package.json, it is now upgraded by default (#1390)
Deprecated versions are no longer excluded by default, as it requires fetching package info for every published version, significantly slowing down upgrades.
You can opt in with --no-deprecated in the CLI or deprecated: false in your ncurc config.
In workspaces mode, --root is now set by default (#1353)
To not check the root package.json, use --no-root.
If you have a packageManager field in your package.json, it is now upgraded by default (#1390)
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})=>{constcurrentMajorVersion=currentVersionSemver?.[0]?.majorconstupgradedMajorVersion=upgradedVersionSemver?.majorif(currentMajorVersion&&upgradedMajorVersion){returncurrentMajorVersion<upgradedMajorVersion}returntrue}
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
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.
Note: You didn't specify an "-out" parameter to save this plan, so Terraform
can't guarantee that exactly these actions will be performed if
"terraform apply" is subsequently run.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
16.3.25→16.14.20Release Notes
raineorshine/npm-check-updates (npm-check-updates)
v16.14.20Compare Source
Breaking
--no-deprecatedin the CLI ordeprecated: falsein yourncurcconfig.--rootis now set by default (#1353)--no-root.--dep prod,dev,optionalfor the old behavior.raineorshine/npm-check-updates@v16.14.20...v17.0.0
v16.14.19Compare Source
v16.14.18Compare Source
v16.14.17Compare Source
v16.14.16Compare Source
v16.14.15Compare Source
v16.14.14Compare Source
v16.14.13Compare Source
v16.14.12Compare Source
v16.14.11Compare Source
v16.14.10Compare Source
v16.14.9Compare Source
v16.14.8Compare Source
v16.14.7Compare Source
v16.14.6Compare Source
v16.14.5Compare Source
v16.14.4Compare Source
v16.14.3Compare Source
v16.14.2Compare Source
Breaking
--no-deprecatedin the CLI ordeprecated: falsein yourncurcconfig.--rootis now set by default (#1353)--no-root.--dep prod,dev,optionalfor the old behavior.raineorshine/npm-check-updates@v16.14.20...v17.0.0
v16.14.1Compare Source
v16.14.0Compare Source
Feature
bun.lockbis detected.Thanks to @ImBIOS for the PR!
v16.13.4Compare Source
v16.13.3Compare Source
v16.13.2Compare Source
v16.13.1Compare Source
v16.13.0Compare Source
Feature
--installoption to control auto-install behavior.Usage:
Default: prompt
Control the auto-install behavior.
v16.12.3Compare Source
v16.12.2Compare Source
v16.12.1Compare Source
v16.12.0Compare Source
v16.11.2Compare Source
v16.11.1Compare Source
v16.11.0Compare Source
v16.10.19Compare Source
v16.10.18Compare Source
v16.10.17Compare Source
v16.10.16Compare Source
v16.10.15Compare Source
v16.10.14Compare Source
v16.10.13Compare Source
v16.10.12Compare Source
v16.10.11Compare Source
v16.10.10Compare Source
v16.10.9Compare Source
v16.10.8Compare Source
v16.10.7Compare Source
v16.10.6Compare Source
v16.10.5Compare Source
v16.10.4Compare Source
v16.10.3Compare Source
v16.10.2Compare Source
v16.10.1Compare Source
v16.10.0Compare Source
Feature
filterResultsoption to filter out upgrades based on a user provided function.filterResultsruns after new versions are fetched, in contrast tofilterandfilterVersion, which run before. This allows you to filter out upgrades withfilterResultsbased 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.
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.0Compare Source
v16.8.2Compare Source
v16.8.1Compare Source
v16.8.0Compare Source
Feature
--format linesThis is particularly useful for upgrading global modules:
Thanks to @vanodevium for the PR!
v16.7.13Compare Source
v16.7.12Compare Source
v16.7.11Compare Source
v16.7.10Compare Source
v16.7.9Compare Source
v16.7.8Compare Source
v16.7.7Compare Source
v16.7.6Compare Source
v16.7.5Compare Source
v16.7.4Compare Source
v16.7.3Compare Source
v16.7.2Compare Source
v16.7.1Compare Source
v16.7.0Compare Source
v16.6.5Compare Source
v16.6.4Compare Source
v16.6.3Compare Source
v16.6.2Compare Source
v16.6.1Compare Source
v16.6.0Compare Source
v16.5.6Compare Source
v16.5.5Compare Source
v16.5.4Compare Source
v16.5.3Compare Source
v16.5.2Compare Source
v16.5.1Compare Source
v16.5.0Compare Source
v16.4.3Compare Source
v16.4.2Compare Source
v16.4.1Compare Source
v16.4.0Compare Source
Feature
Added
--cacheClearoption 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.
This PR was generated by Mend Renovate. View the repository job log.