Releases: redwoodjs/redwood
v0.3.0
v0.2.5
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
v0.2.2
Fixed
- Fix order of routes #211 @gielcobben
- Update submit button to accept references #230 @leonardoelias
- Do not duplicate routes #241 @sharcastic
- Automatic imports for page are now fixed in windows. #246
How to Upgrade your RedwoodJS App
Four packages should be updated to v0.2.2:
Root directory package.json
"@redwoodjs/core": "^0.2.2”
web/package.json"@redwoodjs/web": "^0.2.2”
"@redwoodjs/router": "^0.2.2”
api/package.json"@redwoodjs/api": "^0.2.2”
Once you’ve changed and saved the files, run yarn install from root directory.
v0.2.0
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.
v0.0.1-alpha.23
v0.0.1-alpha.22
Added
- A splash page that's shown when you don't have any routes. #17 @mojombo
- Router parameter types. #47 @mojombo
- Added forms to
web
#45 @cannikin - Alias
redwood
CLI command torw
#79 @sw-yx - FatalErrorBoundary #61 @mojombo
- Use the
Empty
branch the data returned from a cell is empty. #54 @cannikin - Added a way to create a new Redwood project using
yarn create redwood-app path/to/project
#60 @peterp - An import all marco that runs at build time. #86 @peterp
Changed
- We're having some trouble with
favicons-webpack-plugin
. So we've removed it. #37 @cannikin - Automatically adds the
withCell
code at build time in Webpack. #48 @mojombo
Fixed
v0.0.1-alpha.18
In this release we continue towards making the steps in our tutorial a reality.
Added
- A webpack plugin that automatically imports components from
web/src/pages/*
intoRoutes.js
and an accompanying ESLint plugin that'll let you know when you're referencing a page that doesn't exist. #21 @mojombo getPaths
into@redwoodjs/core
that gives Redwood packages a single and stable place to references paths in a Redwood project. #24 @peterp
The one with the CLI
This is the first release of hammer and it doesn't actually do anything useful 🎉
I've added the hammer-cli
that allows anyone to add new commands in the the src/commands
directory. Right now we only have a single generate
command with a single component
generator. The component generator plops a ⚒ hammer style
component into the web/src/components
folder of your hammer project.