Skip to content

Releases: blitz-js/blitz

v0.16.5-canary.1

18 Jul 09:32
Compare
Choose a tag to compare
v0.16.5-canary.1 Pre-release
Pre-release

🚀 Minor Changes

  • Add optional returnType parameter to useParams: #759

🐞 Patches

  • Fix session management in SSR: #765
  • Fix a couple useParam() bugs + add full tests: #762
  • Fix small README typo in new app template: #764
  • Fix error during static pre-rendering in development: #761

Credits

Huge thanks to @cktang88 for helping!

v0.16.5-canary.0

16 Jul 14:12
Compare
Choose a tag to compare
v0.16.5-canary.0 Pre-release
Pre-release

🚀 Major Changes

v0.16.4

13 Jul 12:35
Compare
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
Compare
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
Compare
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
Compare
Choose a tag to compare

🐞 Patches

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

v0.16.0

01 Jul 09:46
Compare
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
Compare
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
Compare
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
Compare
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!