Fixed
- Create-Redwood-App move ‘binaryTarge’ from
schema.prisma
to env var redwoodjs/create-redwood-app/pull/39 - skip
scaffold.css
if it already exists 325433c - Set fetchPolicy to
cache-and-network
for scaffolded list page #281
Items below include changes from v0.2.3 and v0.2.4
- Windows fix Cell regex issue #276
- Pass resolver info object to services e842179
- misc bug fixes and repo-specific CI improvements to tests and linter #247 #257 #262 #274
- return RWJS version in GraphQL query #255 | kudos @AryanJ-NYC
- improve README with links and fixes #266 | kudos @Thieffen
- security warning fix #274
How to Upgrade your RedwoodJS App
File Changes
You will need to replicate changes to three files shown in redwoodjs/create-redwood-app/#39
.env
.env.defaults
api/prisma/schema.prisma
Package Updates
Four packages should be updated to v0.2.5
Root directory package.json
"@redwoodjs/core": "^0.2.5”
web/package.json"@redwoodjs/web": "^0.2.5”
"@redwoodjs/router": "^0.2.5”
api/package.json"@redwoodjs/api": "^0.2.5”
After updating and saving the files, install the packages from the root directory:
$ yarn install