Skip to content

Commit 832bb13

Browse files
Version Packages (beta)
1 parent fcee816 commit 832bb13

File tree

13 files changed

+82
-6
lines changed

13 files changed

+82
-6
lines changed

.changeset/pre.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
"angry-boats-lose",
2525
"angry-grapes-itch",
2626
"angry-jokes-brush",
27+
"async-allow-stale",
28+
"better-games-grin",
2729
"better-shrimps-sin",
2830
"big-rocks-roll",
2931
"big-rocks-rumble",
@@ -49,6 +51,7 @@
4951
"cold-rice-slide",
5052
"common-breads-wait",
5153
"common-socks-heal",
54+
"cool-hats-glow",
5255
"crazy-cities-tap",
5356
"crazy-dodos-attend",
5457
"cruel-taxis-talk",
@@ -85,6 +88,7 @@
8588
"five-shoes-deny",
8689
"five-trees-share",
8790
"flat-hounds-burn",
91+
"fluffy-bottles-wash",
8892
"fluffy-poets-raise",
8993
"fluffy-times-hug",
9094
"forty-garlics-train",
@@ -126,13 +130,16 @@
126130
"kind-toes-glow",
127131
"large-houses-watch",
128132
"large-turtles-write",
133+
"lazy-knives-write",
129134
"lazy-tigers-dig",
130135
"lemon-dingos-dance",
136+
"lemon-flies-taste",
131137
"lemon-tools-bathe",
132138
"light-eels-lead",
133139
"light-singers-remain",
134140
"little-birds-worry",
135141
"little-ways-deny",
142+
"long-cooks-joke",
136143
"long-shirts-thank",
137144
"loud-dolphins-relate",
138145
"loud-mammals-dress",
@@ -147,6 +154,7 @@
147154
"metal-shrimps-search",
148155
"nasty-dots-brake",
149156
"nasty-views-study",
157+
"neat-seas-give",
150158
"nervous-terms-explode",
151159
"nice-teams-grow",
152160
"nine-otters-repeat",
@@ -164,6 +172,7 @@
164172
"orange-planes-kiss",
165173
"petite-experts-press",
166174
"plain-eggs-clean",
175+
"plain-snakes-punch",
167176
"polite-parents-win",
168177
"polite-sloths-visit",
169178
"poor-peaches-roll",
@@ -191,6 +200,7 @@
191200
"ripe-taxes-watch",
192201
"rotten-penguins-cough",
193202
"rotten-weeks-tickle",
203+
"rude-sloths-help",
194204
"seven-pumpkins-argue",
195205
"shaggy-nights-visit",
196206
"shaggy-poems-appear",
@@ -222,6 +232,7 @@
222232
"smooth-cups-press",
223233
"smooth-forks-make",
224234
"social-lizards-clean",
235+
"social-rooms-invite",
225236
"soft-insects-see",
226237
"solid-olives-know",
227238
"some-birds-juggle",
@@ -283,6 +294,7 @@
283294
"witty-balloons-thank",
284295
"young-actors-admire",
285296
"young-cameras-hang",
297+
"yummy-actors-win",
286298
"yummy-grapes-make"
287299
]
288300
}

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

57
## 2.0.0-beta.30

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.31",
4+
"version": "2.0.0-beta.32",
55
"author": "Qwik Team",
66
"bin": "./create-qwik.mjs",
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.32
4+
35
## 2.0.0-beta.31
46

57
## 2.0.0-beta.30

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

packages/optimizer/CHANGELOG.md

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

3+
## 2.1.0-beta.2
4+
5+
### Minor Changes
6+
7+
- ✨ Qwik now supports `passive:eventname` markers for JSX event handlers. Use them with matching `on*$/document:on*$/window:on*$` listeners when you want passive browser listeners for events like `touchstart`, `touchmove`, or `scroll`. (by [@Varixo](https://github.com/Varixo) in [#8523](https://github.com/QwikDev/qwik/pull/8523))
8+
9+
- ✨ The optimizer now supports inline `@qwik-disable-next-line` hints, allowing you to suppress specific diagnostics for the next line when needed, such as `preventdefault-passive-check`. (by [@Varixo](https://github.com/Varixo) in [#8523](https://github.com/QwikDev/qwik/pull/8523))
10+
311
## 2.0.1-beta.1
412

513
### Patch Changes

packages/optimizer/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/optimizer",
33
"description": "Qwik optimizer runtime and native bindings.",
4-
"version": "2.0.1-beta.1",
4+
"version": "2.1.0-beta.2",
55
"bugs": "https://github.com/QwikDev/qwik/issues",
66
"engines": {
77
"node": "^20.3.0 || >=21.0.0"

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.32
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`ccb7579`](https://github.com/QwikDev/qwik/commit/ccb7579d4db0d63c106ed3f5e221fd52dbab6c92), [`06d82e0`](https://github.com/QwikDev/qwik/commit/06d82e0d657f56e4d767bbcc0aab3dacf9be50ba), [`7ae409d`](https://github.com/QwikDev/qwik/commit/7ae409deb7432f800c1a33206108e059cc4af1dd), [`e3eaa4e`](https://github.com/QwikDev/qwik/commit/e3eaa4efbd8afba3f5541f772ecd63ec9775d8a6), [`7ae409d`](https://github.com/QwikDev/qwik/commit/7ae409deb7432f800c1a33206108e059cc4af1dd), [`06d82e0`](https://github.com/QwikDev/qwik/commit/06d82e0d657f56e4d767bbcc0aab3dacf9be50ba), [`d4def9d`](https://github.com/QwikDev/qwik/commit/d4def9de48174787d9944a161cb6a9627764c714), [`fe3c4e2`](https://github.com/QwikDev/qwik/commit/fe3c4e23a1bf6e12842ad88f6392f3d62a5db80b)]:
8+
- @qwik.dev/core@2.0.0-beta.32
9+
310
## 2.0.0-beta.31
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.31",
4+
"version": "2.0.0-beta.32",
55
"bugs": "https://github.com/QwikDev/qwik/issues",
66
"devDependencies": {
77
"@qwik.dev/core": "workspace:*",

packages/qwik-router/CHANGELOG.md

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

3+
## 2.0.0-beta.32
4+
5+
### Minor Changes
6+
7+
- ✨ the `notFound` exports of the router factory functions no longer do anything, because the `router` exports handle not-found routes. (by [@wmertens](https://github.com/wmertens) in [#8534](https://github.com/QwikDev/qwik/pull/8534))
8+
9+
### Patch Changes
10+
11+
- 🐞🩹 intermittent Deno build failure in apps that use async tasks (by [@Varixo](https://github.com/Varixo) in [#8550](https://github.com/QwikDev/qwik/pull/8550))
12+
13+
- 🐞🩹 fix an SPA routing bug where using browser back/forward after a manual refresh could change the URL without rerendering the page (by [@Varixo](https://github.com/Varixo) in [#8544](https://github.com/QwikDev/qwik/pull/8544))
14+
15+
- 🐞🩹 image imports `foo.png?jsx` are now more robust (by [@wmertens](https://github.com/wmertens) in [#8533](https://github.com/QwikDev/qwik/pull/8533))
16+
17+
- Updated dependencies [[`ccb7579`](https://github.com/QwikDev/qwik/commit/ccb7579d4db0d63c106ed3f5e221fd52dbab6c92), [`06d82e0`](https://github.com/QwikDev/qwik/commit/06d82e0d657f56e4d767bbcc0aab3dacf9be50ba), [`7ae409d`](https://github.com/QwikDev/qwik/commit/7ae409deb7432f800c1a33206108e059cc4af1dd), [`e3eaa4e`](https://github.com/QwikDev/qwik/commit/e3eaa4efbd8afba3f5541f772ecd63ec9775d8a6), [`7ae409d`](https://github.com/QwikDev/qwik/commit/7ae409deb7432f800c1a33206108e059cc4af1dd), [`06d82e0`](https://github.com/QwikDev/qwik/commit/06d82e0d657f56e4d767bbcc0aab3dacf9be50ba), [`d4def9d`](https://github.com/QwikDev/qwik/commit/d4def9de48174787d9944a161cb6a9627764c714), [`fe3c4e2`](https://github.com/QwikDev/qwik/commit/fe3c4e23a1bf6e12842ad88f6392f3d62a5db80b)]:
18+
- @qwik.dev/core@2.0.0-beta.32
19+
320
## 2.0.0-beta.31
421

522
### Minor Changes

0 commit comments

Comments
 (0)