Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 14, 2022

This PR contains the following updates:

Package Change Age Confidence
npm-check-updates 16.3.2516.14.20 age confidence

Release Notes

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

v16.14.20

Compare Source

Breaking
  • Require node >= 18.18.0
  • 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)
    • Use --dep prod,dev,optional for the old behavior.

raineorshine/npm-check-updates@v16.14.20...v17.0.0

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

Breaking
  • Require node >= 18.18.0
  • 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)
    • Use --dep prod,dev,optional for the old behavior.

raineorshine/npm-check-updates@v16.14.20...v17.0.0

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 📖success

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]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-1125-2436.jpg"]: Refreshing state... [id=apple-splash-1125-2436.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-1668-2224.jpg"]: Refreshing state... [id=apple-splash-1668-2224.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-1242-2688.jpg"]: Refreshing state... [id=apple-splash-1242-2688.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-1170-2532.jpg"]: Refreshing state... [id=apple-splash-1170-2532.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-2532-1170.jpg"]: Refreshing state... [id=apple-splash-2532-1170.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-2208-1242.jpg"]: Refreshing state... [id=apple-splash-2208-1242.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["safari-pinned-tab.svg"]: Refreshing state... [id=safari-pinned-tab.svg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-1284-2778.jpg"]: Refreshing state... [id=apple-splash-1284-2778.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-2436-1125.jpg"]: Refreshing state... [id=apple-splash-2436-1125.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["mstile-70x70.png"]: Refreshing state... [id=mstile-70x70.png]
module.thadmin_hosting.aws_s3_object.code_build_object["js/chunk-vendors.cb611119.js.map"]: Refreshing state... [id=thalia-thadmin-staging/js/chunk-vendors.cb611119.js.map]
module.thadmin_hosting.aws_s3_object.code_build_object["mstile-150x150.png"]: Refreshing state... [id=mstile-150x150.png]
module.thadmin_hosting.aws_s3_object.code_build_object["js/app.45964e33.js"]: Refreshing state... [id=thalia-thadmin-staging/js/app.45964e33.js]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-1792-828.jpg"]: Refreshing state... [id=apple-splash-1792-828.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["android-chrome-512x512.png"]: Refreshing state... [id=android-chrome-512x512.png]
module.thadmin_hosting.aws_s3_object.code_build_object["index.html"]: Refreshing state... [id=index.html]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-2388-1668.jpg"]: Refreshing state... [id=apple-splash-2388-1668.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-2224-1668.jpg"]: Refreshing state... [id=apple-splash-2224-1668.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-2688-1242.jpg"]: Refreshing state... [id=apple-splash-2688-1242.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["site.webmanifest"]: Refreshing state... [id=site.webmanifest]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-640-1136.jpg"]: Refreshing state... [id=apple-splash-640-1136.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["img/anonymousUser.c7a94bce.jpg"]: Refreshing state... [id=img/anonymousUser.c7a94bce.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-750-1334.jpg"]: Refreshing state... [id=apple-splash-750-1334.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-1334-750.jpg"]: Refreshing state... [id=apple-splash-1334-750.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["js/app.45964e33.js.map"]: Refreshing state... [id=thalia-thadmin-staging/js/app.45964e33.js.map]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-1620-2160.jpg"]: Refreshing state... [id=apple-splash-1620-2160.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["css/app.3dadf1fd.css"]: Refreshing state... [id=css/app.3dadf1fd.css]
module.thadmin_hosting.aws_s3_object.code_build_object["js/chunk-vendors.cb611119.js"]: Refreshing state... [id=thalia-thadmin-staging/js/chunk-vendors.cb611119.js]
module.thadmin_hosting.aws_s3_object.code_build_object["img/backgroundImage.24f22a44.jpg"]: Refreshing state... [id=img/backgroundImage.24f22a44.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["mstile-310x150.png"]: Refreshing state... [id=mstile-310x150.png]
module.thadmin_hosting.aws_s3_object.code_build_object["mstile-310x310.png"]: Refreshing state... [id=mstile-310x310.png]
module.thadmin_hosting.aws_s3_object.code_build_object["favicon-16x16.png"]: Refreshing state... [id=favicon-16x16.png]
module.thadmin_hosting.aws_s3_object.code_build_object["favicon.png"]: Refreshing state... [id=favicon.png]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-2732-2048.jpg"]: Refreshing state... [id=apple-splash-2732-2048.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["js/499.1480f83d.js"]: Refreshing state... [id=thalia-thadmin-staging/js/499.1480f83d.js]
module.thadmin_hosting.aws_s3_object.code_build_object["mstile-144x144.png"]: Refreshing state... [id=mstile-144x144.png]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-1536-2048.jpg"]: Refreshing state... [id=apple-splash-1536-2048.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-touch-icon.png"]: Refreshing state... [id=apple-touch-icon.png]
module.thadmin_hosting.aws_s3_object.code_build_object["favicon.svg"]: Refreshing state... [id=favicon.svg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-1668-2388.jpg"]: Refreshing state... [id=apple-splash-1668-2388.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-2778-1284.jpg"]: Refreshing state... [id=apple-splash-2778-1284.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["favicon.ico"]: Refreshing state... [id=favicon.ico]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-1242-2208.jpg"]: Refreshing state... [id=apple-splash-1242-2208.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["js/499.1480f83d.js.map"]: Refreshing state... [id=thalia-thadmin-staging/js/499.1480f83d.js.map]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-1136-640.jpg"]: Refreshing state... [id=apple-splash-1136-640.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-828-1792.jpg"]: Refreshing state... [id=apple-splash-828-1792.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-2048-1536.jpg"]: Refreshing state... [id=apple-splash-2048-1536.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["css/chunk-vendors.bd40d1d7.css"]: Refreshing state... [id=thalia-thadmin-staging/css/chunk-vendors.bd40d1d7.css]
module.thadmin_hosting.aws_s3_object.code_build_object["favicon-32x32.png"]: Refreshing state... [id=favicon-32x32.png]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-2048-2732.jpg"]: Refreshing state... [id=apple-splash-2048-2732.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["browserconfig.xml"]: Refreshing state... [id=browserconfig.xml]
module.thadmin_hosting.aws_s3_object.code_build_object["apple-splash-2160-1620.jpg"]: Refreshing state... [id=apple-splash-2160-1620.jpg]
module.thadmin_hosting.aws_s3_object.code_build_object["android-chrome-192x192.png"]: Refreshing state... [id=android-chrome-192x192.png]

An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:

  • create
    ~ update in-place
  • destroy

Terraform will perform the following actions:

module.thadmin_hosting.aws_s3_object.code_build_object["img/backgroundImage.24f22a44.jpg"] will be updated in-place

~ resource "aws_s3_object" "code_build_object" {
~ etag = "407e69540c950ce3e893be2cbadd0f30-2" -> "5f59aad8b5eddf226c7e5a21939e4018"
id = "img/backgroundImage.24f22a44.jpg"
tags = {}
+ version_id = (known after apply)
# (12 unchanged attributes hidden)
}

module.thadmin_hosting.aws_s3_object.code_build_object["index.html"] will be updated in-place

~ resource "aws_s3_object" "code_build_object" {
~ etag = "2b2a2fe05a0600fac657c64f82b4d123" -> "5ad56a7b3a4ff99393cda2cfef39fe88"
id = "index.html"
tags = {}
+ version_id = (known after apply)
# (12 unchanged attributes hidden)
}

module.thadmin_hosting.aws_s3_object.code_build_object["js/app.0a29856e.js"] will be created

  • resource "aws_s3_object" "code_build_object" {
    • acl = (known after apply)
    • arn = (known after apply)
    • bucket = "thalia-thadmin-staging"
    • bucket_key_enabled = (known after apply)
    • checksum_crc32 = (known after apply)
    • checksum_crc32c = (known after apply)
    • checksum_crc64nvme = (known after apply)
    • checksum_sha1 = (known after apply)
    • checksum_sha256 = (known after apply)
    • content_type = "text/javascript"
    • etag = "e51a3d84d87524362ef4fe0f0d3e4c66"
    • force_destroy = false
    • id = (known after apply)
    • key = "js/app.0a29856e.js"
    • kms_key_id = (known after apply)
    • region = "eu-west-1"
    • server_side_encryption = (known after apply)
    • source = "/home/runner/work/thadmin/thadmin/infra/modules/hosting/../../..//dist/js/app.0a29856e.js"
    • storage_class = (known after apply)
    • tags_all = (known after apply)
    • version_id = (known after apply)
      }

module.thadmin_hosting.aws_s3_object.code_build_object["js/app.0a29856e.js.map"] will be created

  • resource "aws_s3_object" "code_build_object" {
    • acl = (known after apply)
    • arn = (known after apply)
    • bucket = "thalia-thadmin-staging"
    • bucket_key_enabled = (known after apply)
    • checksum_crc32 = (known after apply)
    • checksum_crc32c = (known after apply)
    • checksum_crc64nvme = (known after apply)
    • checksum_sha1 = (known after apply)
    • checksum_sha256 = (known after apply)
    • content_type = "application/octet-stream"
    • etag = "cfbd592b477e0f74880bc1af6243d78c"
    • force_destroy = false
    • id = (known after apply)
    • key = "js/app.0a29856e.js.map"
    • kms_key_id = (known after apply)
    • region = "eu-west-1"
    • server_side_encryption = (known after apply)
    • source = "/home/runner/work/thadmin/thadmin/infra/modules/hosting/../../..//dist/js/app.0a29856e.js.map"
    • storage_class = (known after apply)
    • tags_all = (known after apply)
    • version_id = (known after apply)
      }

module.thadmin_hosting.aws_s3_object.code_build_object["js/app.45964e33.js"] will be destroyed

  • resource "aws_s3_object" "code_build_object" {
    • arn = "arn:aws:s3:::thalia-thadmin-staging/js/app.45964e33.js" -> null
    • bucket = "thalia-thadmin-staging" -> null
    • bucket_key_enabled = false -> null
    • content_type = "text/javascript" -> null
    • etag = "4d2505a52648207191ffe826edff07ad" -> null
    • force_destroy = false -> null
    • id = "thalia-thadmin-staging/js/app.45964e33.js" -> null
    • key = "js/app.45964e33.js" -> null
    • metadata = {} -> null
    • region = "eu-west-1" -> null
    • server_side_encryption = "AES256" -> null
    • source = "/home/runner/work/thadmin/thadmin/infra/modules/hosting/../../..//dist/js/app.45964e33.js" -> null
    • storage_class = "STANDARD" -> null
    • tags = {} -> null
    • tags_all = {} -> null
      }

module.thadmin_hosting.aws_s3_object.code_build_object["js/app.45964e33.js.map"] will be destroyed

  • resource "aws_s3_object" "code_build_object" {
    • arn = "arn:aws:s3:::thalia-thadmin-staging/js/app.45964e33.js.map" -> null
    • bucket = "thalia-thadmin-staging" -> null
    • bucket_key_enabled = false -> null
    • content_type = "application/octet-stream" -> null
    • etag = "54ff5b954b6cd6411ae2f7bafe54debe" -> null
    • force_destroy = false -> null
    • id = "thalia-thadmin-staging/js/app.45964e33.js.map" -> null
    • key = "js/app.45964e33.js.map" -> null
    • metadata = {} -> null
    • region = "eu-west-1" -> null
    • server_side_encryption = "AES256" -> null
    • source = "/home/runner/work/thadmin/thadmin/infra/modules/hosting/../../..//dist/js/app.45964e33.js.map" -> null
    • storage_class = "STANDARD" -> null
    • tags = {} -> null
    • tags_all = {} -> null
      }

Plan: 2 to add, 2 to change, 2 to destroy.

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.


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.

@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 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
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 9 times, most recently from c07bc0c to 9164878 Compare March 6, 2025 21:36
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 5 times, most recently from f4371e9 to 97bd4d5 Compare July 7, 2025 21:58
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 5 times, most recently from 1e0820f to 1d5cf15 Compare August 12, 2025 20:51
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch 6 times, most recently from c3d9c70 to 1cb0565 Compare November 21, 2025 16:52
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 1cb0565 to 46289c9 Compare December 12, 2025 06:33
@renovate renovate bot force-pushed the renovate/npm-check-updates-16.x branch from 46289c9 to 656c1d9 Compare December 12, 2025 10:33
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.

1 participant