Skip to content

Releases: QwikDev/qwik

eslint-plugin-qwik@2.0.0-beta.7

06 Aug 09:37
2dd89a6
Compare
Choose a tag to compare
Pre-release
eslint-plugin-qwik@2.0.0-beta.7

create-qwik@2.0.0-beta.7

06 Aug 09:37
2dd89a6
Compare
Choose a tag to compare
Pre-release
create-qwik@2.0.0-beta.7

@qwik.dev/router@2.0.0-beta.7

06 Aug 09:37
2dd89a6
Compare
Choose a tag to compare
Pre-release

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 the head.styles and head.scripts types more like the head.meta and head.links types. (by @wmertens in #7775)

  • createRenderer() wraps the renderToStream() function with Qwik Router types, for nicer entry.ssr files. (by @wmertens in #7770)

  • ✨ You can now put documentHead into the rendering functions as part of the serverData option. This is useful for passing title, meta tags, scripts, etc. to the useDocumentHead() hook from within the server. (by @wmertens in #7770)

@qwik.dev/react@2.0.0-beta.7

06 Aug 09:37
2dd89a6
Compare
Choose a tag to compare
Pre-release

Patch Changes

  • Updated dependencies []:
    • @qwik.dev/core@2.0.0-beta.7

@qwik.dev/core@2.0.0-beta.7

06 Aug 09:37
2dd89a6
Compare
Choose a tag to compare
Pre-release
@qwik.dev/core@2.0.0-beta.7

eslint-plugin-qwik@2.0.0-beta.6

27 Jul 19:09
c42693f
Compare
Choose a tag to compare
Pre-release
eslint-plugin-qwik@2.0.0-beta.6

create-qwik@2.0.0-beta.6

27 Jul 19:09
c42693f
Compare
Choose a tag to compare
Pre-release
create-qwik@2.0.0-beta.6

@qwik.dev/router@2.0.0-beta.6

27 Jul 19:09
c42693f
Compare
Choose a tag to compare
Pre-release

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

27 Jul 19:09
c42693f
Compare
Choose a tag to compare
Pre-release

Patch Changes

@qwik.dev/core@2.0.0-beta.6

27 Jul 19:09
c42693f
Compare
Choose a tag to compare
Pre-release

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 to qwikVite 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)