Releases: QwikDev/qwik
eslint-plugin-qwik@2.0.0-beta.7
eslint-plugin-qwik@2.0.0-beta.7
create-qwik@2.0.0-beta.7
create-qwik@2.0.0-beta.7
@qwik.dev/router@2.0.0-beta.7
Minor Changes
-
✨ useQwikRouter() hook replaces QwikRouterProvider. This gives access to the context immediately and is slightly more efficient. (by @wmertens in #7731)
-
✨ add
DocumentHeadTags
component and make thehead.styles
andhead.scripts
types more like thehead.meta
andhead.links
types. (by @wmertens in #7775) -
✨
createRenderer()
wraps therenderToStream()
function with Qwik Router types, for nicerentry.ssr
files. (by @wmertens in #7770) -
✨ You can now put
documentHead
into the rendering functions as part of theserverData
option. This is useful for passing title, meta tags, scripts, etc. to theuseDocumentHead()
hook from within the server. (by @wmertens in #7770)
@qwik.dev/react@2.0.0-beta.7
Patch Changes
- Updated dependencies []:
- @qwik.dev/core@2.0.0-beta.7
@qwik.dev/core@2.0.0-beta.7
@qwik.dev/core@2.0.0-beta.7
eslint-plugin-qwik@2.0.0-beta.6
eslint-plugin-qwik@2.0.0-beta.6
create-qwik@2.0.0-beta.6
create-qwik@2.0.0-beta.6
@qwik.dev/router@2.0.0-beta.6
Minor Changes
-
✨ qwikRouter middleware no longer needs qwikRouterConfig, it handles it internally (by @wmertens in #7748)
-
🐞🩹 the SSR internal build imports
@qwik-router-not-found-paths
and@qwik-router-static-paths
are no longer used. Instead, the data is embedded directly. This might be a breaking change for some users that forked an adapter, in that case just remove the imports. (by @wmertens in #7755)
Patch Changes
-
Bugfix - rename the view transition type in CSS to prevent default view transition on SPA navigation (by @GrandSchtroumpf in #7713)
-
🐞🩹 getting invoke context for loaders in production (by @Varixo in #7730)
-
✨ Server output chunk files are now under their own build/ subdir, like the client build. This makes it easier to override the chunk filenames. This is possible because the Router metadata files are now an earlier part of the build process. (by @wmertens in #7748)
@qwik.dev/react@2.0.0-beta.6
@qwik.dev/core@2.0.0-beta.6
Minor Changes
-
✨ the QRL segment mapping during Vite dev mode now happens in core and does not require providing a separate
symbolMapper
function any more. (by @wmertens in #7748) -
✨ Server output chunk files are now under their own build/ subdir, like the client build. This makes it easier to override the chunk filenames. This is possible because the Router metadata files are now an earlier part of the build process. (by @wmertens in #7748)
-
🐞🩹
qwikVite
has better vite config handling around input files, and no longer writes the q-manifest file to a temp dir. (by @wmertens in #7748)
Patch Changes
-
🐞🩹 the
srcInput
option toqwikVite
is deprecated because it's unused. (by @wmertens in #7748) -
🐞🩹 preserve innerHTML after component rerender (by @Varixo in #7740)
-
🐞🩹 render SVG attributes with correct namespace (by @Varixo in #7705)
-
🐞🩹 using useOn and useVisibleTask$ in component with primitive value only (by @Varixo in #7746)