diff --git a/.changeset/easy-boxes-win.md b/.changeset/easy-boxes-win.md
deleted file mode 100644
index a1b9be406d1..00000000000
--- a/.changeset/easy-boxes-win.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'create-qwik': patch
----
-
-fix: create-qwik logAppCreated.ts now displays correct next steps for deno.
-
-After using the create-qwik command, the logAppCreated.ts file was not displaying the correct next steps for deno. Prior to this fix it would display "deno start" instead of "deno task start". This would cause a failure to run, as deno requires the 'task' keyword. This fixes bug 7520
diff --git a/.changeset/every-humans-kiss.md b/.changeset/every-humans-kiss.md
deleted file mode 100644
index 743db2f4eca..00000000000
--- a/.changeset/every-humans-kiss.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'eslint-plugin-qwik': minor
----
-
-FEAT: our eslint plugin now supports eslint 9
diff --git a/.changeset/fair-cars-fry.md b/.changeset/fair-cars-fry.md
deleted file mode 100644
index 60d260d2b90..00000000000
--- a/.changeset/fair-cars-fry.md
+++ /dev/null
@@ -1,64 +0,0 @@
----
-'@builder.io/qwik': minor
----
-
-FEAT: Major improvements to prefetching with automatic bundle preloading
-
-- 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 `` 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 `` or ``).
-- **Configure** your server to provide long caching headers.
-
-**Service Worker:**
-
-This new implementation will use it to uninstall the current service worker to reduce the unnecessary duplication.
-
-The builtin service workers components are deprecated but still exist for backwards compatibility.
-
- ⚠️ **IMPORTANT: Caching Headers:**
-
-The files under build/ and assets/ are named with their content hash and may therefore be cached indefinitely. Typically you should serve `build/*` and `assets/*` with `Cache-Control: public, max-age=31536000, immutable`.
-
-However, if you changed the rollup configuration for output filenames, you will have to adjust the caching configuration accordingly.
-
----
-
-You can configure the preload behavior in your SSR configuration:
-
-```ts
-// entry.ssr.ts
-export default function (opts: RenderToStreamOptions) {
- return renderToStream(, {
- preload: {
- // Enable debug logging for preload operations
- debug: true,
- // Maximum simultaneous preload links
- maxIdlePreloads: 5,
- // Minimum probability threshold for preloading
- preloadProbability: 0.25
- // ...and more, see the type JSDoc on hover
- },
- ...opts,
- });
-}
-```
-
-#### Optional for legacy apps:
-
-For legacy apps that still need service worker functionality, you can add it back using:
-
-```bash
-npm run qwik add service-worker
-```
-
-This will add a basic service worker setup that you can customize for specific caching strategies, offline support, or other PWA features beyond just prefetching.
diff --git a/.changeset/gentle-bats-thank.md b/.changeset/gentle-bats-thank.md
deleted file mode 100644
index a6f5d56a5bc..00000000000
--- a/.changeset/gentle-bats-thank.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@builder.io/qwik-city': minor
----
-
-FIX: 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.
diff --git a/.changeset/giant-carpets-brake.md b/.changeset/giant-carpets-brake.md
deleted file mode 100644
index cca61505d17..00000000000
--- a/.changeset/giant-carpets-brake.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'create-qwik': patch
-'@builder.io/qwik-city': patch
-'@builder.io/qwik': patch
----
-
-FIX: linting errors which were previously being ignored across the monorepo.
diff --git a/.changeset/grumpy-ladybugs-wonder.md b/.changeset/grumpy-ladybugs-wonder.md
deleted file mode 100644
index a148ddb5d29..00000000000
--- a/.changeset/grumpy-ladybugs-wonder.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'eslint-plugin-qwik': patch
----
-
-FEAT: 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.
diff --git a/.changeset/slick-candies-rhyme.md b/.changeset/slick-candies-rhyme.md
deleted file mode 100644
index 029050f07af..00000000000
--- a/.changeset/slick-candies-rhyme.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@builder.io/qwik': patch
----
-
-FIX: now qwikloader is loaded only once in all cases
diff --git a/.changeset/thick-trams-pay.md b/.changeset/thick-trams-pay.md
deleted file mode 100644
index a53f85c1915..00000000000
--- a/.changeset/thick-trams-pay.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@builder.io/qwik-city': patch
----
-
-FIX: Link SPA subsequent navigation now properly prefetch the next routes.
diff --git a/.changeset/witty-spoons-hug.md b/.changeset/witty-spoons-hug.md
deleted file mode 100644
index 2d11dcddab9..00000000000
--- a/.changeset/witty-spoons-hug.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@builder.io/qwik-city': patch
----
-
-FIX: SPA Link now handle subsequent onQVisible$ passed as props.
diff --git a/.changeset/yellow-frogs-repeat.md b/.changeset/yellow-frogs-repeat.md
deleted file mode 100644
index cb59a0e4203..00000000000
--- a/.changeset/yellow-frogs-repeat.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@builder.io/qwik-city': minor
----
-
-CHORE: 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.
diff --git a/packages/create-qwik/CHANGELOG.md b/packages/create-qwik/CHANGELOG.md
index ef02e02883f..e8a55fc3d0a 100644
--- a/packages/create-qwik/CHANGELOG.md
+++ b/packages/create-qwik/CHANGELOG.md
@@ -1,5 +1,15 @@
# create-qwik
+## 1.14.0
+
+### Patch Changes
+
+- 🐞🩹 create-qwik logAppCreated.ts now displays correct next steps for deno. (by [@LogProphet](https://github.com/LogProphet) in [#7566](https://github.com/QwikDev/qwik/pull/7566))
+
+ After using the create-qwik command, the logAppCreated.ts file was not displaying the correct next steps for deno. Prior to this fix it would display "deno start" instead of "deno task start". This would cause a failure to run, as deno requires the 'task' keyword. This fixes bug 7520
+
+- 🐞🩹 linting errors which were previously being ignored across the monorepo. (by [@better-salmon](https://github.com/better-salmon) in [#7418](https://github.com/QwikDev/qwik/pull/7418))
+
## 1.13.0
## 1.12.1
diff --git a/packages/create-qwik/package.json b/packages/create-qwik/package.json
index 49498d2e679..76395a5893e 100644
--- a/packages/create-qwik/package.json
+++ b/packages/create-qwik/package.json
@@ -1,7 +1,7 @@
{
"name": "create-qwik",
"description": "Interactive CLI for create Qwik projects and adding features.",
- "version": "1.13.0",
+ "version": "1.14.0",
"author": "Builder.io Team",
"bin": "./create-qwik.cjs",
"bugs": "https://github.com/QwikDev/qwik/issues",
diff --git a/packages/eslint-plugin-qwik/CHANGELOG.md b/packages/eslint-plugin-qwik/CHANGELOG.md
index a8b895cc02c..f2086beada1 100644
--- a/packages/eslint-plugin-qwik/CHANGELOG.md
+++ b/packages/eslint-plugin-qwik/CHANGELOG.md
@@ -1,5 +1,15 @@
# eslint-plugin-qwik
+## 1.14.0
+
+### Minor Changes
+
+- ✨ our eslint plugin now supports eslint 9 (by [@better-salmon](https://github.com/better-salmon) in [#7418](https://github.com/QwikDev/qwik/pull/7418))
+
+### 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](https://github.com/better-salmon) in [#7418](https://github.com/QwikDev/qwik/pull/7418))
+
## 1.13.0
### Minor Changes
diff --git a/packages/eslint-plugin-qwik/package.json b/packages/eslint-plugin-qwik/package.json
index 2decc2229b0..9355d6d1b93 100644
--- a/packages/eslint-plugin-qwik/package.json
+++ b/packages/eslint-plugin-qwik/package.json
@@ -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.13.0",
+ "version": "1.14.0",
"author": "Builder Team",
"bugs": "https://github.com/QwikDev/qwik/issues",
"dependencies": {
diff --git a/packages/qwik-city/CHANGELOG.md b/packages/qwik-city/CHANGELOG.md
index 18d38c367ff..f4f0194be42 100644
--- a/packages/qwik-city/CHANGELOG.md
+++ b/packages/qwik-city/CHANGELOG.md
@@ -1,5 +1,21 @@
# @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](https://github.com/wmertens) in [#7537](https://github.com/QwikDev/qwik/pull/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](https://github.com/wmertens) in [#7453](https://github.com/QwikDev/qwik/pull/7453))
+
+### Patch Changes
+
+- 🐞🩹 linting errors which were previously being ignored across the monorepo. (by [@better-salmon](https://github.com/better-salmon) in [#7418](https://github.com/QwikDev/qwik/pull/7418))
+
+- 🐞🩹 Link SPA subsequent navigation now properly prefetch the next routes. (by [@maiieul](https://github.com/maiieul) in [#7590](https://github.com/QwikDev/qwik/pull/7590))
+
+- 🐞🩹 SPA Link now handle subsequent onQVisible$ passed as props. (by [@maiieul](https://github.com/maiieul) in [#7612](https://github.com/QwikDev/qwik/pull/7612))
+
## 1.13.0
### Minor Changes
diff --git a/packages/qwik-city/package.json b/packages/qwik-city/package.json
index 08fa2987535..b7e85adafed 100644
--- a/packages/qwik-city/package.json
+++ b/packages/qwik-city/package.json
@@ -1,7 +1,7 @@
{
"name": "@builder.io/qwik-city",
"description": "The meta-framework for Qwik.",
- "version": "1.13.0",
+ "version": "1.14.0",
"bugs": "https://github.com/QwikDev/qwik/issues",
"dependencies": {
"@mdx-js/mdx": "^3",
diff --git a/packages/qwik/CHANGELOG.md b/packages/qwik/CHANGELOG.md
index adb93e997e2..6d79e088ae6 100644
--- a/packages/qwik/CHANGELOG.md
+++ b/packages/qwik/CHANGELOG.md
@@ -1,5 +1,76 @@
# @builder.io/qwik
+## 1.14.0
+
+### Minor Changes
+
+- ✨ Major improvements to prefetching with automatic bundle preloading (by [@wmertens](https://github.com/wmertens) in [#7453](https://github.com/QwikDev/qwik/pull/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 `` 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 `` or ``).
+ - **Configure** your server to provide long caching headers.
+
+ **Service Worker:**
+
+ This new implementation will use it to uninstall the current service worker to reduce the unnecessary duplication.
+
+ The builtin service workers components are deprecated but still exist for backwards compatibility.
+
+ ⚠️ **IMPORTANT: Caching Headers:**
+
+ The files under build/ and assets/ are named with their content hash and may therefore be cached indefinitely. Typically you should serve `build/*` and `assets/*` with `Cache-Control: public, max-age=31536000, immutable`.
+
+ However, if you changed the rollup configuration for output filenames, you will have to adjust the caching configuration accordingly.
+
+ ***
+
+ You can configure the preload behavior in your SSR configuration:
+
+ ```ts
+ // entry.ssr.ts
+ export default function (opts: RenderToStreamOptions) {
+ return renderToStream(, {
+ preload: {
+ // Enable debug logging for preload operations
+ debug: true,
+ // Maximum simultaneous preload links
+ maxIdlePreloads: 5,
+ // Minimum probability threshold for preloading
+ preloadProbability: 0.25
+ // ...and more, see the type JSDoc on hover
+ },
+ ...opts,
+ });
+ }
+ ```
+
+ #### Optional for legacy apps:
+
+ For legacy apps that still need service worker functionality, you can add it back using:
+
+ ```bash
+ npm run qwik add service-worker
+ ```
+
+ This will add a basic service worker setup that you can customize for specific caching strategies, offline support, or other PWA features beyond just prefetching.
+
+### Patch Changes
+
+- 🐞🩹 linting errors which were previously being ignored across the monorepo. (by [@better-salmon](https://github.com/better-salmon) in [#7418](https://github.com/QwikDev/qwik/pull/7418))
+
+- 🐞🩹 now qwikloader is loaded only once in all cases (by [@wmertens](https://github.com/wmertens) in [#7506](https://github.com/QwikDev/qwik/pull/7506))
+
## 1.13.0
### Minor Changes
diff --git a/packages/qwik/package.json b/packages/qwik/package.json
index 0512daf7717..b23b76cdb13 100644
--- a/packages/qwik/package.json
+++ b/packages/qwik/package.json
@@ -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.13.0",
+ "version": "1.14.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"