Skip to content

Releases: blitz-js/blitz

v0.16.4

13 Jul 12:35

Choose a tag to compare

🐞 Patches

  • Upgrade react-query to 2.4.15: #743
  • Fix bug preventing use of next-compose-plugins: #746
  • Fix tiny page template issue with an unused import: #744
  • Updates README.md in the new app template: #735

Internal Meta Changes

  • Fix comment spelling in display package: #738
  • Fix lint warnings: #742

Credits

Huge thanks to @peaonunes and @dkempner for helping!

v0.16.3

08 Jul 10:20

Choose a tag to compare

🐞 Patches

  • Fix issue with using non-page files inside pages folders: #733

Internal Meta Changes

Credits

Huge thanks to @ryardley for helping!

v0.16.2

06 Jul 14:46

Choose a tag to compare

🐞 Patches

  • Update blitz db cli command to default to --help if no command specified: #730
  • Fix buggy global/local CLI resolution code: #731

Internal Meta Changes

  • Docs: add tylangesmith as a contributor: #732

Credits

Huge thanks to @tylangesmith for helping!

v0.16.1

02 Jul 17:05

Choose a tag to compare

🐞 Patches

  • Fix global middleware not running with blitz start --production: #726

v0.16.0

01 Jul 09:46

Choose a tag to compare

🔥 Breaking Changes

  • Upgrade React Query to v2: #720
    • Dependent queries are now accomplished with the enabled flag instead of a function that 'throws':
      --useQuery(getProjects, () => ({where: {id: projectId}})
      ++useQuery(getProjects, {where: {id: projectId}}, { enabled: !!projectId })
    • There are some other breaking changes for less commonly used features. You can see the full list of breaking changes here: react-query v2 release notes

🚀 Minor Changes

  • Add support for Optimistic UI Updates by adding refetch option to useQuery mutate(): #715

🐞 Patches

  • Fix blitz db reset for Prisma >= 2.0.0-beta.8: #716
  • Fix middleware error handling when using next(error): #719
  • Fix Router export from blitz: #722
  • Fix experimental flags in blitz.config.js not being used: #721

Internal Meta Changes

Credits

Huge thanks to @shaunchurch, @toshi1127, @SigurdMW, and @ganeshmani for helping!

v0.15.3

23 Jun 13:46

Choose a tag to compare

🐞 Patches

  • Fix blitz start -p 1234 not throwing an error if port 1234 is already in use: #631
  • Fix blitz new dependency install issue (missing dependency in @blitzjs/generator): #711
  • Fix field names being modified during model generation: #708

Internal Meta Changes

Credits

Huge thanks to @ganeshmani, @wKovacs64, and @toshi1127 for helping!

v0.15.2

20 Jun 09:01

Choose a tag to compare

🐞 Patches

  • Fix page generator with custom context: #669
  • Fix broken CLI from error: @blitzjs/cli: Cannot find module 'react': #704
  • Fix broken cli when using npm where global blitz version used instead of local: #705
  • Various DX improvements: #706

Internal Meta Changes

  • Standardize prettier options across all Blitz code bases: #703
  • Add @shaunchurch as a contributor: 8ae42c5
  • GUI design polish: #702
  • Remove post-checkout git hook - too annoying: 25f96d0

Credits

Huge thanks to @peaonunes, @wKovacs64, and @merelinguist for helping!

v0.15.1

17 Jun 11:17

Choose a tag to compare

🐞 Patches

  • Fix the stuck at _manifest bug on blitz start #697
  • Update react-query to 1.5.8: #692
  • [Page template] Forward submit event from form to parent event handler: #695

Internal Meta Changes

  • Docs: add simonedelmann as a contributor: #693
  • Update MEETING_NOTES.md: 581e2fa

Credits

Huge thanks to @simonedelmann, @wKovacs64, and @ryardley for helping!

v0.15.0

16 Jun 11:03

Choose a tag to compare

💥 Breaking Changes

  • Change query in useRouter and withRouter to only have query string items and then add params which contains only the dynamic route parameters (see the new docs): #677
    • This brings useRouter and withRouter into harmony with our useParams() and useRouterQuery() hooks

🚀 Minor Changes

🐞 Patches

  • Fix top level await in blitz console 🎉: #659
  • Prevent blitz db migrate from attempting to create new migration files in production: #683
  • Ignore all .git sub files and folders: #687
  • Fix typo in model generation output: #688

Internal Meta Changes

  • Docs: add toshi1127 as a contributor: #690
  • Docs: add toshi1127 as a contributor: #691

Credits

Huge thanks to @toshi1127, @ryardley, and @wKovacs64 for helping!

v0.14.1

15 Jun 02:43

Choose a tag to compare

🐞 Patches

  • Add spinner for Prettier formatting during 'blitz new': #680
  • Fix missing useParam import in edit.tsx page template: #684
  • Possible fix for stuck at _manifest: Debounce manifest writing: #685

Internal Meta Changes

  • Syncify getConfig method in @blitzjs/config package: #676
  • Fix eslint warnings in GUI: #679
  • Docs: add fnoah as a contributor: #681
  • Docs: add donni106 as a contributor: #686

Credits

Huge thanks to @fnoah, @donni106, @ryardley, and @Zeko369 for helping!