Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 29, 2025

This PR contains the following updates:

Package Change Age Confidence
@builder.io/qwik-city (source) 1.12.1 -> 1.18.0 age confidence

Release Notes

QwikDev/qwik (@​builder.io/qwik-city)

v1.18.0

Compare Source

Patch Changes
  • execute cleanup cb for all component tree while calling dispose.cleanup method returned by render fn (by @​sashkashishka in #​8164)

v1.17.2

Compare Source

Patch Changes
  • 🐞🩹 history behavior in some edge cases has been brought inline with the E2E tests that were accidentally disabled. (the tests can't be disabled any more either) (by @​wmertens in 206f3e0)

  • 🐞🩹 SPA routing is broken unless origin matches value in in vite.config #​8093 (by @​termermc in #​8097)

    If the SSG origin was set to localhost:3000 and a user visited from 127.0.0.1:3000, SPA routing would be broken.

    Internally, useNavigate's context provider goto checks the new destination with the last route location. If the
    origin is different, it just does a normal browser navigation. This makes sense; links to other origins cannot use
    SPA routing. However, the initial route it compares was using an origin that came from the server environment.

    Now, the first navigation will set that initial route to the browser's actual href, eliminating the erroneous
    origin mismatch for SPA navigations.

  • 🐞🩹 this in various Qwik-City handlers is now RequestEvent again. (by @​wmertens in #​8111)

v1.17.1

Compare Source

Patch Changes
  • 🐞🩹 zod is now imported as import * as z from 'zod', which vastly improves bundling. The Insights app client code reduced by 12kB. (by @​wmertens in #​8042)

v1.17.0

Compare Source

Patch Changes
  • 🐞🩹 SSG sometimes hangs after completion, now we forcibly exit the SSG process when this happens. (by @​wmertens in #​7957)

  • 🐞🩹 return 404 for missing /build/ files. (by @​gioboa in #​7914)

  • 🐞🩹 redirecting internal q-data.json requests will keep the q-data.json suffix so that the client can still fetch the correct one (by @​wmertens in #​7988)

  • 🐞🩹 solve type error when using async _resolved function (by @​JerryWu1234 in #​7426)

  • 🐞🩹 while prefetching Link data, don't navigate to captive portals (by @​wmertens in #​7988)

v1.16.1

Compare Source

Patch Changes
  • 🐞🩹 fix behaviour of checkOrigin: "lax-proto" in createQwikCity (by @​asaharan in #​7865)

  • 🛠 Add check-client command to verify bundle freshness (by @​JerryWu1234 in #​7517)

  • 🐞🩹 return 404 with invalid URL. (by @​gioboa in #​7902)

  • ✨ All qwik packages are now marked as side effect free in their package.json. This should remove a few unecessary empty imports added by rollup and then not tree-shaken like import "./preloader.js". (by @​maiieul in #​7908)

  • ✨ SPA Link navigation now preloads the next route bundles on click with maximum probability, speeding up SPA navigation. (by @​maiieul in #​7849)

  • 🐞🩹 Your service-worker.js won't be unregistered anymore if you added custom logic to it. (by @​maiieul in #​7872)

    Note: Qwik 1.14.0 and above now use <link rel="modulepreload"> by default. If you didn't add custom service-worker logic, you should remove your service-worker.ts file(s) for the ServiceWorkerRegister Component to actually unregister the service-worker.js and delete its related cache. Make sure to keep the ServiceWorkerRegister Component in your app (without any service-worker.ts file) as long as you want to unregister the service-worker.js for your users.

v1.16.0

Compare Source

Minor Changes
Patch Changes
  • 🐞🩹 Keeping the service worker components now properly unregisters them. (by @​maiieul in #​7781)

  • 🐞🩹 redirects no longer take their parent layout's Cache-Control value by default and are instead set to no-store. This prevents issues in redirection logic. We might introduce another API to enable caching redirects in the future. (by @​maiieul in #​7811)

  • 🐞🩹 Keeping the service worker components now also removes their associated Cache storage. (by @​maiieul in #​7782)

v1.15.0

Compare Source

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

v1.14.1

Compare Source

v1.14.0

Compare Source

Minor Changes
  • 🐞🩹 qwik-city no longer forces q-data.json downloads, instead relying on the cache headers. This means that you have to make sure your q-data.json is served with Cache-Control headers that suit you. That file contains all the information about the route and is read for each qwik-city navigation. By default the data is cached for one hour. (by @​wmertens in #​7537)

  • 🛠 the service workers have been deprecated and replaced with entries that unregister them. If you have it enabled in production, you can remove it after a while once you are sure all your users have the new version. (by @​wmertens in #​7453)

Patch Changes
  • 🐞🩹 linting errors which were previously being ignored across the monorepo. (by @​better-salmon in #​7418)

  • 🐞🩹 Link SPA subsequent navigation now properly prefetch the next routes. (by @​maiieul in #​7590)

  • 🐞🩹 SPA Link now handle subsequent onQVisible$ passed as props. (by @​maiieul in #​7612)

v1.13.0

Compare Source

Minor Changes
Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@coderabbitai
Copy link

coderabbitai bot commented Oct 29, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Oct 29, 2025

Deploying website with  Cloudflare Pages  Cloudflare Pages

Latest commit: 5eed026
Status:🚫  Build failed.

View logs

@renovate renovate bot force-pushed the renovate/builder.io-qwik-city-1.x-lockfile branch from fde8a15 to db7e7fd Compare November 3, 2025 22:11
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik-city to v1.17.1 chore(deps): update dependency @builder.io/qwik-city to v1.17.2 Nov 3, 2025
@renovate renovate bot force-pushed the renovate/builder.io-qwik-city-1.x-lockfile branch from db7e7fd to 48019e0 Compare November 11, 2025 00:52
@renovate renovate bot force-pushed the renovate/builder.io-qwik-city-1.x-lockfile branch from 48019e0 to 42d41a8 Compare November 18, 2025 12:57
@renovate renovate bot force-pushed the renovate/builder.io-qwik-city-1.x-lockfile branch from 42d41a8 to adb9c69 Compare December 3, 2025 14:40
@renovate renovate bot force-pushed the renovate/builder.io-qwik-city-1.x-lockfile branch 6 times, most recently from 762b499 to db54656 Compare December 16, 2025 03:56
@renovate renovate bot force-pushed the renovate/builder.io-qwik-city-1.x-lockfile branch from db54656 to 5eed026 Compare December 17, 2025 20:15
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik-city to v1.17.2 chore(deps): update dependency @builder.io/qwik-city to v1.18.0 Dec 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant