A huge shout out and thanks to everyone who tried Redwood, reported bugs, and contributed fixes!
Fixed
- Abort generator commands when they throw #203
- Build command for generators was not case sensitive #204 @bketelsen
- Dev server would restart when sqlite file was modified. Ignore
.db
and.sqlite
files #223 @m-leon - Update SDL generation to use scalar types for input types #229 @chris-hailstorm
- Drop requirement for
id
column kind to be namedid
#237 @m-leon - Support spaces in path for redwood-create-app #238
Added
Changed
- Run db commands explicitly with
yargs
#236 - Renamed DB_HOST env var to DATABASE_URL redwoodjs/create-redwood-app/pull/33
How to Upgrade your RedwoodJS App
Four packages should be updated to v0.2.0:
Root directory package.json
"@redwoodjs/core": "^0.2.0”
web/package.json
"@redwoodjs/web": "^0.2.0”
"@redwoodjs/router": "^0.2.0”
api/package.json
"@redwoodjs/api": "^0.2.0”
Once you’ve changed and saved the files, run yarn install
from root directory.