Skip to content
Open
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
9 changes: 9 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"brave-files-grin",
"bright-cloths-film",
"bright-cows-sell",
"bright-impalas-fetch",
"bright-pants-crash",
"bright-showers-taste",
"brown-ravens-behave",
Expand Down Expand Up @@ -81,6 +82,7 @@
"easy-geese-watch",
"eighty-ligers-wink",
"eighty-points-argue",
"empty-cases-flash",
"empty-mails-laugh",
"eslint-no-await-navigate-use-task",
"every-badgers-bake",
Expand All @@ -95,6 +97,7 @@
"five-kangaroos-matter",
"five-shoes-deny",
"five-trees-share",
"fix-devtools-ui-layout-polish",
"fix-readonly-signal-lexical-scope",
"flat-hounds-burn",
"floppy-otters-retire",
Expand Down Expand Up @@ -157,6 +160,7 @@
"loud-eels-battle",
"loud-jokes-fail",
"loud-mammals-dress",
"lovely-days-double",
"lovely-terms-jump",
"major-lemons-jam",
"many-forks-ring",
Expand All @@ -173,6 +177,7 @@
"nervous-terms-explode",
"nice-teams-grow",
"nine-otters-repeat",
"nine-pants-sell",
"ninety-crabs-lay",
"ninety-pets-win",
"odd-beds-act",
Expand Down Expand Up @@ -207,6 +212,7 @@
"rare-words-report",
"ready-lions-swim",
"ready-zebras-obey",
"real-breads-clap",
"red-readers-battle",
"red-trains-deny",
"rich-parts-rest",
Expand All @@ -223,6 +229,7 @@
"shaggy-nights-visit",
"shaggy-poems-appear",
"shaggy-poems-return",
"shaggy-webs-relate",
"shaky-pianos-wait",
"sharp-apples-relate",
"sharp-buckets-ring",
Expand All @@ -238,7 +245,9 @@
"silent-badgers-bet",
"silly-pans-wear",
"silly-symbols-sleep",
"silver-shoes-swim",
"six-breads-rule",
"six-candies-grab",
"six-games-float",
"sixty-grapes-beam",
"slick-clowns-relax",
Expand Down
8 changes: 8 additions & 0 deletions packages/browser-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @devtools/browser-extension

## 0.1.1-beta.0

### Patch Changes

- Updated dependencies [[`56b189b`](https://github.com/QwikDev/qwik/commit/56b189b5f1fbdf4402c5c49ffc5ee1f98171e1b9)]:
- @qwik.dev/devtools@0.2.9-beta.0
2 changes: 1 addition & 1 deletion packages/browser-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@devtools/browser-extension",
"description": "Qwik DevTools browser extension for Chrome and Firefox",
"version": "0.1.0",
"version": "0.1.1-beta.0",
"dependencies": {
"@qwik.dev/devtools": "workspace:^",
"lit": "^3.3.2",
Expand Down
2 changes: 2 additions & 0 deletions packages/create-qwik/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# create-qwik

## 2.0.0-beta.36

## 2.0.0-beta.35

## 2.0.0-beta.34
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": "2.0.0-beta.35",
"version": "2.0.0-beta.36",
"author": "Qwik Team",
"bin": "./create-qwik.mjs",
"bugs": "https://github.com/QwikDev/qwik/issues",
Expand Down
14 changes: 14 additions & 0 deletions packages/devtools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# @qwik.dev/devtools

## 0.2.9-beta.0

### Patch Changes

- fix(devtools/ui): Preloads overflow, CodeBreak button placement, inline Qwik logo (by [@Aejkatappaja](https://github.com/Aejkatappaja) in [#8635](https://github.com/QwikDev/qwik/pull/8635))
- Preloads panel: outer `overflow-hidden` clipped stat cards and prevented scroll when content exceeded the panel height. Switched to `overflow-auto` with `min-h-full` on the column stack so content scrolls on narrow or short panels.
- CodeBreak StateParser: content container was missing the `flex` class, so the textarea pushed the Parse State button outside the card into the next grid row, overlapping the Parsed State header. Moved the button into the card header next to the title.
- Inlined the Qwik logo as a local SVG component (`QwikLogo`) instead of fetching `https://qwik.dev/logos/qwik-logo.svg` via `<img src>`. Fixes the broken-image fallback in contexts where the remote fetch is blocked or unreachable.

- Updated dependencies [[`85905cf`](https://github.com/QwikDev/qwik/commit/85905cf2f08bc7b633eb2b376831e0180715dbef), [`b9cd8fa`](https://github.com/QwikDev/qwik/commit/b9cd8fa3def420b878023cb7d7ba2e840aa3d467), [`bdbd076`](https://github.com/QwikDev/qwik/commit/bdbd07647760a230015a0fe3842b4a00e1a12094), [`6e00744`](https://github.com/QwikDev/qwik/commit/6e00744fb604943ee15930b57960954e74000299), [`ce6a45e`](https://github.com/QwikDev/qwik/commit/ce6a45e8908645a6ce0be3faa260824ae26c0fb7), [`137c075`](https://github.com/QwikDev/qwik/commit/137c0753547fb768524e00a19e972545b988d55c)]:
- @qwik.dev/core@2.0.0-beta.36
- @qwik.dev/router@2.0.0-beta.36
2 changes: 1 addition & 1 deletion packages/devtools/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@qwik.dev/devtools",
"description": "Qwik devtools package",
"version": "0.2.8",
"version": "0.2.9-beta.0",
"bugs": "https://github.com/QwikDev/devtools/issues",
"dependencies": {
"birpc": "^4.0.0",
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

## 2.0.0-beta.36

### Patch Changes

- 🛠 refactor(eslint): modernize plugin deps and rule typing (by [@JerryWu1234](https://github.com/JerryWu1234) in [#8621](https://github.com/QwikDev/qwik/pull/8621))

## 2.0.0-beta.35

## 2.0.0-beta.34
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": "2.0.0-beta.35",
"version": "2.0.0-beta.36",
"author": "Qwik Team",
"bugs": "https://github.com/QwikDev/qwik/issues",
"dependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/optimizer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @qwik.dev/optimizer

## 2.1.0-beta.5

### Patch Changes

- Fix optimizer miscompiling `component$` bodies that destructure props and reassign one of the destructured names (now also handles `for-of` / `for-in` heads); previously caused dev-SSR hangs and runtime ReferenceErrors. Fixes #8638. (by [@46ki75](https://github.com/46ki75) in [#8647](https://github.com/QwikDev/qwik/pull/8647))

## 2.1.0-beta.4

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/optimizer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@qwik.dev/optimizer",
"description": "Qwik optimizer runtime and native bindings.",
"version": "2.1.0-beta.4",
"version": "2.1.0-beta.5",
"bugs": "https://github.com/QwikDev/qwik/issues",
"engines": {
"node": "^20.3.0 || >=21.0.0"
Expand Down
7 changes: 7 additions & 0 deletions packages/qwik-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @qwik.dev/react

## 2.0.0-beta.36

### Patch Changes

- Updated dependencies [[`85905cf`](https://github.com/QwikDev/qwik/commit/85905cf2f08bc7b633eb2b376831e0180715dbef), [`b9cd8fa`](https://github.com/QwikDev/qwik/commit/b9cd8fa3def420b878023cb7d7ba2e840aa3d467), [`bdbd076`](https://github.com/QwikDev/qwik/commit/bdbd07647760a230015a0fe3842b4a00e1a12094), [`6e00744`](https://github.com/QwikDev/qwik/commit/6e00744fb604943ee15930b57960954e74000299), [`ce6a45e`](https://github.com/QwikDev/qwik/commit/ce6a45e8908645a6ce0be3faa260824ae26c0fb7), [`137c075`](https://github.com/QwikDev/qwik/commit/137c0753547fb768524e00a19e972545b988d55c)]:
- @qwik.dev/core@2.0.0-beta.36

## 2.0.0-beta.35

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/qwik-react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@qwik.dev/react",
"description": "Qwik React allows adding React components into existing Qwik application",
"version": "2.0.0-beta.35",
"version": "2.0.0-beta.36",
"bugs": "https://github.com/QwikDev/qwik/issues",
"devDependencies": {
"@qwik.dev/core": "workspace:*",
Expand Down
11 changes: 11 additions & 0 deletions packages/qwik-router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @qwik.dev/city

## 2.0.0-beta.36

### Minor Changes

- ✨ make `usePreventNavigate$` and `request.rewrite()` stable by removing their experimental feature flags. (by [@Varixo](https://github.com/Varixo) in [#8631](https://github.com/QwikDev/qwik/pull/8631))

### Patch Changes

- Updated dependencies [[`85905cf`](https://github.com/QwikDev/qwik/commit/85905cf2f08bc7b633eb2b376831e0180715dbef), [`b9cd8fa`](https://github.com/QwikDev/qwik/commit/b9cd8fa3def420b878023cb7d7ba2e840aa3d467), [`bdbd076`](https://github.com/QwikDev/qwik/commit/bdbd07647760a230015a0fe3842b4a00e1a12094), [`6e00744`](https://github.com/QwikDev/qwik/commit/6e00744fb604943ee15930b57960954e74000299), [`ce6a45e`](https://github.com/QwikDev/qwik/commit/ce6a45e8908645a6ce0be3faa260824ae26c0fb7), [`137c075`](https://github.com/QwikDev/qwik/commit/137c0753547fb768524e00a19e972545b988d55c)]:
- @qwik.dev/core@2.0.0-beta.36

## 2.0.0-beta.35

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/qwik-router/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@qwik.dev/router",
"description": "The router for Qwik.",
"version": "2.0.0-beta.35",
"version": "2.0.0-beta.36",
"bugs": "https://github.com/QwikDev/qwik/issues",
"dependencies": {
"@azure/functions": "3.5.1",
Expand Down
21 changes: 21 additions & 0 deletions packages/qwik/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @qwik.dev/core

## 2.0.0-beta.36

### Minor Changes

- ✨ make `usePreventNavigate$` and `request.rewrite()` stable by removing their experimental feature flags. (by [@Varixo](https://github.com/Varixo) in [#8631](https://github.com/QwikDev/qwik/pull/8631))

### Patch Changes

- 🐞🩹 prevent Qwik Vite virtual JSX modules from emitting sourcemaps that point to missing files. (by [@Varixo](https://github.com/Varixo) in [#8629](https://github.com/QwikDev/qwik/pull/8629))

- 🐞🩹 expose `getClientManifest` from the `@qwik.dev/core` root package types. (by [@Varixo](https://github.com/Varixo) in [#8630](https://github.com/QwikDev/qwik/pull/8630))

- 🐞🩹 stale DOM remaining after replacing content during a pending async render (by [@wmertens](https://github.com/wmertens) in [#8649](https://github.com/QwikDev/qwik/pull/8649))

- 🐞🩹 we removed the vite preload helper from the built bundles. This reduces total bundle size of all bundles by about 3%. (by [@maiieul](https://github.com/maiieul) in [#8617](https://github.com/QwikDev/qwik/pull/8617))

- 🐞🩹 escape URI-reserved vnode directive chars in serialized keys (by [@Varixo](https://github.com/Varixo) in [#8626](https://github.com/QwikDev/qwik/pull/8626))

- Updated dependencies [[`d124a92`](https://github.com/QwikDev/qwik/commit/d124a9207c45d1ce6cdb980d07d8ee6118083416)]:
- @qwik.dev/optimizer@2.1.0-beta.5

## 2.0.0-beta.35

### Minor Changes
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": "@qwik.dev/core",
"description": "An open source framework for building instant loading web apps at any scale, without the extra effort.",
"version": "2.0.0-beta.35",
"version": "2.0.0-beta.36",
"author": "Qwik Team",
"bin": {
"qwik": "./qwik-cli.mjs"
Expand Down