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
Patch Changes
🐞🩹 fix up vercel starter config (by @cmbartschat in #7663)
🛠 update devDependencies and configurations (by @JerryWu1234 in #7695)
July 21st, 2025
Minor Changes
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)
July 21st, 2025
Patch Changes
July 6th, 2025
July 6th, 2025