v0.13.0
v0.13.0 Highlights
- Initial Storybook Integration and Support
- read this Forum Post to get started
- tl;dr run the command
yarn rw storybook
- Prisma Studio Integration: explore and manage your data interactively
- run using the command
yarn rw db studio
- video overview of Prisma Studio in action
- run using the command
- Forms now automatically coerce values to the Prisma data type
- see the updated Forms documentation
Documentation contributors, we salute you! @Terris @jeliasson @amorriscode @tctrautman @SimeonGriggs @dfundingsland
And Thank You to the amazing community for being awesome to each other across GitHub, Discord, and the Forums. The encouraging good vibes are contagious π€ π
Changed
- Auth: getCurrentUser given both decoded & access tokens #779 @dthyresson
- Tests: Allow configuring test database #691 @RobertBroersma
- Generator: humanize scaffold
<th>
#733 @Tobbe - Config: Make sub-directories work in import-dir #788
- Deprecation Note: this replaces
@redwoodjs/api/importAll.macro
, which is now deprecated - See "How to upgrade" section for optional code modification
- Deprecation Note: this replaces
Added
- Framework: Add @redwoodjs/project-model (+ Language Server) #810 #814 @aldonline π
- This is the exciting beginning of what will soon become a kind of API for the Framework itself. More details to come over the next several weeks.
- Learn more via this README
- Prisma: Add prisma studio via db studio command #799 #801 π
- Forms: Coerce form values to Prisma type #749 @Tobbe π
- docs?
- Storybook: Add support for Storybook #742 #815 π
- initial support including Generators for Layouts, Components, Cells and Pages
- run using
yarn rw storybook
- TS: Add initial types to Router #790
- Cells: Add cache-and-network fetchPolicy to beforeQuery #796
- Framework: Add test script to web #800 @Tobbe
Fixed
- Generators: Workaround for POSIX-to-Windows path conversion #763 @Tobbe
- Generators: fix generated relational arrays #772 @Rosenberg96
- API: Fix for function-based context to run on each request #770 @nexneo
- Build: Do not build test files for API #789
Breaking β οΈ
Nothing to see here! π
How to upgrade RedwoodJS packages to v0.13.0
π IMPORTANT: Skipping versions when upgrading is not recommended and will likely cause problems. Do read through all Release Notes between your current version and this latest version. Each minor release will likely require you to implement breaking change fixes and apply manual code modifications.
π¨ Potential Failed to Compile Error
When upgrading, some individuals have reported an error having to do with a babel module not being found, which results in a compile error. If you encounter this, here's the simple workaround:
- after upgrading, delete
yarn.lock
- run
yarn install
Manual Code Modification (Optional)
The macro @redwoodjs/api/importAll.macro
is now deprecated in favor of a new babel plugin supporting improved syntax. See #788
To use the new babel plugin in your Redwood App, you'll need to manually modify the file api/src/functions/graphql.js
with these changes from #71
Upgrade Packages: If the Current Version is > v0.6.0
Redwood v0.6.0 included a new CLI command to upgrade @redwoodjs NPM packages. Run the following command within your App directory:
yarn rw upgrade
Upgrade Packages: If the Current Version is < v0.6.0
Manually update the following @redwoodjs/*
packages.
Root directory package.json
"@redwoodjs/core": "^0.13.0β
web/package.json
"@redwoodjs/web": "^0.13.0β
"@redwoodjs/router": "^0.13.0β
"@redwoodjs/auth": "^0.13.0β
(if installed)
api/package.json
"@redwoodjs/api": "^0.13.0β
Install the upgraded packages
$ yarn install