v7.0.7
Patch Release
-
fix(context): Re-export context from graphql-server (#10117) by @Josh-Walker-GM
This change re-exports the
context
andsetContext
properties in@redwoodjs/graphql-server
from the@redwoodjs/context
package where they are now (as of v7) located. This is done to retroactively ease the v7 transition and provide a non-breaking rather than a breaking change.See this forum post and the links within for more information on this change.
-
fix(scenario): Make sure to clean up scenarios even if tests fail (#10112) by @dac09
Fixes an issue where a unit test failure would cause the scenario cleanup to be skipped. Thanks @peraltafederico and @cjreimer for highlighting this!
-
fix(serve): Allow periods in most paths (#10114) by @Tobbe
Fixes #9969. Partial fix for route paths with periods in them.
It's only "partial" because it doesn't fix it for
yarn rw dev
, as that's a Vite bug (vitejs/vite#2415 (comment)). There's also an edge case foryarn rw serve
where this doesn't fully handle client-side routes that start with /assets/ and that also have a last-segment that accepts a period, like /assets/client-route-image.jpg.