Skip to content

Commit 3c8f5db

Browse files
Version Packages (beta)
1 parent 11bcf73 commit 3c8f5db

File tree

11 files changed

+49
-6
lines changed

11 files changed

+49
-6
lines changed

.changeset/pre.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"@qwik.dev/dom": "2.1.19",
1212
"@qwik.dev/react": "2.0.0-0",
1313
"supabase-auth-helpers-qwik": "0.0.3",
14-
"qwik-cli-e2e": "0.0.0"
14+
"qwik-cli-e2e": "0.0.0",
15+
"docs-e2e": "1.0.0"
1516
},
1617
"branch": "build/v2",
1718
"changesets": [
@@ -59,6 +60,7 @@
5960
"fuzzy-files-kiss",
6061
"fuzzy-jobs-compare",
6162
"gentle-melons-pretend",
63+
"great-news-lie",
6264
"green-drinks-strive",
6365
"heavy-kids-wave",
6466
"heavy-maps-wash",
@@ -144,6 +146,7 @@
144146
"tiny-cows-pick",
145147
"tricky-meals-heal",
146148
"tricky-peaches-buy",
149+
"twelve-buckets-brake",
147150
"twenty-goats-flow",
148151
"twenty-lines-prove",
149152
"unlucky-dodos-grab",

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+
## 2.0.0-beta.10
4+
35
## 2.0.0-beta.9
46

57
## 2.0.0-beta.8

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": "2.0.0-beta.9",
4+
"version": "2.0.0-beta.10",
55
"author": "Qwik Team",
66
"bin": "./create-qwik.cjs",
77
"bugs": "https://github.com/QwikDev/qwik/issues",

packages/eslint-plugin-qwik/CHANGELOG.md

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

3+
## 2.0.0-beta.10
4+
35
## 2.0.0-beta.9
46

57
## 2.0.0-beta.8

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": "2.0.0-beta.9",
4+
"version": "2.0.0-beta.10",
55
"author": "Qwik Team",
66
"bugs": "https://github.com/QwikDev/qwik/issues",
77
"dependencies": {

packages/qwik-react/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @qwik.dev/react
22

3+
## 2.0.0-beta.10
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`60ffa2e`](https://github.com/QwikDev/qwik/commit/60ffa2ee21090ffc3d4d2bb6eaaf6d7e33089286), [`68ca2ef`](https://github.com/QwikDev/qwik/commit/68ca2ef1ba73c2d12cbb98196675b105bdd2531e)]:
8+
- @qwik.dev/[email protected]
9+
310
## 2.0.0-beta.9
411

512
### Patch Changes

packages/qwik-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@qwik.dev/react",
33
"description": "Qwik React allows adding React components into existing Qwik application",
4-
"version": "2.0.0-beta.9",
4+
"version": "2.0.0-beta.10",
55
"bugs": "https://github.com/QwikDev/qwik/issues",
66
"devDependencies": {
77
"@qwik.dev/core": "workspace:*",

packages/qwik-router/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @qwik.dev/city
22

3+
## 2.0.0-beta.10
4+
5+
### Minor Changes
6+
7+
- ✨ split Qwik Core and Router dev experience. Core now only adjusts the html using the Vite hook for it, so it can work in any environment or client-only. You can make a Qwik application client-only by running `qwik add csr` now. (by [@wmertens](https://github.com/wmertens) in [#7890](https://github.com/QwikDev/qwik/pull/7890))
8+
Feat: Qwik Route now runs dev mode using the node middleware, which is the same as production, and can now hot-reload when routes are added. It does this by transforming the response while it streams to add the dev scripts. This opens the door for Vite Environment support.
9+
Feat: `qwikVite()` SSR builds now reads the manifest from the client build whenever possible. You can still pass in the manifest yourself if needed.
10+
Fix: Qwik Router's Vite plugin no longer imports Qwik Core, a cause of duplicate imports in dev and preview mode.
11+
Fix: Sometimes, SSG hangs after completion. The cause is still unknown, but now there is a workaround by forcing the process to exit after SSG is done.
12+
13+
### Patch Changes
14+
15+
- Updated dependencies [[`60ffa2e`](https://github.com/QwikDev/qwik/commit/60ffa2ee21090ffc3d4d2bb6eaaf6d7e33089286), [`68ca2ef`](https://github.com/QwikDev/qwik/commit/68ca2ef1ba73c2d12cbb98196675b105bdd2531e)]:
16+
- @qwik.dev/[email protected]
17+
318
## 2.0.0-beta.9
419

520
### Patch Changes

packages/qwik-router/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@qwik.dev/router",
33
"description": "The router for Qwik.",
4-
"version": "2.0.0-beta.9",
4+
"version": "2.0.0-beta.10",
55
"bugs": "https://github.com/QwikDev/qwik/issues",
66
"dependencies": {
77
"@azure/functions": "3.5.1",

packages/qwik/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @qwik.dev/core
22

3+
## 2.0.0-beta.10
4+
5+
### Minor Changes
6+
7+
- ✨ split Qwik Core and Router dev experience. Core now only adjusts the html using the Vite hook for it, so it can work in any environment or client-only. You can make a Qwik application client-only by running `qwik add csr` now. (by [@wmertens](https://github.com/wmertens) in [#7890](https://github.com/QwikDev/qwik/pull/7890))
8+
Feat: Qwik Route now runs dev mode using the node middleware, which is the same as production, and can now hot-reload when routes are added. It does this by transforming the response while it streams to add the dev scripts. This opens the door for Vite Environment support.
9+
Feat: `qwikVite()` SSR builds now reads the manifest from the client build whenever possible. You can still pass in the manifest yourself if needed.
10+
Fix: Qwik Router's Vite plugin no longer imports Qwik Core, a cause of duplicate imports in dev and preview mode.
11+
Fix: Sometimes, SSG hangs after completion. The cause is still unknown, but now there is a workaround by forcing the process to exit after SSG is done.
12+
13+
### Patch Changes
14+
15+
- 🐞🩹 resuming shadow dom container with multiple root children (by [@Varixo](https://github.com/Varixo) in [#7943](https://github.com/QwikDev/qwik/pull/7943))
16+
317
## 2.0.0-beta.9
418

519
### Minor Changes

0 commit comments

Comments
 (0)