Skip to content

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

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-city from 1.12.1 to 1.15.0.

Release notes

Sourced from @​builder.io/qwik-city'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]

No release notes provided.

@​builder.io/[email protected]

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)

... (truncated)

Changelog

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

1.15.0

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)

1.14.1

1.14.0

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)

... (truncated)

Commits
  • 44ea2ce Version Packages
  • d8b6637 test: increment number of layout because I added one
  • 8f14bb5 fix(qwik-city): link/useNavigate query params override thrown redirect's in l...
  • b76adc2 Merge pull request #7724 from QwikDev/fix-qc-dev-ServerError
  • d16097d fix(qwik-city): duplicate ServerError class during dev
  • d758b2a chore: allow vite 5-7 (#7695)
  • 09308a1 fix: set correct script type for qwik loader
  • 7b22b35 fix: allow cross-protocol requests from the same domain (#7693)
  • 795a9da fix: Change Content-Type header to respect RFC 7231 (#7690)
  • b583647 fix(core): correct asset path + fix types
  • 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-city](https://github.com/QwikDev/qwik/tree/HEAD/packages/qwik-city) 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-city/CHANGELOG.md)
- [Commits](https://github.com/QwikDev/qwik/commits/@builder.io/[email protected]/packages/qwik-city)

---
updated-dependencies:
- dependency-name: "@builder.io/qwik-city"
  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