Skip to content

chore(deps-dev): bump @builder.io/qwik from 1.12.1 to 1.15.0 #112

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 28, 2025

Bumps @builder.io/qwik from 1.12.1 to 1.15.0.

Release notes

Sourced from @​builder.io/qwik's releases.

@​builder.io/[email protected]

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]

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)

... (truncated)

Changelog

Sourced from @​builder.io/qwik's changelog.

1.15.0

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)

1.14.1

1.14.0

Minor Changes

  • ✨ Major improvements to prefetching with automatic bundle preloading (by @​wmertens in #7453)

    • This removes the need for service workers, and instead utilize modulepreload link tags for better browser integration.
    • Improves initial load performance by including dynamic imports in the prefetch
    • Reduces complexity while maintaining similar (and even better) functionality
    • Enables some preloading capabilities in dev mode (SSR result only)
    • Includes path-to-bundle mapping in bundle graph (this improves the experience using the <Link> component, AKA "single page app" mode)
    • Server now has built-in manifest support (so no need to pass manifest around)
    • Moves insights-related build code to insights plugin

    ⚠️ ATTENTION:

    • Keep your service worker code as is (either <ServiceWorkerRegister/> or <PrefetchServiceWorker/>).
    • Configure your server to provide long caching headers.

... (truncated)

Commits
  • 44ea2ce Version Packages
  • 316bae2 fix: separate if statements in manifest.ts for bundling edge cases
  • 7bb5229 fix: invalidate module in createQwikPlugin slows down cypress component tests...
  • ca12642 fix: qwikloader.cjs missing in non esm environments
  • d758b2a chore: allow vite 5-7 (#7695)
  • 09308a1 fix: set correct script type for qwik loader
  • ce0876a 🐛 fix(#7697): use correct working directory for Deno environment (#7699)
  • da5a118 fix(optimizer): remove backdrop-filter from vite-error-overlay for perf (#7676)
  • fc6b046 🐛 Fix: support q-manifest resolution under Bun runtime (#7565)
  • 61213c5 chore(qwikloader): remove IIFE, not needed
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@builder.io/qwik](https://github.com/QwikDev/qwik/tree/HEAD/packages/qwik) from 1.12.1 to 1.15.0.
- [Release notes](https://github.com/QwikDev/qwik/releases)
- [Changelog](https://github.com/QwikDev/qwik/blob/main/packages/qwik/CHANGELOG.md)
- [Commits](https://github.com/QwikDev/qwik/commits/@builder.io/[email protected]/packages/qwik)

---
updated-dependencies:
- dependency-name: "@builder.io/qwik"
  dependency-version: 1.15.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file npm labels Jul 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file npm
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants