Skip to content

Version Packages #7738

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

Merged
merged 1 commit into from
Jul 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/brown-moons-yawn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dark-experts-scream.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/dirty-dolls-heal.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/empty-sites-tie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/every-socks-beg.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fancy-nights-chew.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gold-colts-change.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/good-mammals-grab.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/honest-pillows-shake.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/huge-geese-push.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-falcons-grow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/real-cities-fold.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rotten-bats-accept.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-lies-sip.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-stars-melt.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/swift-peaches-wash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tired-spies-call.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/create-qwik/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# create-qwik

## 1.15.0

### Patch Changes

- 🐞🩹 fix up vercel starter config (by [@cmbartschat](https://github.com/cmbartschat) in [#7663](https://github.com/QwikDev/qwik/pull/7663))

- πŸ›  update devDependencies and configurations (by [@JerryWu1234](https://github.com/JerryWu1234) in [#7695](https://github.com/QwikDev/qwik/pull/7695))

## 1.14.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-qwik/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "create-qwik",
"description": "Interactive CLI for create Qwik projects and adding features.",
"version": "1.14.1",
"version": "1.15.0",
"author": "Builder.io Team",
"bin": "./create-qwik.cjs",
"bugs": "https://github.com/QwikDev/qwik/issues",
Expand Down
6 changes: 6 additions & 0 deletions packages/eslint-plugin-qwik/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# eslint-plugin-qwik

## 1.15.0

### Patch Changes

- πŸ›  update devDependencies and configurations (by [@JerryWu1234](https://github.com/JerryWu1234) in [#7695](https://github.com/QwikDev/qwik/pull/7695))

## 1.14.1

## 1.14.0
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-qwik/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "eslint-plugin-qwik",
"description": "An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.",
"version": "1.14.1",
"version": "1.15.0",
"author": "Builder Team",
"bugs": "https://github.com/QwikDev/qwik/issues",
"dependencies": {
Expand Down
7 changes: 7 additions & 0 deletions packages/qwik-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @builder.io/qwik-auth

## 0.2.3

### Patch Changes

- πŸ›  update devDependencies and configurations (by [@JerryWu1234](https://github.com/JerryWu1234) in [#7695](https://github.com/QwikDev/qwik/pull/7695))
2 changes: 1 addition & 1 deletion packages/qwik-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@builder.io/qwik-auth",
"description": "Qwik Auth is powered by Auth.js, a battle tested library for authentication with 3rd party providers",
"version": "0.2.2",
"version": "0.2.3",
"bugs": "https://github.com/QwikDev/qwik/issues",
"dependencies": {
"@auth/core": "^0.30.0"
Expand Down
33 changes: 33 additions & 0 deletions packages/qwik-city/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# @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](https://github.com/omerman) in [#7562](https://github.com/QwikDev/qwik/pull/7562))
think of it as an internal redirect.

Example usage:

```ts
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](https://github.com/joaomaridalho) in [#7690](https://github.com/QwikDev/qwik/pull/7690))

- 🐞🩹 link/useNavigate with query params don't override loader/middleware redirect with query params anymore. (by [@maiieul](https://github.com/maiieul) in [#7733](https://github.com/QwikDev/qwik/pull/7733))

- 🐞🩹 allow cross-protocol requests from the same domain (by [@gioboa](https://github.com/gioboa) in [#7693](https://github.com/QwikDev/qwik/pull/7693))

- πŸ›  update devDependencies and configurations (by [@JerryWu1234](https://github.com/JerryWu1234) in [#7695](https://github.com/QwikDev/qwik/pull/7695))

- 🐞🩹 Duplicate ServerError class during dev mode (by [@wmertens](https://github.com/wmertens) in [#7724](https://github.com/QwikDev/qwik/pull/7724))

## 1.14.1

## 1.14.0
Expand Down
2 changes: 1 addition & 1 deletion packages/qwik-city/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@builder.io/qwik-city",
"description": "The meta-framework for Qwik.",
"version": "1.14.1",
"version": "1.15.0",
"bugs": "https://github.com/QwikDev/qwik/issues",
"dependencies": {
"@mdx-js/mdx": "^3",
Expand Down
28 changes: 28 additions & 0 deletions packages/qwik/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @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](https://github.com/wmertens) in [#7650](https://github.com/QwikDev/qwik/pull/7650))

### Patch Changes

- 🐞🩹 Use correct working directory for Deno environment (by [@siguici](https://github.com/siguici) in [#7699](https://github.com/QwikDev/qwik/pull/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](https://github.com/wmertens) in [#7613](https://github.com/QwikDev/qwik/pull/7613))

- 🐞🩹 Removed backdrop-filter of vite-error-overlay to prevent perf issues with multiple errors (by [@intellix](https://github.com/intellix) in [#7676](https://github.com/QwikDev/qwik/pull/7676))

- 🐞🩹 assetsDir and debug:true will no longer break your application. (by [@maiieul](https://github.com/maiieul) in [#7638](https://github.com/QwikDev/qwik/pull/7638))

- 🐞🩹 We now also output the preloader as .cjs for non esm environments (e.g. jest 29 and below). (by [@maiieul](https://github.com/maiieul) in [#7736](https://github.com/QwikDev/qwik/pull/7736))

- 🐞🩹 cypress component tests became slow in 1.9.1. This is now fixed. (by [@maiieul](https://github.com/maiieul) in [#7736](https://github.com/QwikDev/qwik/pull/7736))

- ✨ q-manifest.json now also includes the generated assets (by [@wmertens](https://github.com/wmertens) in [#7650](https://github.com/QwikDev/qwik/pull/7650))

- 🐞🩹 support q-manifest resolution under Bun runtime (#7565) (by [@siguici](https://github.com/siguici) in [#7669](https://github.com/QwikDev/qwik/pull/7669))

- 🐞🩹 set correct script type for qwik loader (by [@Varixo](https://github.com/Varixo) in [#7710](https://github.com/QwikDev/qwik/pull/7710))

- πŸ›  update devDependencies and configurations (by [@JerryWu1234](https://github.com/JerryWu1234) in [#7695](https://github.com/QwikDev/qwik/pull/7695))

## 1.14.1

## 1.14.0
Expand Down
2 changes: 1 addition & 1 deletion packages/qwik/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@builder.io/qwik",
"description": "An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.",
"version": "1.14.1",
"version": "1.15.0",
"annotation": "This package.json is for internal use in the monorepo, the build actually makes a new package.json for the published package via scripts/package-json.ts",
"bin": {
"qwik": "./qwik-cli.cjs"
Expand Down