Skip to content

Releases: QwikDev/qwik

[email protected]

27 Jul 19:09
c42693f
Compare
Choose a tag to compare
[email protected] Pre-release
Pre-release
[email protected]

[email protected]

27 Jul 19:09
c42693f
Compare
Choose a tag to compare
[email protected] Pre-release
Pre-release
[email protected]

@qwik.dev/[email protected]

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/[email protected]

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

Patch Changes

@qwik.dev/[email protected]

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)

[email protected]

21 Jul 09:34
21c3f87
Compare
Choose a tag to compare

Patch Changes

[email protected]

21 Jul 09:34
21c3f87
Compare
Choose a tag to compare

Patch Changes

@builder.io/[email protected]

21 Jul 09:34
21c3f87
Compare
Choose a tag to compare

Minor Changes

  • 🐞🩹 the preloader bundle graph file is now built as an asset. This is cleaner and avoids i18n translation of the file. (by @wmertens in #7650)

Patch Changes

  • 🐞🩹 Use correct working directory for Deno environment (by @siguici in #7699)

  • ⚑ the qwikloader is no longer embedded in the SSR results. Instead, the same techniques are used as for the preloader to ensure that the qwikloader is active as soon as possible, loaded from a separate bundle. This reduces SSR page size by several kB end ensures that subsequent qwikloader loads are nearly instant. (by @wmertens in #7613)

  • 🐞🩹 Removed backdrop-filter of vite-error-overlay to prevent perf issues with multiple errors (by @intellix in #7676)

  • 🐞🩹 assetsDir and debug:true will no longer break your application. (by @maiieul in #7638)

  • 🐞🩹 We now also output the preloader as .cjs for non esm environments (e.g. jest 29 and below). (by @maiieul in #7736)

  • 🐞🩹 cypress component tests became slow in 1.9.1. This is now fixed. (by @maiieul in #7736)

  • ✨ q-manifest.json now also includes the generated assets (by @wmertens in #7650)

  • 🐞🩹 support q-manifest resolution under Bun runtime (#7565) (by @siguici in #7669)

  • 🐞🩹 set correct script type for qwik loader (by @Varixo in #7710)

  • πŸ›  update devDependencies and configurations (by @JerryWu1234 in #7695)

@builder.io/[email protected]

21 Jul 09:34
21c3f87
Compare
Choose a tag to compare

Minor Changes

  • ✨ Added rewrite() to the RequestEvent object. It works like redirect but does not change the URL, (by @omerman in #7562)
    think of it as an internal redirect.

    Example usage:

    export const onRequest: RequestHandler = async ({ url, rewrite }) => {
      if (url.pathname.includes('/articles/the-best-article-in-the-world')) {
        const artistId = db.getArticleByName('the-best-article-in-the-world');
    
        // Url will remain /articles/the-best-article-in-the-world, but under the hood,
        // will render /articles/${artistId}
        throw rewrite(`/articles/${artistId}`);
      }
    };

Patch Changes

  • 🐞🩹 Change Content-Type header in qwik requests to respect RFC 7231 (by @joaomaridalho in #7690)

  • 🐞🩹 link/useNavigate with query params don't override loader/middleware redirect with query params anymore. (by @maiieul in #7733)

  • 🐞🩹 allow cross-protocol requests from the same domain (by @gioboa in #7693)

  • πŸ›  update devDependencies and configurations (by @JerryWu1234 in #7695)

  • 🐞🩹 Duplicate ServerError class during dev mode (by @wmertens in #7724)

@builder.io/[email protected]

21 Jul 09:34
21c3f87
Compare
Choose a tag to compare

Patch Changes