Skip to content

chore(deps): update devdependencies #93

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

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Nov 13, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
coffeescript (source) 2.6.1 -> 2.7.0 age adoption passing confidence
eslint-config-atomic 1.16.4 -> 1.22.1 age adoption passing confidence
fast-equals ^2.0.3 -> ^5.0.0 age adoption passing confidence
jasmine (source) ^3.10.0 -> ^5.0.0 age adoption passing confidence
parcel 2.0.0 -> 2.15.2 age adoption passing confidence
prebuildify ^4.2.1 -> ^6.0.0 age adoption passing confidence
prettier-config-atomic ^3.0.1 -> ^4.0.0 age adoption passing confidence
shx ^0.3.3 -> ^0.4.0 age adoption passing confidence
terser-config-atomic ^0.1.1 -> ^1.0.0 age adoption passing confidence
typescript (source) ^4.4.4 -> ^5.0.0 age adoption passing confidence

Release Notes

jashkenas/coffeescript (coffeescript)

v2.7.0

Compare Source

atom-ide-community/eslint-config-atomic (eslint-config-atomic)

v1.22.1

Compare Source

What's Changed

Full Changelog: atom-community/eslint-config-atomic@v1.22.0...v1.22.1

v1.22.0

Compare Source

What's Changed

Full Changelog: atom-community/eslint-config-atomic@v1.21.2...v1.22.0

v1.21.2

Compare Source

v1.21.1

Compare Source

v1.21.0

Compare Source

What's Changed

Full Changelog: atom-community/eslint-config-atomic@v1.20.6...v1.21.0

v1.20.6

Compare Source

What's Changed

Full Changelog: atom-community/eslint-config-atomic@v1.20.5...v1.20.6

v1.20.5

Compare Source

What's Changed

Full Changelog: atom-community/eslint-config-atomic@v1.20.4...v1.20.5

v1.20.4

Compare Source

What's Changed

Full Changelog: atom-community/eslint-config-atomic@v1.20.1...v1.20.3

v1.20.3

Compare Source

v1.20.2

Compare Source

v1.20.1

Compare Source

What's Changed

Full Changelog: atom-community/eslint-config-atomic@v1.19.3...v1.20.1

v1.20.0

Compare Source

v1.19.3

Compare Source

Full Changelog: atom-community/eslint-config-atomic@v1.19.2...v1.19.3
fix: ignore node_modules even if not in gitignore

v1.19.2

Compare Source

What's Changed

Full Changelog: atom-community/eslint-config-atomic@v1.19.1...v1.19.2

v1.19.1

Compare Source

What's Changed

Full Changelog: atom-community/eslint-config-atomic@v1.19.0...v1.19.1

v1.19.0

Compare Source

What's Changed

Full Changelog: atom-community/eslint-config-atomic@v1.18.3...v1.19.0

v1.18.3

Compare Source

What's Changed

  • fix(deps): update dependencies

Full Changelog: atom-community/eslint-config-atomic@v1.18.2...v1.18.3

v1.18.2

Compare Source

What's Changed

Full Changelog: atom-community/eslint-config-atomic@v1.18.1...v1.18.2

v1.18.1

Compare Source

Bug Fixes

v1.18.0

Compare Source

Bug Fixes
  • set strict-peer-dependencies=false (42dfc86)
  • update dependencies (f057f0c)
Features
  • support eslint 8 by excluding coffee if the version is >=8 (1a2ecce)
  • update the bundles eslint to 8 (e570c21)

v1.17.1

Compare Source

Bug Fixes

v1.17.0

Compare Source

Bug Fixes
Features
  • make coffee plugin optional (2915bc4)

v1.16.6

Compare Source

Bug Fixes

v1.16.5

Compare Source

Bug Fixes
planttheidea/fast-equals (fast-equals)

v5.2.2

Compare Source

  • #​139 - Add file extensions to type definition files to allow it to work in projects with NodeNext module resolution

v5.2.1

Compare Source

Bugfixes
  • #​138 - Actually fix reference to src code in index.d.ts by flattening types in file

v5.2.0

Compare Source

Enhancements
  • Support Preact objects in equality comparison
Bugfixes
  • #​137 - Fix circular React references in object comparisons

v5.1.3

Compare Source

Enhancements
  • #​136 - More than double speed of iterables (Map / Set) equality comparisons
Maintenance
  • #​135 - Include dequal and dequal/lite in benchmark comparisons

v5.1.2

Compare Source

Maintenance

Re-release of 5.1.0 with correct pre-release setup.

v5.1.1

Compare Source

DO NOT USE

This was an accidental pre-release when cleaning up release setup.

v5.1.0

Compare Source

Enhancements
  • #​127 - Add support for custom Function instance comparisons (resolves #​118)
  • #​128 - Add support for URL instance comparisons (resolves #​121)
  • #​129 - Add support for Error instance comparisons (resolves #​123)
  • #​130 - Add support for custom Number instance comparisons (resolves #​112)
Bugfixes
  • #​132 - Fix assert.deepEqual check in benchmark (resolves #​125)
  • #​126 - Export explicit types via export type (attempts to resolve #​114)

v5.0.1

Compare Source

Bugfixes
  • Fix reference to metaOverride in typings and documentation (holdover from temporary API in v5 beta)

v5.0.0

Compare Source

Breaking changes
constructor equality now required

To align with other implementations common in the community, but also to be more functionally correct, the two objects being compared now must have equal constructors.

Map / Set comparisons no longer support IE11

In previous verisons, .forEach() was used to ensure that support for Symbol was not required, as IE11 did not have Symbol and therefore both Map and Set did not have iterator-based methods such as .values() or .entries(). Since IE11 is no longer a supported browser, and support for those methods is present in all browsers and Node for quite a while, the comparison has moved to use these methods. This results in a ~20% performance increase.

createCustomEqual contract has changed

To better facilitate strict comparisons, but also to allow for meta use separate from caching, the contract for createCustomEqual has changed. See the README documentation for more details, but froma high-level:

  • meta is no longer passed through to equality comparators, but rather a general state object which contains meta
  • cache now also lives on the state object, which allows for use of the meta property separate from but in parallel with the circular cache
  • equals is now on state, which prevents the need to pass through the separate isEqual method for the equality comparator
createCustomCircularEqual has been removed

You can create a custom circular equality comparator through createCustomEqual now by providing circular: true to the options.

Custom meta values are no longer passed at callsite

To use meta properties for comparisons, they must be returned in a createState method.

Deep links have changed

If you were deep-linking into a specific asset type (ESM / CJS / UMD), they have changed location.

NOTE: You may no longer need to deep-link, as the build resolution has improved.

Enhancements
New "strict" comparators available

The following new comparators are available:

  • strictDeepEqual
  • strictShallowEqual
  • strictCircularDeepEqual
  • strictCircularShallowEqual

This will perform the same comparisons as their non-strict counterparts, but will verify additional properties (non-enumerable properties on objects, keyed objects on Array / Map / Set) and that the descriptors for the properties align.

TypedArray support

Support for comparing all typed array values is now supported, and you can provide a custom comparator via the new areTypedArraysEqual option in the createCustomEqual configuration.

Better build system resolution

The library now leverages the exports property in the package.json to provide builds specific to your method of consumption (ESM / CommonJS / UMD). There is still a minified UMD version available if you want to use it instead.

arePrimitiveWrappersEqual option added to createCustomEqual configuration

If you want a custom comparator for primitive wrappers (new Boolean() / new Number() / new String()) it is now available.

v4.0.3

Compare Source

  • Remove unnecessary second strict equality check for objects in edge-case scenarios

v4.0.2

Compare Source

  • #​85 - createCustomCircularEqual typing is incorrect

v4.0.1

Compare Source

  • #​81 - Fix typing issues related to importing in index.d.ts file

v4.0.0

Compare Source

Breaking Changes
Certain ES2015 features are now required

In previous versions, there were automatic fallbacks for certain ES2015 features if they did not exist:

Due to the omnipresence of support in both browser and NodeJS, these have been deprecated. There is still an option if you require support for these legacy environments, however; see createCustomEqual and createCustomCircularEqual for more details.

createCustomEqual contract has changed

To allow more flexibility and customizability for a variety of edge cases, createCustomEqual now allows override of specific type value comparisons in addition to the general comparator it did prior. See the documentation for more details.

Enhancements
createCustomCircularEqual added

Like createCustomEqual, it will create a custom equality comparator, with the exception that it will handle circular references. See the documentation for more details.

Cross-realm comparisons are now supported

Prior to 4.x.x., instanceof was used internally for checking of object classes, which only worked when comparing objects from the same Realm. This has changed to instead use an object's StringTag, which is not realm-specific.

TypeScript typings improved

For better typing in edge-case scenarios like custom comparators with meta values, typings have been refactored for accuracy and better narrow flow-through.

v3.0.3

Compare Source

  • Fix #​77 - better circular object validation

v3.0.2

Compare Source

  • Fix #​73 - support comparison of primitive wrappers
  • #​76 - improve speed and accuracy of RegExp comparison in modern environments

v3.0.1

Compare Source

  • Fix #​71 - use generic types for better type flow-through

v3.0.0

Compare Source

Breaking changes

When creating a custom equality comparator via createCustomEqual, the equality method has an expanded contract:

// Before
type EqualityComparator = (objectA: any, objectB: any, meta: any) => boolean;

// After
type InternalEqualityComparator = (
  objectA: any,
  objectB: any,
  indexOrKeyA: any,
  indexOrKeyB: any,
  parentA: any,
  parentB: any,
  meta: any,
) => boolean;

If you have a custom equality comparator, you can ignore the differences by just passing additional undefined parameters, or you can use the parameters to further improve / clarify the logic.

  • Add #​57 - support additional metadata for custom equality comparators

v2.0.4

Compare Source

  • Fix #​58 - duplicate entries in Map / Set can create false equality success
  • #​60 - Add documentation for key equality of Map being a part of deepEqual
jasmine/jasmine-npm (jasmine)

v5.7.1

Compare Source

Please see the release notes.

v5.7.0

Compare Source

Please see the release notes.

v5.6.0

Compare Source

Please see the release notes.

v5.5.0

Compare Source

Please see the release notes.

v5.4.0

Compare Source

Please see the release notes.

v5.3.1

Compare Source

Please see the release notes.

v5.3.0

Compare Source

Please see the release notes.

v5.2.0

Compare Source

Please see the release notes.

v5.1.0: 5.1.0

Compare Source

Please see the release notes.

v5.0.2: 5.0.2

Compare Source

Please see the release notes.

v5.0.1: 5.0.1

Compare Source

Please see the release notes.

v5.0.0: 5.0.0

Compare Source

Please see the release notes.

v4.6.0: 4.6.0

Compare Source

Please see the release notes.

v4.5.0: 4.5.0

Compare Source

Please see the release notes.

v4.4.0: 4.4.0

Compare Source

Please see the release notes.

v4.3.0: 4.3.0

Compare Source

Please see the release notes.

v4.2.1: 4.2.1

Compare Source

Please see the release notes.

v4.2.0: 4.2.0

Compare Source

Please see the release notes.

v4.1.0: 4.1.0

Compare Source

Please see the release notes.

v4.0.2: 4.0.2

Compare Source

Please see the release notes.

v4.0.1: 4.0.1

Compare Source

Please see the release notes.

v4.0.0: 4.0.0

Compare Source

Please see the release notes.

v3.99.0: 3.99.0

Compare Source

Please see the release notes.

parcel-bundler/parcel (parcel)

v2.15.2

Compare Source

Fixed
  • Core

    • Change minimum required glibc version to 2.26 – Details
    • Cache inline bundle packaging – Details
    • Use stable id for package requests – Details
  • HTML

    • Do not remove <meta charset="utf-8">Details
  • MDX

    • Make URL dependencies in MDX files optional – Details
  • React Server Components

    • Fix memory leak in react-static packager – Details
  • Resolver

    • Fix resolving source package exports condition from self reference – Details
  • SVG

  • Compressors

    • Use max level compression for brotli compressor – Details

v2.15.1

Compare Source

Fixed
  • HTML

    • Fix serializing <template> element contents – Details
  • JavaScript

    • Skip optional dependencies in ESM externals – Details

v2.15.0

Compare Source

Added
  • Core

    • Distribute Rust binaries for each architecture as separate npm packages – Details
  • HTML and SVG

    • Add Rust-based transformer/packager/optimizer for HTML and SVG – Details
  • Resolver

    • Support cloudflare: scheme and no longer rewrite node: scheme – Details
Fixed
  • Core

    • Avoid segmentation fault on thread exit on Linux – Details
    • Support older GLIBC versions on Linux – Details
  • JavaScript

    • Include all symbols in non-browser entries – Details
    • Update swc and mdx-rs – Details
    • Fix exporting objects with non-configurable prototypes from React Server Components – Details

v2.14.4

Compare Source

Fixed
  • Core

    • Fix duplicate bundles error message – Details
  • JavaScript

    • Support ESM externals and exports in dev packager – Details
    • Treat Deno's jsr: dependencies as external – Details

v2.14.3

Compare Source

Fixed
  • JavaScript
    • Updated to React 19.1, which enables Server Components to be used with stable React instead of only canary – Details

v2.14.2

Compare Source

Fixed
  • Core

    • Enable resolving source field in dev dependencies – Details
    • Error when building a library target in serve mode – Details
  • JavaScript

    • Fix MDX inline assets in static RSCs – Details
    • Fix symbol collection with multiple exports of same function (e.g. date-fns) – Details
  • REPL

    • Fix error overlay resolution in REPL – Details
  • create-parcel

    • Fix gitignore in create-parcel – Details
    • Fix create-parcel on windows – Details

v2.14.1

Compare Source

Fixed
  • Resolver
    • Fix resolving package self references – Details

v2.14.0

Compare Source

Added
  • Core

    • Add a CLI to create new Parcel apps – Details
  • JavaScript

  • Dev Server

    • Support running node bundles in dev server – Details
    • Apply HMR updates via node worker thread – Details
Fixed

v2.13.3

Compare Source

Fixed
  • Resolver
    • Ignore invalid package.json fields – Details

v2.13.2

Compare Source

Fixed
  • JavaScript

    • Fix HMR when asset is duplicated between multiple bundles – Details
  • SASS

    • Fix SASS resolution with non file: URLs – Details

v2.13.1

Compare Source

Fixed
  • JavaScript

  • SASS

    • Fix SASS resolution rules for modern API – Details

v2.13.0

Compare Source

Added
  • Core

    • Expose watcher ignore and watcher backend options – Details
    • Improve large watcher events payload experience – Details
    • Add support for globs in package.json#source – Details
    • Add config key invalidation – Details
  • Bundler

  • Dev Server

  • Resolver

    • 12x faster resolver cache – Details
    • Correctly handle empty resolver diagnostics array – Details
Fixed
  • Core

    • Remove abortcontroller-polyfill – Details
    • Fix missing content key in symbol propagation when asset is removed – Details
    • Update minimum supported node version to 16 – Details
    • Ensure the snapshot directory matches the watch dir – Details
    • Add parcel version to PluginOptions – Details
    • Fix possible race condition in the caching of request graph – Details
    • Ensure empty extended config throws a diagnostic – Details
    • Ensure Asset public ids are assigned deterministically – Details
    • Directories ignored by watcher should be relative to the watch directory – Details
    • Fix request tracker incremental cache write for new nodes – Details
    • Improve request graph cache reading – Details
    • Exit process with error code when reporters fail – Details
    • Write tmp files to the OS tmp directory - Details
    • Fix small HMR issues – Details
    • Fix crash in EntryRequest with multiple globs in the source field – Details
    • Revert split manifest runtime bundles – Details
    • Revert chunked cache blobs for improved stability – Details
    • Update dependencies – Details
  • Bundler

    • Fix assets outside project root with Manual Shared Bundles – Details
  • JavaScript

    • Avoid non-identifier export names in non-entry library bundles – Details
    • Relax react-refresh version range – Details
    • Also emit swc recoverable errors – Details
    • Bump swc – Details, Details, Details, Details
    • Bump swc and browserslist-rs – Details
    • Replace std::sync locks with parking_lot locks for better stability – Details
    • Ensure const modules in async bundles are wrapped – Details
    • Fix dev packager global reference – Details
    • Fix import usage tracking for destructure defaulting – Details
    • Update Node.js globals replacer to use SWC VisitMut – Details
    • Update process.env replacer to use SWC VisitMut – Details
    • Update Node.js __filename and __dirname replace to use SWC VisitMut – Details
    • Fix parcelRequire being added to multi-target libraries – Details
    • Handle TypeScript expressions in macro evaluator – Details
  • Resolver

    • Fix NUL byte crash in resolver – Details
    • Change default resolver error message for custom specifiers – Details
  • TypeScript

    • Handle dynamic import type references in TS types transformer – Details
    • Correctly handle qualified names in TS types import() – Details
  • SASS

    • Migrate to new sass API – Details
  • SVG

    • Load svgo version from project – Details
    • Update svgr and use project svgo version – Details
  • Image

  • Vue

    • Upgrade consolidate to v1 – Details
  • Web Extensions

    • Allow both service_worker and scripts in MV3 Web Extensions – Details

[v2.12.0](https://redirect.github.com/parce


Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 added the dependencies Pull requests that update a dependency file label Nov 13, 2021
@renovate renovate bot force-pushed the renovate/devdependencies branch from c5f96ba to 26815c4 Compare December 1, 2021 05:20
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from 0293115 to 696685f Compare January 6, 2022 20:25
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from a3e0099 to d7f4109 Compare January 17, 2022 19:23
@renovate renovate bot force-pushed the renovate/devdependencies branch from d7f4109 to 3e74f98 Compare March 7, 2022 10:00
@renovate renovate bot force-pushed the renovate/devdependencies branch from 3e74f98 to 1b20732 Compare March 26, 2022 13:11
@renovate renovate bot force-pushed the renovate/devdependencies branch from 1b20732 to c326044 Compare April 24, 2022 22:04
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from ca37d0a to 4833fb1 Compare June 23, 2022 22:53
@renovate renovate bot force-pushed the renovate/devdependencies branch from 4833fb1 to 314befd Compare September 25, 2022 19:08
@renovate renovate bot force-pushed the renovate/devdependencies branch from 314befd to 8472e57 Compare November 20, 2022 19:29
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from f45ece5 to 05e0d3c Compare March 22, 2023 17:50
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from d53b6de to 7b8f9b6 Compare June 1, 2023 20:23
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from 6fb054c to c32f657 Compare June 10, 2023 01:31
@renovate renovate bot force-pushed the renovate/devdependencies branch 5 times, most recently from fb36b5a to 384a529 Compare June 19, 2023 07:44
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from 03330ac to f3c3fad Compare June 29, 2023 01:59
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from e96ddf1 to c21dd5a Compare October 2, 2023 04:14
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from 09f64b2 to 4d9b24f Compare October 15, 2023 16:15
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from e50fda9 to 2172b45 Compare October 24, 2023 22:51
@renovate
Copy link
Author

renovate bot commented Oct 24, 2023

⚠ 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: pnpm-lock.yaml
 WARN  The "store" setting has been renamed to "store-dir". Please use the new name.
 WARN  GET https://registry.npmjs.org/coffeescript/-/coffeescript-2.6.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint-config-atomic/-/eslint-config-atomic-1.16.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/fast-equals/-/fast-equals-2.0.3.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/fuzzaldrin-plus/-/fuzzaldrin-plus-0.6.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/jasmine/-/jasmine-3.10.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/parcel/-/parcel-2.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/prebuildify/-/prebuildify-4.2.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/prettier-config-atomic/-/prettier-config-atomic-3.0.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/shx/-/shx-0.3.3.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/terser-config-atomic/-/terser-config-atomic-0.1.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.2.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/coffeescript/-/coffeescript-2.6.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/eslint-config-atomic/-/eslint-config-atomic-1.16.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/fast-equals/-/fast-equals-2.0.3.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/fuzzaldrin-plus/-/fuzzaldrin-plus-0.6.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/jasmine/-/jasmine-3.10.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/parcel/-/parcel-2.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/prebuildify/-/prebuildify-4.2.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/prettier-config-atomic/-/prettier-config-atomic-3.0.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/shx/-/shx-0.3.3.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/terser-config-atomic/-/terser-config-atomic-0.1.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.2.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 ERR_INVALID_THIS  Value of "this" must be of type URLSearchParams

@renovate renovate bot force-pushed the renovate/devdependencies branch from 2172b45 to 3f8ce2a Compare November 2, 2023 06:55
@renovate renovate bot force-pushed the renovate/devdependencies branch from 3f8ce2a to c74fe1d Compare November 15, 2023 04:24
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from 8c4d9f4 to 0dd4b5b Compare January 11, 2024 09:59
@renovate renovate bot force-pushed the renovate/devdependencies branch from 0dd4b5b to dc23c9a Compare February 28, 2024 19:28
Copy link
Author

renovate bot commented Jun 4, 2024

⚠️ 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: pnpm-lock.yaml
 WARN  GET https://registry.npmjs.org/coffeescript/-/coffeescript-2.6.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint-config-atomic/-/eslint-config-atomic-1.16.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/fast-equals/-/fast-equals-2.0.3.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/fuzzaldrin-plus/-/fuzzaldrin-plus-0.6.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/jasmine/-/jasmine-3.10.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/parcel/-/parcel-2.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/prebuildify/-/prebuildify-4.2.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/prettier-config-atomic/-/prettier-config-atomic-3.0.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/shx/-/shx-0.3.3.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/terser-config-atomic/-/terser-config-atomic-0.1.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.2.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/coffeescript/-/coffeescript-2.6.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/eslint-config-atomic/-/eslint-config-atomic-1.16.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/fast-equals/-/fast-equals-2.0.3.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/fuzzaldrin-plus/-/fuzzaldrin-plus-0.6.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/jasmine/-/jasmine-3.10.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/parcel/-/parcel-2.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/prebuildify/-/prebuildify-4.2.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/prettier-config-atomic/-/prettier-config-atomic-3.0.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/shx/-/shx-0.3.3.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/terser-config-atomic/-/terser-config-atomic-0.1.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.2.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 ERR_INVALID_THIS  Value of "this" must be of type URLSearchParams

@renovate renovate bot force-pushed the renovate/devdependencies branch from dc23c9a to 33dbd3d Compare November 12, 2024 20:56
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 906522b to 7a4f65e Compare November 25, 2024 20:06
@renovate renovate bot force-pushed the renovate/devdependencies branch from 7a4f65e to e202fdf Compare December 16, 2024 20:17
@renovate renovate bot force-pushed the renovate/devdependencies branch 4 times, most recently from c66cb7f to 8040528 Compare March 23, 2025 23:08
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 70e0836 to 10ef8b3 Compare March 29, 2025 23:09
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 9c0cbd5 to a12c2cf Compare May 16, 2025 05:54
@renovate renovate bot force-pushed the renovate/devdependencies branch from a12c2cf to ad6c69e Compare May 25, 2025 02:37
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