Skip to content

v0.15.0

Compare
Choose a tag to compare
@thedavidprice thedavidprice released this 30 Jul 06:56
· 9606 commits to main since this release

This release comes jam-packed with new features, improvements, and fixes. It's hard to believe it's only been 9 days since our previous release. None of this would be possible without the amazing Redwood Community that continues to grow and support each other and this project. To everyone who helped out on the forums, created an issue, opened a PR, or improved documentation, thank you πŸš€

v0.15.0 Highlights

  • Data Migrations: 'cause everybody needs to move data around sometimes πŸš€
    • Documentation
    • CLI Command
    • Note: code modification are required to use this feature. See "How to upgrade" section below.
  • Prisma Dynamic Provider Syntax πŸŽ‰
    • all your DBs, all in one syntax
    • fully backwards compatible
    • if you want to use the new syntax, first read this, then remove the Netlify plugin from netlify.toml
  • GraphQL Mocks working with Jest πŸŽ‰
    • this advances an integrated DX for Jest across both Web and API (using magic)
    • documentation

Changed

Added

  • DB: data migrations #852
  • Tests: Add graphQL mocks to jest #894
  • API: add a way to mock data in Storybook and Jest #856
  • Tests: add Router tests #858 @Terris
  • Config: Add .idea/ dir for Jetbrains IDE's config to .gitignore #863 @biphobe
  • Config: add global declarations for automatically imported functions #884
  • Apollo Client: export useLazyQuery/useSubscription from @apollo #865 @biphobe
  • CLI: Add yarn rw dev option to pass any Webpack config as a string #904

Fixed

  • Generators: fix sdl generator to support Json type #824 @redstab
  • Dev-server: Bump kill-port #862 @Tobbe
  • Tests: fix test db path on Windows #869 @Tobbe
  • Auth: small Firebase scaffolding fixes. #873 @janimo
  • Auth: isAuthenticated should be false when getCurrentUser fails #878
  • API: Stringify function body prevents Netlify 502 error #877 @dthyresson
  • API: Cell Operation Names not PascalCased #888 @dthyresson
  • Config: Set cwd for generator babel transforms #879
  • Tests: fix jest module alias resolution #906

Breaking ⚠️

Nothing to see here! πŸ™ˆ


How to upgrade RedwoodJS to v0.15.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.

Manual Code Modifications

  1. To support dataMigrations during deploy, the following code modifications are required to the files .env.defaults, schema.prisma, and netlify.toml:

    • Set Prisma binaryTargets to be "native". Edit the files .env.defaults and api/prisma/schema.prisma with changes via this commit
    • Add the dataMigrate up command to Netlify deploy build by editing the file netlify.toml with changes via this commit
  2. Update .env.defaults to silence the Prisma "update available" notifier ('cause we don't actually want you to do that)

Upgrade Packages

Run the following command within your App directory:

yarn rw upgrade

Upgrade Tip: for this upgrade, you might have some issues with the old generated Prisma Client saved in node_modules. You can remove the node_modules directory and/or try yarn install --force. And you'll need to regenerate the Prisma Client with yarn rw db up.

To run the upgrade command, your project must be using v0.6.0 or greater. See this forum topic for manual upgrade instructions and general upgrade help.