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

feat: upgrade to prisma 2.1 #733

Merged
merged 4 commits into from
Jun 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ jobs:
fi
export NEXUS_VERSION=${{ matrix.nexus-version }}

yarn test:framework:${{ matrix.database }}
yarn test:fw:e2e:${{ matrix.database }}
2 changes: 1 addition & 1 deletion .github/workflows/trunk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,4 @@ jobs:
fi
export NEXUS_VERSION=${{ matrix.nexus-version }}

yarn test:framework:${{ matrix.database }}
yarn test:fw:e2e:${{ matrix.database }}
15 changes: 15 additions & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Development

## `@nexus/schema` & `graphql`

- Dependend upon because `nexus-plugin-prisma/schema` has them as peer deps
- While `nexus` brings them, relying on that would be relying on their being hoisting, which we should not
- For more detail see https://github.com/graphql-nexus/nexus/issues/514#issuecomment-604668904

## Running e2e tests locally

- Set `NEXUS_VERSION` as you wish
- Set `NEXUS_PLUGIN_PRISMA_VERSION` as you wish
- have docker running on your machine
- `docker-compose up -d`
- `yarn test:fw:e2e:<name>`
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,20 @@
"test": "ts-node scripts/ensure-prisma2-version && ts-node tests/__ensure-engine && jest --forceExit",
"test:dev": "ts-node scripts/ensure-prisma2-version && ts-node tests/__ensure-engine && jest src tests/schema --watch",
"test:unit": "jest src --testTimeout=15000 --forceExit",
"test:schema": "yarn test tests/schema",
"test:framework:mysql": "yarn test --testTimeout=400000 tests/framework/e2e/mysql.test.ts",
"test:framework:postgres": "yarn test --testTimeout=400000 tests/framework/e2e/postgres.test.ts",
"test:framework:sqlite": "yarn test --testTimeout=400000 tests/framework/e2e/sqlite.test.ts",
"test:schema": "yarn test --testTimeout=15000 tests/schema",
"test:fw:e2e:mysql": "yarn test --testTimeout=400000 tests/framework/e2e/mysql.test.ts",
"test:fw:e2e:postgres": "yarn test --testTimeout=400000 tests/framework/e2e/postgres.test.ts",
"test:fw:e2e:sqlite": "yarn test --testTimeout=400000 tests/framework/e2e/sqlite.test.ts",
"test:db:setup": "docker-compose down && rm -rf .mysql-data && rm -rf .postgres-data && docker-compose up -d"
},
"peerDependencies": {
"@nexus/schema": "^0.14.0",
"graphql": "^14.6.0"
},
"dependencies": {
"@prisma/cli": "2.0.1",
"@prisma/client": "2.0.1",
"@prisma/sdk": "2.0.1",
"@prisma/cli": "2.1.3",
"@prisma/client": "2.1.3",
"@prisma/sdk": "2.1.3",
"camelcase": "^6.0.0",
"chalk": "^4.0.0",
"common-tags": "^1.8.0",
Expand All @@ -60,9 +60,9 @@
"devDependencies": {
"@nexus/schema": "0.14.0",
"@prisma-labs/prettier-config": "0.1.0",
"@prisma/fetch-engine": "2.0.0",
"@prisma/get-platform": "2.0.0",
"@prisma/migrate": "2.0.0",
"@prisma/fetch-engine": "2.1.3",
"@prisma/get-platform": "2.1.3",
"@prisma/migrate": "2.1.3",
"@types/common-tags": "1.8.0",
"@types/fs-extra": "8.1.0",
"@types/jest": "25.1.4",
Expand Down
2 changes: 2 additions & 0 deletions src/framework/worktime/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,8 @@ function renderDatasource(database: Database): string {
const DATABASE_TO_CONNECTION_URI: Record<Database, (projectName: string) => string> = {
SQLite: (_) => 'file:./dev.db',
PostgreSQL: (projectName) => `postgresql://postgres:postgres@localhost:5432/${projectName}`,
// todo some values for projectName are invalid. For example "mysql" will leading to errors:
// https://github.com/prisma/migrate/issues/491
MySQL: (projectName) => `mysql://root:<password>@localhost:3306/${projectName}`,
}

Expand Down
6 changes: 3 additions & 3 deletions tests/framework/e2e/mysql.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { e2eTestPlugin } from '../__helpers/e2e/testing'
import { bufferOutput, takeUntilServerListening } from '../__helpers/e2e/utils'

const tmpDir = getTmpDir()
const testProjectDir = Path.join(tmpDir, 'mysql')
const testProjectDir = Path.join(tmpDir, 'e2e-mysql') // must not be "mysql" or error
const envPath = Path.join(testProjectDir, 'prisma', '.env')
const ctx = createE2EContext({
dir: testProjectDir,
Expand Down Expand Up @@ -37,8 +37,8 @@ test('e2e', async () => {

// Update database credentials
const prismaSchemaContent = FS.read(envPath)!.replace(
'mysql://root:<password>@localhost:3306/mysql',
'mysql://root:mysql@localhost:4567/mysql'
'mysql://root:<password>@localhost:3306/e2e-mysql',
'mysql://root:mysql@localhost:4567/e2e-mysql'
)

FS.write(envPath, prismaSchemaContent)
Expand Down
2 changes: 1 addition & 1 deletion tests/framework/e2e/postgres.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { bufferOutput, takeUntilServerListening } from '../__helpers/e2e/utils'

const tmpDir = getTmpDir()
const ctx = createE2EContext({
dir: Path.join(tmpDir, 'postgres'),
dir: Path.join(tmpDir, 'e2e-postgres'),
localNexus: null,
serverPort: 4001,
})
Expand Down
2 changes: 1 addition & 1 deletion tests/framework/e2e/sqlite.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { takeUntilServerListening } from '../__helpers/e2e/utils'

const tmpDir = getTmpDir()
const ctx = createE2EContext({
dir: Path.join(tmpDir, 'sqlite'),
dir: Path.join(tmpDir, 'e2e-sqlite'),
localNexus: null,
serverPort: 4002,
})
Expand Down
163 changes: 66 additions & 97 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -750,36 +750,29 @@
resolved "https://registry.yarnpkg.com/@prisma-labs/prettier-config/-/prettier-config-0.1.0.tgz#ef6cb5f89487974ca997516e9b39d5ccbefeeaad"
integrity sha512-P0h2y+gnIxFP2HdsTYSYHWmabGBlxyVjnUepsrRe8gAF36mxOonGsbsQmKt/Q9H9CMjrSkFoDe5F5HLi2iW5/Q==

"@prisma/cli@2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@prisma/cli/-/cli-2.0.1.tgz#ae67f3485c7c843c7de34926bd3e85379ee2e511"
integrity sha512-AXSvuXzmI8CfTk3MOgiDMAFCqw+r2QKV64WHJ2B6Z0Mpb+PihsdD6BCteWDu2GlGwNNluNDYKlfLkXxgvzH2mw==
"@prisma/cli@2.1.3":
version "2.1.3"
resolved "https://registry.yarnpkg.com/@prisma/cli/-/cli-2.1.3.tgz#f3439781f3f3cf4114183d21cd0bfe486b122cdb"
integrity sha512-JlLSldk21TFcU8FIORHFd/zR889TJvjnYW3ufUNjOHRwbZTkBrs+KT+aSRb9aAp0vVmEgm+T44O+6V7/iwJUIA==

"@prisma/client@2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@prisma/client/-/client-2.0.1.tgz#f0e9a52424c92511e8bd87b7358802001400c849"
integrity sha512-9TaIp72H/mhTkkUUQ3bE+1NTWfwJcanAdfUt6dDH0G57r1suTyz0YUbhCOH4hJrtCADumIi9bvGw+wAk1CstaA==
"@prisma/client@2.1.3":
version "2.1.3"
resolved "https://registry.yarnpkg.com/@prisma/client/-/client-2.1.3.tgz#92bcd81101a8ee939943867c134089d1bb29b2b9"
integrity sha512-5D8Uty1++j+rvlr0GzFGF98WjaWq61JfVYEdKe4DDubJfo6o85D/Y7TJ9IhmnMveUF3wk4CfPs8yNFt9rS0ZIA==
dependencies:
pkg-up "^3.1.0"

"@prisma/debug@2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@prisma/debug/-/debug-2.0.0.tgz#ad65a1744dad7ebaf00230f086ba0b511c95f678"
integrity sha512-ze3HgPnuRI01YvBGlqnaYm5Nel/mrWclUdBFaLAke/1PZuvlnhpK1092G+7VMKeGS7AEHd3w7tC/kI/9c5qY7g==
dependencies:
debug "^4.1.1"

"@prisma/debug@2.0.0-alpha.1279":
version "2.0.0-alpha.1279"
resolved "https://registry.yarnpkg.com/@prisma/debug/-/debug-2.0.0-alpha.1279.tgz#eda56c6132a58da9141e2385417dd3ff0ab1b9b5"
integrity sha512-isxQTLjIveSUnkLx0Z+O0VYNGul3E/lfw6jPaQEcrPHFRQZKDXrdmllOefH+ZLvmwUXR1emHmH67nMryCG4csQ==
dependencies:
debug "^4.1.1"

"@prisma/debug@2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@prisma/debug/-/debug-2.0.1.tgz#a10d771fab6a23a29a7064deba828a1b6d7fe903"
integrity sha512-+SIotqeQCraimAzYNHjN6wu3cOSh7D9/Srz+8lX5R7bif4KxT7bUIVDFbLeeMGHUkTCoFxEyeE/HOS79GJ/IwQ==
"@prisma/debug@2.1.3":
version "2.1.3"
resolved "https://registry.yarnpkg.com/@prisma/debug/-/debug-2.1.3.tgz#f283e7ba2ebbbe08e9b7c10c304acf4d5179deec"
integrity sha512-9b+LugaT40TaCVG5GK8m635MCQw23VaEgm0JpuAcWCv8Ivaw8DJmllH9yBB/jZ1dsKXalC3L/ngkzgH5DcDDKA==
dependencies:
debug "^4.1.1"

Expand All @@ -802,17 +795,18 @@
terminal-link "^2.1.1"
undici mcollina/undici

"@prisma/engine-core@2.0.1-1":
version "2.0.1-1"
resolved "https://registry.yarnpkg.com/@prisma/engine-core/-/engine-core-2.0.1-1.tgz#0550b595017627dc25bd928c51ab70159259aa61"
integrity sha512-YgeOJrzmv+t5WsdKTdRyyGLeyIcS46JkesnRCv7gPkE60muK2YrPksr9CX28CKr/qnqNPgT4dYVGJA5mGmppuA==
"@prisma/engine-core@2.1.3":
version "2.1.3"
resolved "https://registry.yarnpkg.com/@prisma/engine-core/-/engine-core-2.1.3.tgz#3fe78deb57b27c398ffc5ef445e6569411623fdb"
integrity sha512-t98rkPnUEBVWU3Y9uQmVCOUjNKAGA/sBq/1uR2WVmBZ0udlohtFJ4Hdi/C3FeiS4WbzHuYwLY9hLc/E8zUOcAA==
dependencies:
"@prisma/debug" "2.0.1"
"@prisma/generator-helper" "2.0.1"
"@prisma/get-platform" "2.0.1"
"@prisma/debug" "2.1.3"
"@prisma/generator-helper" "2.1.3"
"@prisma/get-platform" "2.1.3"
bent "^7.1.2"
chalk "^3.0.0"
cross-fetch "^3.0.4"
execa "^4.0.2"
fast-json-stringify "^2.0.0"
get-stream "^5.1.0"
indent-string "^4.0.0"
Expand All @@ -821,29 +815,6 @@
terminal-link "^2.1.1"
undici mcollina/undici

"@prisma/fetch-engine@2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@prisma/fetch-engine/-/fetch-engine-2.0.0.tgz#cc206b8f24a37d8fb22b01397b201ae19a1c3967"
integrity sha512-75AO1wjjp1ezzSUNyo+zSgH2oA4DIy87by0yKiNUMLJcfCX9yP2dbtPzNr61SrBwYNXex5194J5kcrs2j+Wwew==
dependencies:
"@prisma/debug" "2.0.0"
"@prisma/get-platform" "2.0.0"
chalk "^4.0.0"
execa "^4.0.0"
find-cache-dir "^3.3.1"
hasha "^5.2.0"
http-proxy-agent "^4.0.1"
https-proxy-agent "^5.0.0"
make-dir "^3.0.2"
node-fetch "^2.6.0"
p-filter "^2.1.0"
p-map "^4.0.0"
p-queue "^6.4.0"
p-retry "^4.2.0"
progress "^2.0.3"
rimraf "^3.0.2"
tempy "^0.5.0"

"@prisma/fetch-engine@2.0.0-alpha.1279":
version "2.0.0-alpha.1279"
resolved "https://registry.yarnpkg.com/@prisma/fetch-engine/-/fetch-engine-2.0.0-alpha.1279.tgz#58e12cc351e051d461b05822d0397dbe9e34d720"
Expand All @@ -867,13 +838,13 @@
rimraf "^3.0.2"
tempy "^0.5.0"

"@prisma/fetch-engine@2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@prisma/fetch-engine/-/fetch-engine-2.0.1.tgz#2a9a2cc70d017294a83492a30069afafffa45128"
integrity sha512-QqcgwygrWTmYMo7gg+oCwqmU7fFAtbggEF1QLyJtqWE5Y11+Fu50doohz2m1svA3Y2fnQO0A1e/p9nLV/podzA==
"@prisma/fetch-engine@2.1.3":
version "2.1.3"
resolved "https://registry.yarnpkg.com/@prisma/fetch-engine/-/fetch-engine-2.1.3.tgz#631719a1a895965b2652bbd63297e7b283eabfc1"
integrity sha512-nI+kahRt1JF+M3OmMw5q5X3zSBJOZIDvHIpKw/vtReI+ee4OpPIaX/I1MOoW+cpiaQ27NO2+dsVXlW2gYu89gg==
dependencies:
"@prisma/debug" "2.0.1"
"@prisma/get-platform" "2.0.1"
"@prisma/debug" "2.1.3"
"@prisma/get-platform" "2.1.3"
chalk "^4.0.0"
execa "^4.0.0"
find-cache-dir "^3.3.1"
Expand All @@ -888,6 +859,7 @@
p-retry "^4.2.0"
progress "^2.0.3"
rimraf "^3.0.2"
temp-dir "^2.0.0"
tempy "^0.5.0"

"@prisma/generator-helper@2.0.0-alpha.1279":
Expand All @@ -900,59 +872,52 @@
chalk "^3.0.0"
cross-spawn "^7.0.2"

"@prisma/generator-helper@2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@prisma/generator-helper/-/generator-helper-2.0.1.tgz#fbb61a27a8f90723d5d4ff8e011abe6677a09a92"
integrity sha512-aiDT+G+NcOkQtbLD+pH+Dg/CjP6s8ym+8f/enIVTxm8+UyITmFySWk/AinaSCAKrBIVovmTswG3R8DysJ0c+3A==
"@prisma/generator-helper@2.1.3":
version "2.1.3"
resolved "https://registry.yarnpkg.com/@prisma/generator-helper/-/generator-helper-2.1.3.tgz#64f32ec75c228f19b4df62f00423ba62b389b023"
integrity sha512-YLIRfHG1Y+FzKMlzKhumhi9WkQpmrQJdlVk1+qMI1Wji2ybfk08YdVcIkSwk2C35tWdKvJe4epHkNVD9q959Vw==
dependencies:
"@prisma/debug" "2.0.1"
"@prisma/debug" "2.1.3"
"@types/cross-spawn" "^6.0.1"
chalk "^3.0.0"
cross-spawn "^7.0.2"

"@prisma/get-platform@2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@prisma/get-platform/-/get-platform-2.0.0.tgz#a0d8c4f053b74400b27818db148d6baa641931f0"
integrity sha512-J9O7cAW1aHRMir660stP0kVg3jUL7gGw/LIJkontPIsXbjAfUZQwmdm8OrfgJar7qJ2KDYjtSD9vT4VE7cPI2Q==
dependencies:
"@prisma/debug" "2.0.0"

"@prisma/get-platform@2.0.0-alpha.1279":
version "2.0.0-alpha.1279"
resolved "https://registry.yarnpkg.com/@prisma/get-platform/-/get-platform-2.0.0-alpha.1279.tgz#5a72c00639c3d5870c1a5430fb63d62f7ca0ffda"
integrity sha512-oZSYOOAO73yT2uzAr3eWBghG/M6k54DpPWiXiKNrS57i6S9GRdR6ADDdGyK+IYc9OijIqwfgQMjxI0VbDETRVw==
dependencies:
"@prisma/debug" "2.0.0-alpha.1279"

"@prisma/get-platform@2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@prisma/get-platform/-/get-platform-2.0.1.tgz#a3124b4365e9fd9d9428f263c6eb67cda85d37ce"
integrity sha512-Q7SvNx3QXpYcVgo1aTjAhX7eKJ5HU2YZ7rGPMXhjhMvgKpvT8IHgU9aiK8EYQQVeOme9uHMHn5pLnxdqUyyZ5g==
"@prisma/get-platform@2.1.3":
version "2.1.3"
resolved "https://registry.yarnpkg.com/@prisma/get-platform/-/get-platform-2.1.3.tgz#2680b4b5bb8e9b999a970854ef77c4ca86e118a6"
integrity sha512-pS07K5g5/+bhm29AWHZ5+0H8RbfUQ7vO/jqs15Mpk0ZW5DB43J8ZF7v3A/BbGYIQ9w2P/brRGMpnI3SoYhS/Fg==
dependencies:
"@prisma/debug" "2.0.1"
"@prisma/debug" "2.1.3"

"@prisma/ink-components@2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@prisma/ink-components/-/ink-components-2.0.0.tgz#8d42bca2cf8ca1240513cdc7d29c37a503e82845"
integrity sha512-IFPT8NlAa79RE0e5EFND2AqbtOHJIdeBzTfZGZa1q4qgnvzYm5//io5dM6d/X7I11pRwYHFpihtgkl5cugk/+Q==
"@prisma/ink-components@2.1.3":
version "2.1.3"
resolved "https://registry.yarnpkg.com/@prisma/ink-components/-/ink-components-2.1.3.tgz#fc2fa9eb629a671e044587fea0f863f39ca1f092"
integrity sha512-4DcHCpx7ImYPkavEguKCLIc2BvhjKtV5TllypWeaq8lQXlBXxMd2aM0n3THTGMlGqj5tmoVoyP0GsYb9/rQMKw==
dependencies:
"@prisma/debug" "2.0.0"
"@prisma/debug" "2.1.3"
chalk "^3.0.0"
cli-truncate "2.1.0"
figures "^3.2.0"
ink-spinner "^3.0.1"
string-width "^4.2.0"
terminal-link "^2.1.1"

"@prisma/migrate@2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@prisma/migrate/-/migrate-2.0.0.tgz#8fa5a8a714a91bcbab9049447ca231db2b2832ff"
integrity sha512-yzW8apWptJExzIAFrAqqXpXqnknSZIgBizmx5YMfDSse1dyb92ZIvj7Hby5AWVe7p1/P9MzfhOthJBov0s6CIA==
"@prisma/migrate@2.1.3":
version "2.1.3"
resolved "https://registry.yarnpkg.com/@prisma/migrate/-/migrate-2.1.3.tgz#5e949225d57665b3b2af3b23f74aca7b831f2013"
integrity sha512-lFoSadKkmxPCF5J5CEUu6e9f1hNm2AT4kqjz2d5M3pb7mNKFaxc0to2NtkjYSMa481A7fqfXyRM640qvcjACpw==
dependencies:
"@prisma/debug" "2.0.0"
"@prisma/fetch-engine" "2.0.0"
"@prisma/get-platform" "2.0.0"
"@prisma/ink-components" "2.0.0"
"@prisma/debug" "2.1.3"
"@prisma/fetch-engine" "2.1.3"
"@prisma/get-platform" "2.1.3"
"@prisma/ink-components" "2.1.3"
"@prisma/studio-server" "0.229.0"
"@prisma/studio-types" "0.229.0"
ansi-escapes "^4.3.1"
Expand Down Expand Up @@ -1019,21 +984,21 @@
tmp "0.1.0"
url-parse "^1.4.7"

"@prisma/sdk@2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@prisma/sdk/-/sdk-2.0.1.tgz#14c6f44ddce54af17d8981c50cf80b9e5d2a88d6"
integrity sha512-vPLHsuiFKpLqhj8HfOUrSYyWUMzbgAv5JIKtUldRUyXjoBgoGCB4E0vXxV3/M7aYLKk9SkdsxjWWE+HZrnD65A==
"@prisma/sdk@2.1.3":
version "2.1.3"
resolved "https://registry.yarnpkg.com/@prisma/sdk/-/sdk-2.1.3.tgz#36feb7a62fc566b580e8eb642b9d6c74e9a931c6"
integrity sha512-cMk4Hlkza7DmrgDMFtQt60znhZW0el91a6yXrX/+GQu6/rWAAYuMRYO9gHb63rnqHT41yjHGdfbNAUSpSBnoJA==
dependencies:
"@apexearth/copy" "^1.4.5"
"@prisma/debug" "2.0.1"
"@prisma/engine-core" "2.0.1-1"
"@prisma/fetch-engine" "2.0.1"
"@prisma/generator-helper" "2.0.1"
"@prisma/get-platform" "2.0.1"
"@prisma/debug" "2.1.3"
"@prisma/engine-core" "2.1.3"
"@prisma/fetch-engine" "2.1.3"
"@prisma/generator-helper" "2.1.3"
"@prisma/get-platform" "2.1.3"
archiver "^4.0.0"
arg "^4.1.3"
chalk "3.0.0"
checkpoint-client "^1.0.7"
checkpoint-client "1.1.2"
cli-truncate "^2.1.0"
execa "^4.0.0"
globby "^11.0.0"
Expand Down Expand Up @@ -2323,7 +2288,7 @@ char-regex@^1.0.2:
resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==

checkpoint-client@^1.0.7:
checkpoint-client@1.1.2, checkpoint-client@^1.0.7:
version "1.1.2"
resolved "https://registry.yarnpkg.com/checkpoint-client/-/checkpoint-client-1.1.2.tgz#2f78f11d5e2f69366d296134deaca877052843d0"
integrity sha512-Nvwpf7qi5bJD8+HAZ8HWzdHZBQJxi+Sw33OI8ahx1H0yby8nPcpP+h4bYYhl+8z0XrjBaUz5p6xQeTinzUi/Qw==
Expand Down Expand Up @@ -3126,7 +3091,7 @@ execa@^3.2.0:
signal-exit "^3.0.2"
strip-final-newline "^2.0.0"

execa@^4.0.0:
execa@^4.0.0, execa@^4.0.2:
version "4.0.2"
resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.2.tgz#ad87fb7b2d9d564f70d2b62d511bee41d5cbb240"
integrity sha512-QI2zLa6CjGWdiQsmSkZoGtDx2N+cQIGb3yNolGTdjSQzydzLgYYf8LRuagp7S7fPimjcrzUDSUFd/MgzELMi4Q==
Expand Down Expand Up @@ -7386,6 +7351,10 @@ unc-path-regex@^0.1.2:
resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"
integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo=

"undici@github:mcollina/undici":
version "1.0.3"
resolved "https://codeload.github.com/mcollina/undici/tar.gz/f541e0b10fdee1ae1f7c5344ca19f8218e38dc60"

undici@mcollina/undici:
version "1.0.3"
resolved "https://codeload.github.com/mcollina/undici/tar.gz/28c189b431be4358df87c690d70d81b55f3fa714"
Expand Down