Skip to content

Commit 75eb7b0

Browse files
Version Packages
1 parent 7a0d26c commit 75eb7b0

28 files changed

+66
-105
lines changed

.changeset/afraid-months-mix.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/approach-bed-gift.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/breezy-toes-help.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/cyan-deers-glow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/forty-bats-rule.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/furry-paint-spin.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/giant-lobsters-sip.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/loud-fish-walk.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/maiieul-manual-changeset-2.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/maiieul-manual-changeset.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/plenty-books-sin.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/pole-comfort-active.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/poor-numbers-yawn.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/quiet-flowers-divide.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/quiet-squids-run.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/selfish-shirts-cover.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tall-flowers-jump.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tall-paint-help.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tasty-ghosts-shout.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/wicked-dolphins-boil.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/create-qwik/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# create-qwik
22

3+
## 1.13.0
4+
35
## 1.12.1
46

57
## 1.12.0

packages/create-qwik/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "create-qwik",
33
"description": "Interactive CLI for create Qwik projects and adding features.",
4-
"version": "1.12.1",
4+
"version": "1.13.0",
55
"author": "Builder.io Team",
66
"bin": "./create-qwik.cjs",
77
"bugs": "https://github.com/QwikDev/qwik/issues",

packages/eslint-plugin-qwik/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# eslint-plugin-qwik
22

3+
## 1.13.0
4+
5+
### Minor Changes
6+
7+
- let eslint-plugin-qwik support Eslint 9 and 8 simultaneously (by [@JerryWu1234](https://github.com/JerryWu1234) in [#7072](https://github.com/QwikDev/qwik/pull/7072))
8+
9+
### Patch Changes
10+
11+
- Fix ESLint 9 compatibility, enhance typing and README. (by [@better-salmon](https://github.com/better-salmon) in [#7415](https://github.com/QwikDev/qwik/pull/7415))
12+
13+
- 🐞🩹 Enhance lexical scope and skip variables declared by Qwik's internal hooks. (by [@JerryWu1234](https://github.com/JerryWu1234) in [#7366](https://github.com/QwikDev/qwik/pull/7366))
14+
315
## 1.12.1
416

517
## 1.12.0

packages/eslint-plugin-qwik/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "eslint-plugin-qwik",
33
"description": "An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.",
4-
"version": "1.12.1",
4+
"version": "1.13.0",
55
"author": "Builder Team",
66
"bugs": "https://github.com/QwikDev/qwik/issues",
77
"dependencies": {

packages/qwik-city/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @builder.io/qwik-city
22

3+
## 1.13.0
4+
5+
### Minor Changes
6+
7+
- 🐞🩹 server$ errors can be caught by @plugin middleware (by [@DustinJSilk](https://github.com/DustinJSilk) in [#7185](https://github.com/QwikDev/qwik/pull/7185))
8+
9+
- refactor: Error types are standardised across server$ functions and routeLoaders (by [@DustinJSilk](https://github.com/DustinJSilk) in [#7185](https://github.com/QwikDev/qwik/pull/7185))
10+
11+
- ✨ 499 is now a valid status code (by [@DustinJSilk](https://github.com/DustinJSilk) in [#7185](https://github.com/QwikDev/qwik/pull/7185))
12+
13+
- 🐞🩹 server$ functions now correctly throw 4xx errors on the client (by [@DustinJSilk](https://github.com/DustinJSilk) in [#7185](https://github.com/QwikDev/qwik/pull/7185))
14+
15+
### Patch Changes
16+
17+
- 🐞🩹 Error boundary `ErrorBoundary` and fix `useErrorBoundary` (by [@damianpumar](https://github.com/damianpumar) in [#7342](https://github.com/QwikDev/qwik/pull/7342))
18+
19+
- 🐞🩹 Write Response object in the send request event even on redirects (by [@nelsonprsousa](https://github.com/nelsonprsousa) in [#7422](https://github.com/QwikDev/qwik/pull/7422))
20+
321
## 1.12.1
422

523
### Patch Changes

packages/qwik-city/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@builder.io/qwik-city",
33
"description": "The meta-framework for Qwik.",
4-
"version": "1.12.1",
4+
"version": "1.13.0",
55
"bugs": "https://github.com/QwikDev/qwik/issues",
66
"dependencies": {
77
"@mdx-js/mdx": "^3",

packages/qwik/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @builder.io/qwik
22

3+
## 1.13.0
4+
5+
### Minor Changes
6+
7+
- The `useTask# @builder.io/qwik function's `eagerness` option is deprecated and will be removed in version 2. (by [@sreeisalso](https://github.com/sreeisalso) in [#7345](https://github.com/QwikDev/qwik/pull/7345))
8+
9+
### Patch Changes
10+
11+
- 🐞🩹 Error boundary `ErrorBoundary` and fix `useErrorBoundary` (by [@damianpumar](https://github.com/damianpumar) in [#7342](https://github.com/QwikDev/qwik/pull/7342))
12+
13+
- 🐞 🩹 The qwik-city ServiceWorkerRegister and qwik PrefetchServiceWorker now prefetch all their qrls to prevent under-prefetching (by [@maiieul](https://github.com/maiieul) in [#7417](https://github.com/QwikDev/qwik/pull/7417))
14+
15+
- 🐞🩹 When csr is true, it causes a crash because resolve cannot be null as the second parameter (by [@JerryWu1234](https://github.com/JerryWu1234) in [#7420](https://github.com/QwikDev/qwik/pull/7420))
16+
17+
- updated drizzle to latest version (by [@sreeisalso](https://github.com/sreeisalso) in [#7288](https://github.com/QwikDev/qwik/pull/7288))
18+
19+
- 🐞 fix(rollup): improve manualChunks logic to minimize over-prefetching (by [@maiieul](https://github.com/maiieul) in [#7362](https://github.com/QwikDev/qwik/pull/7362))
20+
21+
- ✨ Add the ability to see chunks names in preview/production environments to facilitate debugging of production-only bugs (by [@maiieul](https://github.com/maiieul) in [#7293](https://github.com/QwikDev/qwik/pull/7293))
22+
23+
- Emit an CustomEvent `qviewTransition` when view transition starts. (by [@GrandSchtroumpf](https://github.com/GrandSchtroumpf) in [#7237](https://github.com/QwikDev/qwik/pull/7237))
24+
25+
- ✨ Ability to keep using tailwind v3 through the cli (by [@maiieul](https://github.com/maiieul) in [#7403](https://github.com/QwikDev/qwik/pull/7403))
26+
27+
- dev server now correctly handles css and js importers, also hmr persistence (by [@thejackshelton](https://github.com/thejackshelton) in [#7389](https://github.com/QwikDev/qwik/pull/7389))
28+
29+
- 🐞🩹 set default value of lint to false to improve the execution performance (by [@JerryWu1234](https://github.com/JerryWu1234) in [#7425](https://github.com/QwikDev/qwik/pull/7425))
30+
31+
- 🐞🩹 manual QRL grouping now works again. This is needed for Insights to work. (by [@wmertens](https://github.com/wmertens) in [#7444](https://github.com/QwikDev/qwik/pull/7444))
32+
333
## 1.12.1
434

535
### Patch Changes

packages/qwik/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@builder.io/qwik",
33
"description": "An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.",
4-
"version": "1.12.1",
4+
"version": "1.13.0",
55
"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",
66
"bin": {
77
"qwik": "./qwik-cli.cjs"

0 commit comments

Comments
 (0)