Patch Release
This release includes the following fixes:
- fix(generators): Generate types after gen-ing files #4376 by @dac09
- fix(scenario): Accidentally comitted debugging change #4378 by @dac09
- Downgrade Prisma to 3.8.1 #4411 by @Tobbe
- See Issues #4396 and prisma/prisma#11641
Upgrade Help
Depending on the version your project is upgrading from, it's possible to run into Prisma Client errors after upgrading. This would be due to an existing, generated Prisma Client in node_modules/.prisma
causing a conflict.
The easiest solution is to delete all node_modules
and then reinstall dependencies.
- delete
./node_modules
- delete
./api/node_modules
(if applicable) - delete
./web/node_modules
(if applicable) - run
yarn install
and thenyarn redwood dev
to confirm the upgrade is working