I’m trying to update `@prisma/client` and `@prisma...
# graphql-nexus
d
I’m trying to update
@prisma/client
and
@prisma/cli
but I’m getting the following warning related to
nexus-plugin-prisma
. Should I just abandon the update for now or can somebody tell me what the possible undefined behaviours and bugs could be?
Copy code
Warning: nexus-plugin-prisma@0.23.1 does not support @prisma/client@2.10.2. The supported range is: `2.10.0`. This could lead to undefined behaviors and bugs.
I noticed that
nexus-plugin-prisma
has
@prisma/client
as a dependency pinned to the specific
2.1.0
version and since its last release there’ve been two Prisma patches. It also has had PRs bumping this to
2.10.1
and now
2.10.2
but they’ve haven’t been merged.
s
For now you can do
npm install --force nexus-plugin-prisma
r
@Darryl 👋 Yes that’s just a warning and for now if you would want then you can revert to
2.10.0
or if it’s working fine for you then stick to the latest.
d
Hi! 👋 Thanks to both of you for the replies. Much appreciated.
💯 2