July 27th, 2025
The latest news releases from the Qwik team
July 27th, 2025
Minor Changes
✨ the QRL segment mapping during Vite dev mode now happens in core and does not require providing a separate
symbolMapperfunction 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)
🐞🩹
qwikVitehas 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
srcInputoption toqwikViteis 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)
July 21st, 2025
Patch Changes
- 🛠 update devDependencies and configurations (by @JerryWu1234 in #7695)
July 21st, 2025
Patch Changes
🐞🩹 fix up vercel starter config (by @cmbartschat in #7663)
🛠 update devDependencies and configurations (by @JerryWu1234 in #7695)
July 21st, 2025
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)
:zap: 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)
July 21st, 2025
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)