Patch release with the following fixes:
Tip 👇
If you're deploying to Heroku, or using Heroku buildpacks to self host, they have recently upgraded their environment to use Node 16, which is incompatible with Prisma 2.21.x
You can set the version of node to use by changing your package.json
like this:
- "node": ">=14",
+ "node": "14.x",
"yarn": ">=1.15"
},