Skip to content

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Apr 20, 2021

This PR contains the following updates:

Package Change Age Confidence
karma-coverage ~0.3.1 -> ~2.2.0 age confidence

Release Notes

karma-runner/karma-coverage (karma-coverage)

v2.2.1

Compare Source

Bug Fixes
  • exit code when reporter file is not provided (1388186)

v2.2.0

Compare Source

Features
  • update Istanbul packages (24aac11)

2.1.1 (2022-02-05)

Bug Fixes

v2.1.1

Compare Source

Features
  • update Istanbul packages (24aac11)

2.1.1 (2022-02-05)

Bug Fixes

v2.1.0

Compare Source

Features
  • update Istanbul packages (24aac11)

2.1.1 (2022-02-05)

Bug Fixes

v2.0.3

Compare Source

Bug Fixes
  • deps: update main and dev dependencies (c20d982)
Features
  • reporter: log coverage threshold as a warning fixed #​432 (a6c95d8)

2.0.3 (2020-07-24)

Bug Fixes
  • report: waiting promise resolve in onExist method fix #​418 (c93f061)

2.0.2 (2020-04-13)

Bug Fixes

2.0.1 (2019-08-20)

v2.0.2

Compare Source

Bug Fixes
  • deps: update main and dev dependencies (c20d982)
Features
  • reporter: log coverage threshold as a warning fixed #​432 (a6c95d8)

2.0.3 (2020-07-24)

Bug Fixes
  • report: waiting promise resolve in onExist method fix #​418 (c93f061)

2.0.2 (2020-04-13)

Bug Fixes

2.0.1 (2019-08-20)

v2.0.1

Compare Source

Bug Fixes
  • deps: update main and dev dependencies (c20d982)
Features
  • reporter: log coverage threshold as a warning fixed #​432 (a6c95d8)

2.0.3 (2020-07-24)

Bug Fixes
  • report: waiting promise resolve in onExist method fix #​418 (c93f061)

2.0.2 (2020-04-13)

Bug Fixes

2.0.1 (2019-08-20)

v2.0.0

Compare Source

Bug Fixes
  • deps: update main and dev dependencies (c20d982)
Features
  • reporter: log coverage threshold as a warning fixed #​432 (a6c95d8)

2.0.3 (2020-07-24)

Bug Fixes
  • report: waiting promise resolve in onExist method fix #​418 (c93f061)

2.0.2 (2020-04-13)

Bug Fixes

2.0.1 (2019-08-20)

v1.1.2

Compare Source

Bug Fixes
Chores
BREAKING CHANGES
  • deps: This set of changes may impact some use cases.

  • chore: Add Updated Istanbul Dependencies

The istanbul package is deprecated in favor several split packages that
control different aspects of how istanbul works. This commit adds the
recommended packages that will be used in future commits as
karma-coverage's usage of istanbul is updated to the latest api.

  • refactor(reporter): Follow new report API

This commit refactors the in memory report implementation to use the new
istanbul report API.

Report creation is removed from newer versions of the istanbul API, so
this commit adds a set of utility functions to wrap around the new API
and provide similar functionality as the old API. The top level export
uses the new utility function to register the in-memory report.

  • refactor(preprocessor): Switch to istanbul-lib-instrument

This commit updates the preprocessor to use istanbul-lib-instrument
instead of the deprecated istanbul package. The biggest change in this
refactor is using a callable function instead of a constructor when
creating instrumenters

The old istanbul package exposed the Instrumenter directly, allowing the
preprocessor to create an instance of it. istanbul-lib-instrument,
however, exposes a callable function that creates an Instrumenter.
This commit updates the preprocessor to follow this new pattern of using
a callable function. In order to ensure backwards compatibility, a
utility function is added to wrap constructors with a callable function
for creation automatically.

This change allows the following configuration for creating instrumenters:

  1. An object that contains an Instrumenter constructor
  2. An Instrumenter constructor itself
  3. A callable function that returns an Instrumenter instance.

This commit also uses the istanbul-lib-source-maps package to handle
storing source maps. A global source map store registers source maps so
they can be used later on in the reporter.

  • refactor(reporter): Switch to istanbul-lib-coverage

This commit updates the reporter by using the istanbul-lib-coverage
package api for handling coverage checking/management and the
istanbul-lib-report package api for handling reporting.

The new apis remove the need for collectors and remove the need to
handle disposing collectors.

  • refactor: Remove unused source cache utilities

This commit removes the source-cache-store and source-cache files as
they are no longer being used. The source-map-store and
istanbul-lib-source-maps are used instead, so these files are no longer
needed.

  • feat(util): Add Reset Functionality

This commit updates the report creator utility to allow resetting the
custom reporter map.

  • fix(preprocessor): Track Coverage Maps Properly

This commit updates the preprocessor to properly access file coverage
when storing it in the global coverage map (when includeAllSources is
true). The previous method did not work because the returned
instrumented code from the default istanbul instrumenter returns the
coverage map in a POJO object instead of JSON notation. This breaks the
coverage regex used to match and parse the coverage map.

The istanbul instrumenter offers the ability to receive the coverage map
for the last instrumented file through a separate function, so that is
tested for and used if it is supported. The original method is used as a
fallback for backwards compatibility.

This commit also addresses changes from the v0 instanbul instrumenter
options. The changes are additive only to maintain backwards compatibility
for other instrumenters.

  • fix(reporter): Access Data Properly to Check Coverage

This commit fixes errors with accessing data properly during the
checkCoverage method. A previous commit updated the implementation to
use istanbul-lib-coverage, but this involved an api change to access the
raw coverage data (which checkCoverage uses).

This commit also fixes the checking coverage for each file by using a
map to store file coverage summaries instead of merging summaries like
the global results. Per file coverage now works as expected.

  • test: Update Unit Tests to use new Istanbul API

This commit updates the mocking done in unit tests to properly mock the
new istanbul API. Additionally, new unit test suites are added for the
utility methods report-creator and source-map-store.

  • drop support for node < 8
  • reporter: the output folder names change, they no longer contain :

1.1.2 (2018-05-03)

Bug Fixes
  • build: Update to lodash 4 (d6d21d2), closes #​242
  • reporter: replace colons in the output path (3b2bffa)
BREAKING CHANGES
  • reporter: the output folder names change, they no longer contain :

1.1.1 (2016-07-23)

Bug Fixes
  • remove usage of the deprecated helper._ (dacf9e9)

v1.1.1

Compare Source

Bug Fixes
Chores
BREAKING CHANGES
  • deps: This set of changes may impact some use cases.

  • chore: Add Updated Istanbul Dependencies

The istanbul package is deprecated in favor several split packages that
control different aspects of how istanbul works. This commit adds the
recommended packages that will be used in future commits as
karma-coverage's usage of istanbul is updated to the latest api.

  • refactor(reporter): Follow new report API

This commit refactors the in memory report implementation to use the new
istanbul report API.

Report creation is removed from newer versions of the istanbul API, so
this commit adds a set of utility functions to wrap around the new API
and provide similar functionality as the old API. The top level export
uses the new utility function to register the in-memory report.

  • refactor(preprocessor): Switch to istanbul-lib-instrument

This commit updates the preprocessor to use istanbul-lib-instrument
instead of the deprecated istanbul package. The biggest change in this
refactor is using a callable function instead of a constructor when
creating instrumenters

The old istanbul package exposed the Instrumenter directly, allowing the
preprocessor to create an instance of it. istanbul-lib-instrument,
however, exposes a callable function that creates an Instrumenter.
This commit updates the preprocessor to follow this new pattern of using
a callable function. In order to ensure backwards compatibility, a
utility function is added to wrap constructors with a callable function
for creation automatically.

This change allows the following configuration for creating instrumenters:

  1. An object that contains an Instrumenter constructor
  2. An Instrumenter constructor itself
  3. A callable function that returns an Instrumenter instance.

This commit also uses the istanbul-lib-source-maps package to handle
storing source maps. A global source map store registers source maps so
they can be used later on in the reporter.

  • refactor(reporter): Switch to istanbul-lib-coverage

This commit updates the reporter by using the istanbul-lib-coverage
package api for handling coverage checking/management and the
istanbul-lib-report package api for handling reporting.

The new apis remove the need for collectors and remove the need to
handle disposing collectors.

  • refactor: Remove unused source cache utilities

This commit removes the source-cache-store and source-cache files as
they are no longer being used. The source-map-store and
istanbul-lib-source-maps are used instead, so these files are no longer
needed.

  • feat(util): Add Reset Functionality

This commit updates the report creator utility to allow resetting the
custom reporter map.

  • fix(preprocessor): Track Coverage Maps Properly

This commit updates the preprocessor to properly access file coverage
when storing it in the global coverage map (when includeAllSources is
true). The previous method did not work because the returned
instrumented code from the default istanbul instrumenter returns the
coverage map in a POJO object instead of JSON notation. This breaks the
coverage regex used to match and parse the coverage map.

The istanbul instrumenter offers the ability to receive the coverage map
for the last instrumented file through a separate function, so that is
tested for and used if it is supported. The original method is used as a
fallback for backwards compatibility.

This commit also addresses changes from the v0 instanbul instrumenter
options. The changes are additive only to maintain backwards compatibility
for other instrumenters.

  • fix(reporter): Access Data Properly to Check Coverage

This commit fixes errors with accessing data properly during the
checkCoverage method. A previous commit updated the implementation to
use istanbul-lib-coverage, but this involved an api change to access the
raw coverage data (which checkCoverage uses).

This commit also fixes the checking coverage for each file by using a
map to store file coverage summaries instead of merging summaries like
the global results. Per file coverage now works as expected.

  • test: Update Unit Tests to use new Istanbul API

This commit updates the mocking done in unit tests to properly mock the
new istanbul API. Additionally, new unit test suites are added for the
utility methods report-creator and source-map-store.

  • drop support for node < 8
  • reporter: the output folder names change, they no longer contain :

1.1.2 (2018-05-03)

Bug Fixes
  • build: Update to lodash 4 (d6d21d2), closes #​242
  • reporter: replace colons in the output path (3b2bffa)
BREAKING CHANGES
  • reporter: the output folder names change, they no longer contain :

1.1.1 (2016-07-23)

Bug Fixes
  • remove usage of the deprecated helper._ (dacf9e9)

v1.1.0

Compare Source

Bug Fixes
Chores
BREAKING CHANGES
  • deps: This set of changes may impact some use cases.

  • chore: Add Updated Istanbul Dependencies

The istanbul package is deprecated in favor several split packages that
control different aspects of how istanbul works. This commit adds the
recommended packages that will be used in future commits as
karma-coverage's usage of istanbul is updated to the latest api.

  • refactor(reporter): Follow new report API

This commit refactors the in memory report implementation to use the new
istanbul report API.

Report creation is removed from newer versions of the istanbul API, so
this commit adds a set of utility functions to wrap around the new API
and provide similar functionality as the old API. The top level export
uses the new utility function to register the in-memory report.

  • refactor(preprocessor): Switch to istanbul-lib-instrument

This commit updates the preprocessor to use istanbul-lib-instrument
instead of the deprecated istanbul package. The biggest change in this
refactor is using a callable function instead of a constructor when
creating instrumenters

The old istanbul package exposed the Instrumenter directly, allowing the
preprocessor to create an instance of it. istanbul-lib-instrument,
however, exposes a callable function that creates an Instrumenter.
This commit updates the preprocessor to follow this new pattern of using
a callable function. In order to ensure backwards compatibility, a
utility function is added to wrap constructors with a callable function
for creation automatically.

This change allows the following configuration for creating instrumenters:

  1. An object that contains an Instrumenter constructor
  2. An Instrumenter constructor itself
  3. A callable function that returns an Instrumenter instance.

This commit also uses the istanbul-lib-source-maps package to handle
storing source maps. A global source map store registers source maps so
they can be used later on in the reporter.

  • refactor(reporter): Switch to istanbul-lib-coverage

This commit updates the reporter by using the istanbul-lib-coverage
package api for handling coverage checking/management and the
istanbul-lib-report package api for handling reporting.

The new apis remove the need for collectors and remove the need to
handle disposing collectors.

  • refactor: Remove unused source cache utilities

This commit removes the source-cache-store and source-cache files as
they are no longer being used. The source-map-store and
istanbul-lib-source-maps are used instead, so these files are no longer
needed.

  • feat(util): Add Reset Functionality

This commit updates the report creator utility to allow resetting the
custom reporter map.

  • fix(preprocessor): Track Coverage Maps Properly

This commit updates the preprocessor to properly access file coverage
when storing it in the global coverage map (when includeAllSources is
true). The previous method did not work because the returned
instrumented code from the default istanbul instrumenter returns the
coverage map in a POJO object instead of JSON notation. This breaks the
coverage regex used to match and parse the coverage map.

The istanbul instrumenter offers the ability to receive the coverage map
for the last instrumented file through a separate function, so that is
tested for and used if it is supported. The original method is used as a
fallback for backwards compatibility.

This commit also addresses changes from the v0 instanbul instrumenter
options. The changes are additive only to maintain backwards compatibility
for other instrumenters.

  • fix(reporter): Access Data Properly to Check Coverage

This commit fixes errors with accessing data properly during the
checkCoverage method. A previous commit updated the implementation to
use istanbul-lib-coverage, but this involved an api change to access the
raw coverage data (which checkCoverage uses).

This commit also fixes the checking coverage for each file by using a
map to store file coverage summaries instead of merging summaries like
the global results. Per file coverage now works as expected.

  • test: Update Unit Tests to use new Istanbul API

This commit updates the mocking done in unit tests to properly mock the
new istanbul API. Additionally, new unit test suites are added for the
utility methods report-creator and source-map-store.

  • drop support for node < 8
  • reporter: the output folder names change, they no longer contain :

1.1.2 (2018-05-03)

Bug Fixes
  • build: Update to lodash 4 (d6d21d2), closes #​242
  • reporter: replace colons in the output path (3b2bffa)
BREAKING CHANGES
  • reporter: the output folder names change, they no longer contain :

1.1.1 (2016-07-23)

Bug Fixes
  • remove usage of the deprecated helper._ (dacf9e9)

v1.0.0

Compare Source

Bug Fixes
  • in-memory-reporter: Fix bug in new InMemoryReport, now using null-checks (051cffd)

0.5.4 (2016-03-03)

Bug Fixes
  • preprocessor: Call done with error message instead of populating instrumentedCode (c56e4de)
  • preprocessor: Support CoffeeScript when using RequireJS (e941e0c), closes #​177
  • preprocessor: Use _.includes instead of _.contains (3c769d5), closes #​212

0.5.3 (2015-10-20)

Bug Fixes
  • Update (dev)dependencies, include missing peer dependency and fix linter errors (bb73158)

0.5.2 (2015-09-08)

Bug Fixes
  • preprocessor: Reset coverageObjRegex before each use (ef3f45c)

0.5.1 (2015-08-28)

Bug Fixes
  • preprocessor: Change paths in windows to use backslash (b0eecbe), closes #​178
  • preprocessor: Resolve all paths properly (098182f), closes #​65

v0.5.5

Compare Source

Bug Fixes
  • in-memory-reporter: Fix bug in new InMemoryReport, now using null-checks (051cffd)

0.5.4 (2016-03-03)

Bug Fixes
  • preprocessor: Call done with error message instead of populating instrumentedCode (c56e4de)
  • preprocessor: Support CoffeeScript when using RequireJS (e941e0c), closes #​177
  • preprocessor: Use _.includes instead of _.contains (3c769d5), closes #​212

0.5.3 (2015-10-20)

Bug Fixes
  • Update (dev)dependencies, include missing peer dependency and fix linter errors (bb73158)

0.5.2 (2015-09-08)

Bug Fixes
  • preprocessor: Reset coverageObjRegex before each use (ef3f45c)

0.5.1 (2015-08-28)

Bug Fixes
  • preprocessor: Change paths in windows to use backslash (b0eecbe), closes #​178
  • preprocessor: Resolve all paths properly (098182f), closes #​65

v0.5.4

Compare Source

Bug Fixes
  • in-memory-reporter: Fix bug in new InMemoryReport, now using null-checks (051cffd)

0.5.4 (2016-03-03)

Bug Fixes
  • preprocessor: Call done with error message instead of populating instrumentedCode (c56e4de)
  • preprocessor: Support CoffeeScript when using RequireJS (e941e0c), closes #​177
  • preprocessor: Use _.includes instead of _.contains (3c769d5), closes #​212

0.5.3 (2015-10-20)

Bug Fixes
  • Update (dev)dependencies, include missing peer dependency and fix linter errors (bb73158)

0.5.2 (2015-09-08)

Bug Fixes
  • preprocessor: Reset coverageObjRegex before each use (ef3f45c)

0.5.1 (2015-08-28)

Bug Fixes
  • preprocessor: Change paths in windows to use backslash (b0eecbe), closes #​178
  • preprocessor: Resolve all paths properly (098182f), closes #​65

v0.5.3

Compare Source

Bug Fixes
  • in-memory-reporter: Fix bug in new InMemoryReport, now using null-checks (051cffd)

0.5.4 (2016-03-03)

Bug Fixes
  • preprocessor: Call done with error message instead of populating instrumentedCode (c56e4de)
  • preprocessor: Support CoffeeScript when using RequireJS (e941e0c), closes #​177
  • preprocessor: Use _.includes instead of _.contains (3c769d5), closes #​212

0.5.3 (2015-10-20)

Bug Fixes
  • Update (dev)dependencies, include missing peer dependency and fix linter errors (bb73158)

0.5.2 (2015-09-08)

Bug Fixes
  • preprocessor: Reset coverageObjRegex before each use (ef3f45c)

0.5.1 (2015-08-28)

Bug Fixes
  • preprocessor: Change paths in windows to use backslash (b0eecbe), closes #​178
  • preprocessor: Resolve all paths properly (098182f), closes #​65

v0.5.2

Compare Source

Bug Fixes
  • preprocessor: Reset coverageObjRegex before each use (ef3f45c)

v0.5.1

Compare Source

Bug Fixes
  • preprocessor: Change paths in windows to use backslash (b0eecbe), closes #​178
  • preprocessor: Resolve all paths properly (098182f), closes #​65

v0.5.0

Compare Source

Bug Fixes
  • preprocessor: use absolute paths (27e0b09)

<a name"0.4.2">

0.4.2 (2015-06-12)
Bug Fixes
  • preprocessor: Use _.contains instead of _.includes to avoid braking with lodash@2 (411beb1f)

<a name"0.4.1">

0.4.1 (2015-06-09)
Features

<a name"0.4.0">

0.4.0 (2015-06-09)

Bug Fixes
  • Drop karma from peerDependencies (eebcc989)
  • do not dispose collectors before they are written (9816cd14)
  • reporter allow using a externally provided source cachere for reporters change ` (781c126f)
  • watermarks are not passed to reporters (a9044055, closes #​143, #​144)
  • when using browserify dont create source code caching (50030df1)
Breaking Changes

<a name"0.3.1">

0.3.1 (2015-06-09)
Bug Fixes
  • skip directory creation when reporting to console (42c9e0a8, closes #​24)
Features
  • adding support for including all sources in coverage data (18091753)

<a name"0.3.0">

0.3.0 (2015-06-09)

Features
Breaking Changes
  • Karma-coverage does not ship with additional instrumenter. You need to explicitly install the instrumenter you need.

Removed Ibrik instrumenter that need to be installed explicitly.

Quick list of known community instrumenters :

  • Ibrik (CoffeeScript files instrumenter).
  • Ismailia (ES6 files instrumenter using Traceur).
  • Isparta (ES6 files instrumenter using 6to5).

(626e7b0c)

<a name"0.2.7">

0.2.7 (2015-06-09)
Bug Fixes
  • add in-memory source code caching to support detail reports on compiled CoffeeSc (c1e542a5)

<a name"0.2.6">

0.2.6 (2015-06-09)
Bug Fixes
  • reporters can be configured individually (adcb8e69)

<a name"0.2.5">

0.2.5 (2015-06-09)
Features

<a name"0.2.4">

0.2.4 (2015-06-09)
Bug Fixes
  • optional option no longer trigger an error when omitted (a2cdf569)

<a name"0.2.3">

0.2.3 (2015-06-09)
Features
  • config: instrumenter override option (ee3e68e8)

<a name"0.2.2">

0.2.2 (2015-06-09)
Features

<a name"0.2.1">

0.2.1 (2015-06-09)
Features
  • update istanbul to 0.2.3, ibrik to 1.1.1 (9064ec1e)

<a name"0.2.0">

0.2.0 (2015-06-09)

Features
  • no longer write json unless configured (1256fb8b)
Breaking Changes
  • No json coverage is generated by default. If you want that, please use json reporter:
coverageReporter: {
  type: 'json'
}

// or with multiple reporters
coverageReporter: {
  reporters: [
    {type: 'html', dir: 'coverage'},
    {type: 'json', dir: 'coverage'},
  ]
}

(1256fb8b)

<a name"0.1.5">

0.1.5 (2015-06-09)
Bug Fixes
Features

<a name"0.1.4">

0.1.4 (2015-06-09)
Features

<a name"0.1.3">

0.1.3 (2015-06-09)
Bug Fixes
  • update to work with Karma 0.11 (89c98177)
Features
  • update instanbul (24126e72)
  • support coverage for coffee script (9f802c1c)
  • log where the coverage reports are generated (c9ef5c9f)
  • add a default config and normalize outputFile path (027fa4fc)

<a name"0.1.2">

0.1.2 (2015-06-09)

<a name"0.1.1">

0.1.1 (2015-06-09)
Bug Fixes
  • update to work with Karma 0.11 (b744d6f2)

<a name"0.1.0">

0.1.0 (2015-06-09)

<a name"0.0.5">

0.0.5 (2015-06-09)
Bug Fixes
  • delay collector disposal until all file writing has completed. (75c4db0e)
Features
  • allow multiple report types (4a9afb62)

<a name"0.0.4">

0.0.4 (2015-06-09)
Features
  • do not preprocess files if coverage reporter is not used (277a1ad9, closes #​7)

<a name"0.0.3">

0.0.3 (2015-06-09)
Bug Fixes
Features

<a name"0.0.2">

0.0.2 (2015-06-09)
  • Initial release

v0.4.2

Compare Source

Bug Fixes
  • preprocessor: Use _.contains instead of _.includes to avoid braking with lodash@2 (411beb1f)

<a name"0.4.1">

v0.4.1

Compare Source

Features

<a name"0.4.0">

v0.4.0

Compare Source

Bug Fixes
  • Drop karma from peerDependencies (eebcc989)
  • do not dispose collectors before they are written (9816cd14)
  • reporter allow using a externally provided source cachere for reporters change ` (781c126f)
  • watermarks are not passed to reporters (a9044055, closes #​143, #​144)
  • when using browserify dont create source code caching (50030df1)
Breaking Changes

<a name"0.3.1">

0.3.1 (2015-06-09)
Bug Fixes
  • skip directory creation when reporting to console (42c9e0a8, closes #​24)
Features
  • adding support for including all sources in coverage data (18091753)

<a name"0.3.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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/karma-coverage-2.x branch from 1bf05e2 to b1b5f71 Compare May 7, 2021 09:38
@renovate
Copy link
Author

renovate bot commented May 7, 2021

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: npm-shrinkwrap.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm warn ancient lockfile
npm warn ancient lockfile The npm-shrinkwrap.json file was created with an old version of npm,
npm warn ancient lockfile so supplemental metadata must be fetched from the registry.
npm warn ancient lockfile
npm warn ancient lockfile This is a one-time fix-up, please be patient...
npm warn ancient lockfile
npm warn ancient lockfile Could not fetch metadata for gulp-cli@git+ssh://git@github.com/gulpjs/gulp-cli.git#4.0 GitPathspecError: The git reference could not be found
npm warn ancient lockfile     at makeError (/opt/containerbase/tools/npm/11.5.2/22.19.0/node_modules/npm/node_modules/@npmcli/git/lib/make-error.js:26:13)
npm warn ancient lockfile     at /opt/containerbase/tools/npm/11.5.2/22.19.0/node_modules/npm/node_modules/@npmcli/git/lib/spawn.js:37:26
npm warn ancient lockfile     at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
npm warn ancient lockfile     at async /opt/containerbase/tools/npm/11.5.2/22.19.0/node_modules/npm/node_modules/pacote/lib/git.js:258:19
npm warn ancient lockfile     at async withTempDir (/opt/containerbase/tools/npm/11.5.2/22.19.0/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js:21:14)
npm warn ancient lockfile     at async withTempDir (/opt/containerbase/tools/npm/11.5.2/22.19.0/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js:21:14) {
npm warn ancient lockfile   cmd: 'git',
npm warn ancient lockfile   args: [ '--no-replace-objects', 'checkout', '4.0' ],
npm warn ancient lockfile   code: 1,
npm warn ancient lockfile   signal: null,
npm warn ancient lockfile   stdout: '',
npm warn ancient lockfile   stderr: "error: pathspec '4.0' did not match any file(s) known to git"
npm warn ancient lockfile }
npm error code 1
npm error The git reference could not be found
npm error command git --no-replace-objects checkout 4.0
npm error error: pathspec '4.0' did not match any file(s) known to git
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2025-09-01T11_10_56_960Z-debug-0.log

@renovate renovate bot force-pushed the renovate/karma-coverage-2.x branch from b1b5f71 to 76911c6 Compare May 14, 2021 11:26
@renovate renovate bot force-pushed the renovate/karma-coverage-2.x branch from 76911c6 to ea2d3bf Compare March 7, 2022 12:22
@renovate
Copy link
Author

renovate bot commented Mar 7, 2022

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: npm-shrinkwrap.json
npm WARN ancient lockfile 
npm WARN ancient lockfile The npm-shrinkwrap.json file was created with an old version of npm,
npm WARN ancient lockfile so supplemental metadata must be fetched from the registry.
npm WARN ancient lockfile 
npm WARN ancient lockfile This is a one-time fix-up, please be patient...
npm WARN ancient lockfile 
npm WARN ancient lockfile Error: The git reference could not be found
npm WARN ancient lockfile     at makeError (/opt/buildpack/tools/npm/9.1.2/lib/node_modules/npm/node_modules/@npmcli/git/lib/make-error.js:26:13)
npm WARN ancient lockfile     at /opt/buildpack/tools/npm/9.1.2/lib/node_modules/npm/node_modules/@npmcli/git/lib/spawn.js:37:26
npm WARN ancient lockfile     at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
npm WARN ancient lockfile     at async /opt/buildpack/tools/npm/9.1.2/lib/node_modules/npm/node_modules/pacote/lib/git.js:268:19
npm WARN ancient lockfile     at async withTempDir (/opt/buildpack/tools/npm/9.1.2/lib/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js:21:14)
npm WARN ancient lockfile     at async withTempDir (/opt/buildpack/tools/npm/9.1.2/lib/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js:21:14)
npm WARN ancient lockfile  Could not fetch metadata for gulp-cli@git+ssh://git@github.com/gulpjs/gulp-cli.git#4.0 GitPathspecError: The git reference could not be found
npm WARN ancient lockfile     at makeError (/opt/buildpack/tools/npm/9.1.2/lib/node_modules/npm/node_modules/@npmcli/git/lib/make-error.js:26:13)
npm WARN ancient lockfile     at /opt/buildpack/tools/npm/9.1.2/lib/node_modules/npm/node_modules/@npmcli/git/lib/spawn.js:37:26
npm WARN ancient lockfile     at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
npm WARN ancient lockfile     at async /opt/buildpack/tools/npm/9.1.2/lib/node_modules/npm/node_modules/pacote/lib/git.js:268:19
npm WARN ancient lockfile     at async withTempDir (/opt/buildpack/tools/npm/9.1.2/lib/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js:21:14)
npm WARN ancient lockfile     at async withTempDir (/opt/buildpack/tools/npm/9.1.2/lib/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js:21:14) {
npm WARN ancient lockfile   cmd: 'git',
npm WARN ancient lockfile   args: [ '--no-replace-objects', 'checkout', '4.0' ],
npm WARN ancient lockfile   code: 1,
npm WARN ancient lockfile   signal: null,
npm WARN ancient lockfile   stdout: '',
npm WARN ancient lockfile   stderr: "error: pathspec '4.0' did not match any file(s) known to git"
npm WARN ancient lockfile }
npm ERR! code 1
npm ERR! The git reference could not be found
npm ERR! command git --no-replace-objects checkout 4.0
npm ERR! error: pathspec '4.0' did not match any file(s) known to git

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate-cache/others/npm/_logs/2022-11-20T15_52_59_711Z-debug-0.log

@renovate renovate bot force-pushed the renovate/karma-coverage-2.x branch from ea2d3bf to 44d56d4 Compare September 25, 2022 17:21
@renovate renovate bot force-pushed the renovate/karma-coverage-2.x branch from 44d56d4 to f26cc82 Compare November 20, 2022 15:53
@renovate renovate bot changed the title chore(deps): update dependency karma-coverage to v2 chore(deps): update dependency karma-coverage to v2 - autoclosed Apr 3, 2023
@renovate renovate bot closed this Apr 3, 2023
@renovate renovate bot deleted the renovate/karma-coverage-2.x branch April 3, 2023 23:16
@renovate renovate bot changed the title chore(deps): update dependency karma-coverage to v2 - autoclosed chore(deps): update dependency karma-coverage to v2 Apr 4, 2023
@renovate renovate bot reopened this Apr 4, 2023
@renovate renovate bot restored the renovate/karma-coverage-2.x branch April 4, 2023 09:07
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