From 36e78df2c21e47002d7a3f507ca1f7f909dd199d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 21 May 2021 16:23:26 +0200 Subject: [PATCH] deps(deps): update dependencies (non-major) (#1064) Co-authored-by: Renovate Bot --- examples/blog/package.json | 4 ++-- examples/blog/yarn.lock | 26 +++++++++++++------------- examples/hello-world/package.json | 2 +- examples/hello-world/yarn.lock | 8 ++++---- 4 files changed, 20 insertions(+), 20 deletions(-) diff --git a/examples/blog/package.json b/examples/blog/package.json index 790284858..3c269c84f 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -15,11 +15,11 @@ "data:inject": "ts-node prisma/fake-data.ts" }, "dependencies": { - "@prisma/client": "2.21.x", + "@prisma/client": "2.23.x", "graphql": "^15.4.0", "graphql-yoga": "^1.18.2", "nexus": "^1.0.0", - "nexus-plugin-prisma": "0.34.0" + "nexus-plugin-prisma": "0.35.0" }, "devDependencies": { "@types/faker": "^5.1.5", diff --git a/examples/blog/yarn.lock b/examples/blog/yarn.lock index 3bd31ad74..6b018a8a9 100644 --- a/examples/blog/yarn.lock +++ b/examples/blog/yarn.lock @@ -2,17 +2,17 @@ # yarn lockfile v1 -"@prisma/client@2.21.x": - version "2.21.2" - resolved "https://registry.yarnpkg.com/@prisma/client/-/client-2.21.2.tgz#ca8489832da1d61add429390210be4d7896e5e29" - integrity sha512-UjkOXYpxLuHyoMDsP2m0LTcxhrjQa1dEOLFe3aDrO/BLrs/2yUxyPdtwSKxizRXFzuXSGkKIK225vcjZRuMpAg== +"@prisma/client@2.23.x": + version "2.23.0" + resolved "https://registry.yarnpkg.com/@prisma/client/-/client-2.23.0.tgz#4bf16ab19b140873ba79bd159da86842b1746e0a" + integrity sha512-xsHdo3+wIH0hJVGfKHYTEKtifStjKH0b5t8t7hV32Fypq6+3uxhAi3F25yxuI4XSHXg21nb7Ha82lNwU/0TERA== dependencies: - "@prisma/engines-version" "2.21.0-36.e421996c87d5f3c8f7eeadd502d4ad402c89464d" + "@prisma/engines-version" "2.23.0-36.adf5e8cba3daf12d456d911d72b6e9418681b28b" -"@prisma/engines-version@2.21.0-36.e421996c87d5f3c8f7eeadd502d4ad402c89464d": - version "2.21.0-36.e421996c87d5f3c8f7eeadd502d4ad402c89464d" - resolved "https://registry.yarnpkg.com/@prisma/engines-version/-/engines-version-2.21.0-36.e421996c87d5f3c8f7eeadd502d4ad402c89464d.tgz#b749bae4173eb766dafc298aaa7d883c2dbe555b" - integrity sha512-9/fE1gdPWmjbMjXUJjrTMt848TsgEnSjZCcJ1wu9OAcRlAKKJBLehftqC3gSEShDijvMYgeTdGU5snMpwmv4vg== +"@prisma/engines-version@2.23.0-36.adf5e8cba3daf12d456d911d72b6e9418681b28b": + version "2.23.0-36.adf5e8cba3daf12d456d911d72b6e9418681b28b" + resolved "https://registry.yarnpkg.com/@prisma/engines-version/-/engines-version-2.23.0-36.adf5e8cba3daf12d456d911d72b6e9418681b28b.tgz#c813279bbea48dedad039b0bc3b044117d2dbaa1" + integrity sha512-VNgnOe+oPQKmy3HOtWi/Q1fvcKZUQkf1OfTD1pzrLBx9tJPejyxt1Mq54L+OOAuYvfrua6bmfojFVLh7uXuWVw== "@prisma/engines@2.21.0-36.e421996c87d5f3c8f7eeadd502d4ad402c89464d": version "2.21.0-36.e421996c87d5f3c8f7eeadd502d4ad402c89464d" @@ -1048,10 +1048,10 @@ negotiator@0.6.2: resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== -nexus-plugin-prisma@0.34.0: - version "0.34.0" - resolved "https://registry.yarnpkg.com/nexus-plugin-prisma/-/nexus-plugin-prisma-0.34.0.tgz#1f79837b50f86d948775a56269abf1d18744fe65" - integrity sha512-um1NVmPd82jnyKiJ2qDmrwLX+xRX/RqfkcVVrxTEGW6u7t3xqz1IWLzuziAg6aoY3mwGcBNOV0kMCSFKh4rogA== +nexus-plugin-prisma@0.35.0: + version "0.35.0" + resolved "https://registry.yarnpkg.com/nexus-plugin-prisma/-/nexus-plugin-prisma-0.35.0.tgz#ab725c88823ab38c18fed90cca72f05ee73f3425" + integrity sha512-zZh96Ol6eqDGGd2caZLayjDW5ruUxNdoglyAMa/bOTBfnxu1Keb9kOyD+n7zVV+Mot8t0GRvWS4XilXoKZF/Tg== dependencies: camelcase "^6.2.0" endent "^2.0.1" diff --git a/examples/hello-world/package.json b/examples/hello-world/package.json index 0cc7713ea..5972d7333 100644 --- a/examples/hello-world/package.json +++ b/examples/hello-world/package.json @@ -16,7 +16,7 @@ "graphql": "^15.4.0", "graphql-scalars": "^1.7.0", "nexus": "^1.0.0", - "nexus-plugin-prisma": "^0.32.0" + "nexus-plugin-prisma": "^0.35.0" }, "devDependencies": { "@types/express": "^4.17.9", diff --git a/examples/hello-world/yarn.lock b/examples/hello-world/yarn.lock index d5ffba0a0..28fb9aa32 100644 --- a/examples/hello-world/yarn.lock +++ b/examples/hello-world/yarn.lock @@ -1361,10 +1361,10 @@ negotiator@0.6.2: resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== -nexus-plugin-prisma@^0.32.0: - version "0.32.0" - resolved "https://registry.yarnpkg.com/nexus-plugin-prisma/-/nexus-plugin-prisma-0.32.0.tgz#54435e8f11b22bd7959f8446b998135db416c249" - integrity sha512-rAdDk53Y3FRvVkUDma9BbhSzPCxRydSC9IDIzFL/GF8eYssqNz6yqHrj47PArwOHT9wy7pGYWW/8gUSL4v9DmQ== +nexus-plugin-prisma@^0.35.0: + version "0.35.0" + resolved "https://registry.yarnpkg.com/nexus-plugin-prisma/-/nexus-plugin-prisma-0.35.0.tgz#ab725c88823ab38c18fed90cca72f05ee73f3425" + integrity sha512-zZh96Ol6eqDGGd2caZLayjDW5ruUxNdoglyAMa/bOTBfnxu1Keb9kOyD+n7zVV+Mot8t0GRvWS4XilXoKZF/Tg== dependencies: camelcase "^6.2.0" endent "^2.0.1"