Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update e2e tests (major) #24112

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 8, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@types/node (source) 16.18.96 -> 20.12.12 age adoption passing confidence devDependencies major
@types/node (source) 16.18.96 -> 20.12.12 age adoption passing confidence devDependencies major
@types/node (source) 16.18.96 -> 20.12.12 age adoption passing confidence devDependencies major
@types/node (source) 16.18.96 -> 20.12.12 age adoption passing confidence devDependencies major
@types/node (source) 16.18.96 -> 20.12.12 age adoption passing confidence devDependencies major
@types/node (source) 18.19.31 -> 20.12.12 age adoption passing confidence devDependencies major
node 18 -> 20 age adoption passing confidence final major
vercel (source) 33.5.0 -> 33.7.1 age adoption passing confidence dependencies major

Release Notes

nodejs/node (node)

v20.13.1: 2024-05-09, Version 20.13.1 'Iron' (LTS), @​marco-ippolito

Compare Source

2024-05-09, Version 20.13.1 'Iron' (LTS), @​marco-ippolito

Revert "tools: install npm PowerShell scripts on Windows"

Due to a regression in the npm installation on Windows, this commit reverts the change that installed npm PowerShell scripts on Windows.

Commits
  • [b7d80802cc] - Revert "tools: install npm PowerShell scripts on Windows" (marco-ippolito) #​52897

v20.13.0: 2024-05-07, Version 20.13.0 'Iron' (LTS), @​marco-ippolito

Compare Source

2024-05-07, Version 20.13.0 'Iron' (LTS), @​marco-ippolito

buffer: improve base64 and base64url performance

The performance of the base64 and base64url encoding and decoding functions has been improved significantly.

Contributed by Yagiz Nizipli in #​52428

crypto: deprecate implicitly shortened GCM tags

This release, introduces a doc-only deprecation of using GCM authentication tags that are shorter than the cipher's block size, unless the user specified the authTagLength option.

Contributed by Tobias Nießen in #​52345

events,doc: mark CustomEvent as stable

From this release CustomEvent has been marked stable.

Contributed by Daeyeon Jeong in #​52618

fs: add stacktrace to fs/promises

Sync functions in fs throwed an error with a stacktrace which is helpful for debugging. But functions in fs/promises throwed an error without a stacktrace. This commit adds stacktraces by calling Error.captureStacktrace and re-throwing the error.

Contributed by 翠 / green in #​49849

report: add --report-exclude-network option

New option --report-exclude-network, also available as report.excludeNetwork, enables the user to exclude networking interfaces in their diagnostic report. On some systems, this can cause the report to take minutes to generate so this option can be used to optimize that.

Contributed by Ethan Arrowood in #​51645

src: add uv_get_available_memory to report and process

From this release it is possible to get the available memory in the system by calling process.getAvailableMemory().

Contributed by theanarkh #​52023

stream: support typed arrays

This commit adds support for typed arrays in streams.

Contributed by IlyasShabi #​51866

util: support array of formats in util.styleText

It is now possible to pass an array of format strings to util.styleText to apply multiple formats to the same text.

console.log(util.styleText(['underline', 'italic'], 'My italic underlined message'));

Contributed by Marco Ippolito in #​52040

v8: implement v8.queryObjects() for memory leak regression testing

This is similar to the queryObjects() console API provided by the Chromium DevTools console. It can be used to search for objects that have the matching constructor on its prototype chain in the heap after a full garbage collection, which can be useful for memory leak regression tests.
To avoid surprising results, users should avoid using this API on constructors whose implementation they don't control, or on constructors that can be invoked by other parties in the application.

To avoid accidental leaks, this API does not return raw references to the objects found. By default, it returns the count of the objects found. If options.format is 'summary', it returns an array containing brief string representations for each object. The visibility provided in this API is similar to what the heap snapshot provides, while users can save the cost of serialization and parsing and directly filer the target objects during the search.

We have been using this API internally for the test suite, which has been more stable than any other leak regression testing strategies in the CI. With a public implementation we can now use the public API instead.

const { queryObjects } = require('node:v8');
class A { foo = 'bar'; }
console.log(queryObjects(A)); // 0
let a = new A();
console.log(queryObjects(A)); // 1
// [ "A { foo: 'bar' }" ]
console.log(queryObjects(A, { format: 'summary' }));

// Release the object.
a = null;
// Search again. queryObjects() includes a full garbage collection
// so a should disappear.
console.log(queryObjects(A)); // 0

class B extends A { bar = 'qux'; }
// The child class B's prototype has A's prototype on its prototype chain
// so the prototype object shows up too.
console.log(queryObjects(A, { format: 'summary' })); // [ A {}' ]

Contributed by Joyee Cheung in #​51927

watch: mark as stable

From this release Watch Mode is considered stable.
When in watch mode, changes in the watched files cause the Node.js process to restart.

Contributed by Moshe Atlow in #​52074

Other Notable Changes
Commits

Configuration

📅 Schedule: Branch creation - "before 7am on Wednesday" (UTC), 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.

👻 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner May 8, 2024 02:16
@renovate renovate bot requested review from Jolg42, jkomyno and SevInf and removed request for a team May 8, 2024 02:16
Copy link
Contributor Author

renovate bot commented May 8, 2024

⚠ Artifact update problem

Renovate failed to update artifacts 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: packages/client/tests/e2e/unsupported-edge-error/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/unsupported-edge-error




File name: packages/client/tests/e2e/unsupported-browser-error/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/unsupported-browser-error



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/schema-not-found-sst-electron/pnpm-lock.yaml
.                                        |  WARN  Ignoring broken lockfile at /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/schema-not-found-sst-electron: Lockfile /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/schema-not-found-sst-electron/pnpm-lock.yaml not compatible with current pnpm
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/schema-not-found-sst-electron



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/require-in-the-middle/pnpm-lock.yaml
.                                        |  WARN  Ignoring broken lockfile at /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/require-in-the-middle: Lockfile /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/require-in-the-middle/pnpm-lock.yaml not compatible with current pnpm
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/require-in-the-middle



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/publish-extensions/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/publish-extensions



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/prisma-client-imports/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/prisma-client-imports



.                                        |  WARN  Installing a dependency from a non-existent directory: /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/prisma-client-imports/custom
Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/pg-self-signed-cert-error/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/pg-self-signed-cert-error



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/noengine-file-deletion/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/noengine-file-deletion



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/nextjs-schema-not-found/9_monorepo-noServerComponents-customOutput-noReExport/pnpm-lock.yaml
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/9_monorepo-noServerComponents-customOutput-noReExport/packages/service:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/9_monorepo-noServerComponents-customOutput-noReExport/packages/service




File name: packages/client/tests/e2e/nextjs-schema-not-found/8_monorepo-serverComponents-noCustomOutput-noReExport/pnpm-lock.yaml
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/8_monorepo-serverComponents-noCustomOutput-noReExport/packages/service:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/8_monorepo-serverComponents-noCustomOutput-noReExport/packages/service




File name: packages/client/tests/e2e/nextjs-schema-not-found/7_monorepo-noServerComponents-noCustomOutput-noReExport/pnpm-lock.yaml
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/7_monorepo-noServerComponents-noCustomOutput-noReExport/packages/service:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/7_monorepo-noServerComponents-noCustomOutput-noReExport/packages/service




File name: packages/client/tests/e2e/nextjs-schema-not-found/6_simplerepo-serverComponents-customOutput-noReExport/pnpm-lock.yaml
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/6_simplerepo-serverComponents-customOutput-noReExport




File name: packages/client/tests/e2e/nextjs-schema-not-found/5_simplerepo-noServerComponents-customOutput-noReExport/pnpm-lock.yaml
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/5_simplerepo-noServerComponents-customOutput-noReExport




File name: packages/client/tests/e2e/nextjs-schema-not-found/4_simplerepo-serverComponents-noCustomOutput-noReExport/pnpm-lock.yaml
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/4_simplerepo-serverComponents-noCustomOutput-noReExport




File name: packages/client/tests/e2e/nextjs-schema-not-found/3_simplerepo-noServerComponents-noCustomOutput-noReExport/pnpm-lock.yaml
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/3_simplerepo-noServerComponents-noCustomOutput-noReExport




File name: packages/client/tests/e2e/nextjs-schema-not-found/18_monorepo-serverComponents-customOutput-reExportIndirect-ts/pnpm-lock.yaml
Scope: all 2 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/18_monorepo-serverComponents-customOutput-reExportIndirect-ts/packages/db:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/18_monorepo-serverComponents-customOutput-reExportIndirect-ts/packages/db




File name: packages/client/tests/e2e/nextjs-schema-not-found/17_monorepo-noServerComponents-customOutput-reExportIndirect-ts/pnpm-lock.yaml
Scope: all 3 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/17_monorepo-noServerComponents-customOutput-reExportIndirect-ts/packages/db:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/17_monorepo-noServerComponents-customOutput-reExportIndirect-ts/packages/db




File name: packages/client/tests/e2e/nextjs-schema-not-found/16_monorepo-serverComponents-customOutput-reExportIndirect/pnpm-lock.yaml
Scope: all 2 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/16_monorepo-serverComponents-customOutput-reExportIndirect/packages/db:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/16_monorepo-serverComponents-customOutput-reExportIndirect/packages/db




File name: packages/client/tests/e2e/nextjs-schema-not-found/15_monorepo-noServerComponents-customOutput-reExportIndirect/pnpm-lock.yaml
Scope: all 3 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/15_monorepo-noServerComponents-customOutput-reExportIndirect/packages/db:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/15_monorepo-noServerComponents-customOutput-reExportIndirect/packages/db



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/nextjs-schema-not-found/14_monorepo-serverComponents-customOutput-reExportDirect/pnpm-lock.yaml
Scope: all 2 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/14_monorepo-serverComponents-customOutput-reExportDirect/packages/service:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-nextjs-monorepo-workaround-plugin-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/14_monorepo-serverComponents-customOutput-reExportDirect/packages/service



packages/service                         |  WARN  Installing a dependency from a non-existent directory: /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/14_monorepo-serverComponents-customOutput-reExportDirect/packages/db

File name: packages/client/tests/e2e/nextjs-schema-not-found/13_monorepo-noServerComponents-customOutput-reExportDirect/pnpm-lock.yaml
Scope: all 2 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/13_monorepo-noServerComponents-customOutput-reExportDirect/packages/service:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-nextjs-monorepo-workaround-plugin-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/13_monorepo-noServerComponents-customOutput-reExportDirect/packages/service



packages/service                         |  WARN  Installing a dependency from a non-existent directory: /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/13_monorepo-noServerComponents-customOutput-reExportDirect/packages/db

File name: packages/client/tests/e2e/nextjs-schema-not-found/12_monorepo-serverComponents-noCustomOutput-reExportIndirect/pnpm-lock.yaml
Scope: all 2 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/12_monorepo-serverComponents-noCustomOutput-reExportIndirect/packages/db:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/12_monorepo-serverComponents-noCustomOutput-reExportIndirect/packages/db




File name: packages/client/tests/e2e/nextjs-schema-not-found/11_monorepo-noServerComponents-noCustomOutput-reExportIndirect/pnpm-lock.yaml
Scope: all 3 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/11_monorepo-noServerComponents-noCustomOutput-reExportIndirect/packages/db:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/11_monorepo-noServerComponents-noCustomOutput-reExportIndirect/packages/db




File name: packages/client/tests/e2e/nextjs-schema-not-found/10_monorepo-serverComponents-customOutput-noReExport/pnpm-lock.yaml
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/10_monorepo-serverComponents-customOutput-noReExport/packages/service:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/10_monorepo-serverComponents-customOutput-noReExport/packages/service




File name: packages/client/tests/e2e/issues/19999-tsc-extensions-oom/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/issues/19999-tsc-extensions-oom



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/issues/19866-ts-composite-declaration/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/issues/19866-ts-composite-declaration




File name: packages/client/tests/e2e/invalid-package-version/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/invalid-package-version



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/generator-config-types/pnpm-lock.yaml
.                                        |  WARN  Ignoring broken lockfile at /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/generator-config-types: Lockfile /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/generator-config-types/pnpm-lock.yaml not compatible with current pnpm
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/generator-config-types



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/example/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/example



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/enum-import-in-edge/pnpm-lock.yaml
.                                        |  WARN  Ignoring broken lockfile at /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/enum-import-in-edge: Lockfile /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/enum-import-in-edge/pnpm-lock.yaml not compatible with current pnpm
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/enum-import-in-edge




File name: packages/client/tests/e2e/engine-not-found-error/tooling-tampered-with-engine-copy/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/engine-not-found-error/tooling-tampered-with-engine-copy



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/engine-not-found-error/native-generated-different-platform/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/engine-not-found-error/native-generated-different-platform



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/engine-not-found-error/bundler-tampered-with-engine-copy/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/engine-not-found-error/bundler-tampered-with-engine-copy




File name: packages/client/tests/e2e/engine-not-found-error/binary-targets-incorrectly-pinned/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/engine-not-found-error/binary-targets-incorrectly-pinned




File name: packages/client/tests/e2e/driver-adapters-accelerate/pnpm-lock.yaml
.                                        |  WARN  Ignoring broken lockfile at /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/driver-adapters-accelerate: Lockfile /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/driver-adapters-accelerate/pnpm-lock.yaml not compatible with current pnpm
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/driver-adapters-accelerate



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/default-version/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-client-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/default-version




File name: packages/client/tests/e2e/connection-limit-reached/pnpm-lock.yaml
.                                        |  WARN  Ignoring broken lockfile at /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/connection-limit-reached: Lockfile /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/connection-limit-reached/pnpm-lock.yaml not compatible with current pnpm
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/connection-limit-reached




File name: packages/client/tests/e2e/bundler-detection-error/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/bundler-detection-error




File name: packages/client/tests/e2e/browser-unsupported-errors/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/browser-unsupported-errors




File name: packages/client/tests/e2e/adapter-d1-itx-error/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/adapter-d1-itx-error



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/accelerate-types/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/accelerate-types




Copy link
Contributor

github-actions bot commented May 8, 2024

size-limit report 📦

Path Size
packages/client/runtime/library.js 179.77 KB (0%)
packages/client/runtime/library.d.ts 81 B (0%)
packages/client/runtime/binary.js 600.89 KB (0%)
packages/client/runtime/binary.d.ts 26 B (0%)
packages/client/runtime/edge.js 159.01 KB (0%)
packages/client/runtime/edge-esm.js 158.91 KB (0%)
packages/client/runtime/wasm.js 114.85 KB (0%)
packages/client/runtime/index-browser.js 33.77 KB (0%)
packages/client/runtime/index-browser.d.ts 89 B (0%)
packages/cli/build/index.js 2.09 MB (0%)
packages/client/prisma-client-0.0.0.tgz 3.02 MB (0%)
packages/cli/prisma-0.0.0.tgz 3.73 MB (0%)
packages/bundle-size/da-workers-libsql/output.tgz 888.49 KB (0%)
packages/bundle-size/da-workers-neon/output.tgz 967.08 KB (0%)
packages/bundle-size/da-workers-pg/output.tgz 985.82 KB (0%)
packages/bundle-size/da-workers-pg-worker/output.tgz 941.53 KB (0%)
packages/bundle-size/da-workers-planetscale/output.tgz 902.72 KB (0%)
packages/bundle-size/da-workers-d1/output.tgz 861.55 KB (0%)

@renovate renovate bot force-pushed the renovate/major-e2e-tests branch from 8bc8feb to 252a8f6 Compare May 15, 2024 05:32
Copy link

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@types/node@16.18.84 None 0 3.56 MB types
npm/@types/node@20.12.12 None +1 2.13 MB types
npm/esbuild@0.21.2 environment, filesystem, network, shell +23 226 MB evanw
npm/wrangler@3.30.0 Transitive: environment, filesystem, network, shell, unsafe +16 11.3 MB wrangler-publisher
npm/wrangler@3.5.1 Transitive: environment, filesystem, network, shell, unsafe +81 27.8 MB wrangler-publisher

🚮 Removed packages: npm/db@1.0.0, npm/expect-type@0.19.0, npm/webpack@5.75.0

View full report↗︎

Copy link

🚨 Potential security issues detected. Learn more about Socket for GitHub ↗︎

To accept the risk, merge this PR and you will not be notified again.

Alert Package NoteSource
Install scripts npm/workerd@1.20230814.1
Install scripts npm/workerd@1.20240223.1

View full report↗︎

Next steps

What is an install script?

Install scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.

Packages should not be running non-essential scripts during install and there are often solutions to problems people solve with install scripts that can be run at publish time instead.

Take a deeper look at the dependency

Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support [AT] socket [DOT] dev.

Remove the package

If you happen to install a dependency that Socket reports as Known Malware you should immediately remove it and select a different dependency. For other alert types, you may may wish to investigate alternative packages or consider if there are other ways to mitigate the specific risk posed by the dependency.

Mark a package as acceptable risk

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of ecosystem/package-name@version specifiers. e.g. @SocketSecurity ignore npm/foo@1.0.0 or ignore all packages with @SocketSecurity ignore-all

  • @SocketSecurity ignore npm/workerd@1.20230814.1
  • @SocketSecurity ignore npm/workerd@1.20240223.1

Copy link
Contributor Author

renovate bot commented May 15, 2024

⚠️ Artifact update problem

Renovate failed to update artifacts 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: packages/client/tests/e2e/unsupported-edge-error/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/unsupported-edge-error




File name: packages/client/tests/e2e/unsupported-browser-error/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/unsupported-browser-error



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/schema-not-found-sst-electron/pnpm-lock.yaml
.                                        |  WARN  Ignoring broken lockfile at /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/schema-not-found-sst-electron: Lockfile /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/schema-not-found-sst-electron/pnpm-lock.yaml not compatible with current pnpm
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/schema-not-found-sst-electron



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/require-in-the-middle/pnpm-lock.yaml
.                                        |  WARN  Ignoring broken lockfile at /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/require-in-the-middle: Lockfile /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/require-in-the-middle/pnpm-lock.yaml not compatible with current pnpm
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/require-in-the-middle



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/publish-extensions/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/publish-extensions



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/prisma-client-imports/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/prisma-client-imports




File name: packages/client/tests/e2e/pg-self-signed-cert-error/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/pg-self-signed-cert-error




File name: packages/client/tests/e2e/noengine-file-deletion/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/noengine-file-deletion




File name: packages/client/tests/e2e/nextjs-schema-not-found/9_monorepo-noServerComponents-customOutput-noReExport/pnpm-lock.yaml
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/9_monorepo-noServerComponents-customOutput-noReExport/packages/service:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/9_monorepo-noServerComponents-customOutput-noReExport/packages/service



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/nextjs-schema-not-found/8_monorepo-serverComponents-noCustomOutput-noReExport/pnpm-lock.yaml
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/8_monorepo-serverComponents-noCustomOutput-noReExport/packages/service:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/8_monorepo-serverComponents-noCustomOutput-noReExport/packages/service




File name: packages/client/tests/e2e/nextjs-schema-not-found/7_monorepo-noServerComponents-noCustomOutput-noReExport/pnpm-lock.yaml
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/7_monorepo-noServerComponents-noCustomOutput-noReExport/packages/service:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/7_monorepo-noServerComponents-noCustomOutput-noReExport/packages/service



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/nextjs-schema-not-found/6_simplerepo-serverComponents-customOutput-noReExport/pnpm-lock.yaml
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/6_simplerepo-serverComponents-customOutput-noReExport




File name: packages/client/tests/e2e/nextjs-schema-not-found/5_simplerepo-noServerComponents-customOutput-noReExport/pnpm-lock.yaml
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/5_simplerepo-noServerComponents-customOutput-noReExport




File name: packages/client/tests/e2e/nextjs-schema-not-found/4_simplerepo-serverComponents-noCustomOutput-noReExport/pnpm-lock.yaml
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/4_simplerepo-serverComponents-noCustomOutput-noReExport



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/nextjs-schema-not-found/3_simplerepo-noServerComponents-noCustomOutput-noReExport/pnpm-lock.yaml
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/3_simplerepo-noServerComponents-noCustomOutput-noReExport




File name: packages/client/tests/e2e/nextjs-schema-not-found/18_monorepo-serverComponents-customOutput-reExportIndirect-ts/pnpm-lock.yaml
Scope: all 2 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/18_monorepo-serverComponents-customOutput-reExportIndirect-ts/packages/db:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/18_monorepo-serverComponents-customOutput-reExportIndirect-ts/packages/db



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/nextjs-schema-not-found/17_monorepo-noServerComponents-customOutput-reExportIndirect-ts/pnpm-lock.yaml
Scope: all 3 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/17_monorepo-noServerComponents-customOutput-reExportIndirect-ts/packages/db:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/17_monorepo-noServerComponents-customOutput-reExportIndirect-ts/packages/db




File name: packages/client/tests/e2e/nextjs-schema-not-found/16_monorepo-serverComponents-customOutput-reExportIndirect/pnpm-lock.yaml
Scope: all 2 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/16_monorepo-serverComponents-customOutput-reExportIndirect/packages/db:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/16_monorepo-serverComponents-customOutput-reExportIndirect/packages/db




File name: packages/client/tests/e2e/nextjs-schema-not-found/15_monorepo-noServerComponents-customOutput-reExportIndirect/pnpm-lock.yaml
Scope: all 3 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/15_monorepo-noServerComponents-customOutput-reExportIndirect/packages/db:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/15_monorepo-noServerComponents-customOutput-reExportIndirect/packages/db




File name: packages/client/tests/e2e/nextjs-schema-not-found/14_monorepo-serverComponents-customOutput-reExportDirect/pnpm-lock.yaml
Scope: all 2 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/14_monorepo-serverComponents-customOutput-reExportDirect/packages/service:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-nextjs-monorepo-workaround-plugin-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/14_monorepo-serverComponents-customOutput-reExportDirect/packages/service



packages/service                         |  WARN  Installing a dependency from a non-existent directory: /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/14_monorepo-serverComponents-customOutput-reExportDirect/packages/db

File name: packages/client/tests/e2e/nextjs-schema-not-found/13_monorepo-noServerComponents-customOutput-reExportDirect/pnpm-lock.yaml
Scope: all 2 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/13_monorepo-noServerComponents-customOutput-reExportDirect/packages/service:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-nextjs-monorepo-workaround-plugin-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/13_monorepo-noServerComponents-customOutput-reExportDirect/packages/service




File name: packages/client/tests/e2e/nextjs-schema-not-found/12_monorepo-serverComponents-noCustomOutput-reExportIndirect/pnpm-lock.yaml
Scope: all 2 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/12_monorepo-serverComponents-noCustomOutput-reExportIndirect/packages/db:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/12_monorepo-serverComponents-noCustomOutput-reExportIndirect/packages/db




File name: packages/client/tests/e2e/nextjs-schema-not-found/11_monorepo-noServerComponents-noCustomOutput-reExportIndirect/pnpm-lock.yaml
Scope: all 3 workspace projects
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/11_monorepo-noServerComponents-noCustomOutput-reExportIndirect/packages/db:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/11_monorepo-noServerComponents-noCustomOutput-reExportIndirect/packages/db




File name: packages/client/tests/e2e/nextjs-schema-not-found/10_monorepo-serverComponents-customOutput-noReExport/pnpm-lock.yaml
/tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/10_monorepo-serverComponents-customOutput-noReExport/packages/service:
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/nextjs-schema-not-found/10_monorepo-serverComponents-customOutput-noReExport/packages/service




File name: packages/client/tests/e2e/issues/19999-tsc-extensions-oom/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/issues/19999-tsc-extensions-oom



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/issues/19866-ts-composite-declaration/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/issues/19866-ts-composite-declaration



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/invalid-package-version/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/invalid-package-version



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/generator-config-types/pnpm-lock.yaml
.                                        |  WARN  Ignoring broken lockfile at /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/generator-config-types: Lockfile /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/generator-config-types/pnpm-lock.yaml not compatible with current pnpm
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/generator-config-types




File name: packages/client/tests/e2e/example/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/example




File name: packages/client/tests/e2e/enum-import-in-edge/pnpm-lock.yaml
.                                        |  WARN  Ignoring broken lockfile at /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/enum-import-in-edge: Lockfile /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/enum-import-in-edge/pnpm-lock.yaml not compatible with current pnpm
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/enum-import-in-edge




File name: packages/client/tests/e2e/engine-not-found-error/tooling-tampered-with-engine-copy/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/engine-not-found-error/tooling-tampered-with-engine-copy



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/engine-not-found-error/native-generated-different-platform/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/engine-not-found-error/native-generated-different-platform




File name: packages/client/tests/e2e/engine-not-found-error/bundler-tampered-with-engine-copy/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/engine-not-found-error/bundler-tampered-with-engine-copy




File name: packages/client/tests/e2e/engine-not-found-error/binary-targets-incorrectly-pinned/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/engine-not-found-error/binary-targets-incorrectly-pinned



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/driver-adapters-accelerate/pnpm-lock.yaml
.                                        |  WARN  Ignoring broken lockfile at /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/driver-adapters-accelerate: Lockfile /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/driver-adapters-accelerate/pnpm-lock.yaml not compatible with current pnpm
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/driver-adapters-accelerate



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/default-version/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-client-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/default-version




File name: packages/client/tests/e2e/connection-limit-reached/pnpm-lock.yaml
.                                        |  WARN  Ignoring broken lockfile at /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/connection-limit-reached: Lockfile /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/connection-limit-reached/pnpm-lock.yaml not compatible with current pnpm
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/connection-limit-reached




File name: packages/client/tests/e2e/bundler-detection-error/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/bundler-detection-error



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/browser-unsupported-errors/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/browser-unsupported-errors




File name: packages/client/tests/e2e/adapter-d1-itx-error/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/adapter-d1-itx-error



Progress: resolved 1, reused 0, downloaded 0, added 0

File name: packages/client/tests/e2e/accelerate-types/pnpm-lock.yaml
undefined
 ENOENT  ENOENT: no such file or directory, open '/tmp/prisma-0.0.0.tgz'

This error happened while installing a direct dependency of /tmp/renovate/repos/github/prisma/prisma/packages/client/tests/e2e/accelerate-types



Progress: resolved 1, reused 0, downloaded 0, added 0

Copy link

codspeed-hq bot commented May 15, 2024

CodSpeed Performance Report

Merging #24112 will improve performances by 22.77%

Comparing renovate/major-e2e-tests (252a8f6) with main (4ecf120)

Summary

⚡ 1 improvements
✅ 2 untouched benchmarks

Benchmarks breakdown

Benchmark main renovate/major-e2e-tests Change
client generation 100 models with relations 40 s 32.6 s +22.77%

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.

None yet

0 participants