Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 18, 2025

Bumps the qwik group with 3 updates: @builder.io/qwik, @builder.io/qwik-city and eslint-plugin-qwik.

Updates @builder.io/qwik from 1.13.0 to 1.15.0

Release notes

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

@​builder.io/qwik-city@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)

@​builder.io/qwik@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)

... (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.

    Service Worker:

... (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

Updates @builder.io/qwik-city from 1.13.0 to 1.15.0

Release notes

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

@​builder.io/qwik-city@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)

@​builder.io/qwik-city@1.14.1

No release notes provided.

@​builder.io/qwik-city@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)

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)

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

Updates eslint-plugin-qwik from 1.13.0 to 1.15.0

Release notes

Sourced from eslint-plugin-qwik's releases.

eslint-plugin-qwik@1.15.0

Patch Changes

eslint-plugin-qwik@1.14.1

No release notes provided.

eslint-plugin-qwik@1.14.0

Minor Changes

Patch Changes

  • ✨ Improve types and README documentation with clear configuration examples for ESLint 9+ (flat config). Added globalIgnores for more clarity and tseslint.config for better type inference inside the parserOptions option. (by @​better-salmon in #7418)
Commits

You can trigger a rebase of this PR 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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 18, 2025
@vercel
Copy link

vercel bot commented Aug 18, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
content-collections Ready Ready Preview, Comment Dec 22, 2025 4:11pm

@changeset-bot
Copy link

changeset-bot bot commented Aug 18, 2025

⚠️ No Changeset found

Latest commit: ab6be5d

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@pkg-pr-new
Copy link

pkg-pr-new bot commented Aug 18, 2025

Open in StackBlitz

@content-collections/cli

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/cli@635

content-collections

npm i https://pkg.pr.new/sdorra/content-collections@635

@content-collections/core

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/core@635

@content-collections/installer

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/installer@635

@content-collections/integrations

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/integrations@635

@content-collections/markdown

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/markdown@635

@content-collections/mdx

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/mdx@635

@content-collections/next

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/next@635

@content-collections/remix-vite

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/remix-vite@635

@content-collections/vinxi

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/vinxi@635

@content-collections/vite

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/vite@635

commit: 380fe84

@pkg-pr-new
Copy link

pkg-pr-new bot commented Aug 18, 2025

Open in StackBlitz

@content-collections/cli

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/cli@635

content-collections

npm i https://pkg.pr.new/sdorra/content-collections@635

@content-collections/core

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/core@635

@content-collections/installer

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/installer@635

@content-collections/integrations

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/integrations@635

@content-collections/markdown

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/markdown@635

@content-collections/mdx

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/mdx@635

@content-collections/next

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/next@635

@content-collections/remix-vite

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/remix-vite@635

@content-collections/vinxi

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/vinxi@635

@content-collections/vite

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/vite@635

commit: 380fe84

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 15, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

Bumps the qwik group with 3 updates: [@builder.io/qwik](https://github.com/QwikDev/qwik/tree/HEAD/packages/qwik), [@builder.io/qwik-city](https://github.com/QwikDev/qwik/tree/HEAD/packages/qwik-city) and [eslint-plugin-qwik](https://github.com/QwikDev/qwik/tree/HEAD/packages/eslint-rules).


Updates `@builder.io/qwik` from 1.13.0 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/qwik@1.15.0/packages/qwik)

Updates `@builder.io/qwik-city` from 1.13.0 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/qwik-city@1.15.0/packages/qwik-city)

Updates `eslint-plugin-qwik` from 1.13.0 to 1.15.0
- [Release notes](https://github.com/QwikDev/qwik/releases)
- [Commits](https://github.com/QwikDev/qwik/commits/eslint-plugin-qwik@1.15.0/packages/eslint-rules)

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

Signed-off-by: dependabot[bot] <support@github.com>
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant