Skip to content

Commit de5e864

Browse files
authored
Merge pull request #8159 from QwikDev/v2-merge-main
chore: merge 1.17.2 into v2
2 parents 1ff482f + 7ddec1b commit de5e864

File tree

115 files changed

+603
-1088
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+603
-1088
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ jobs:
660660
settings:
661661
- host: ubuntu-latest
662662
browser: chromium
663-
# too slow and flaky. Perhaps better in v2?
663+
# Some tests are failing on firefox, disable for now
664664
# - host: ubuntu-latest
665665
# browser: firefox
666666
- host: windows-latest
@@ -822,7 +822,8 @@ jobs:
822822
always() &&
823823
github.repository == 'QwikDev/qwik' && (
824824
github.ref == 'refs/heads/build/v2' ||
825-
needs.test-unit.result == 'success'
825+
needs.test-unit.result == 'success' ||
826+
needs.test-unit.result == 'skipped'
826827
)
827828
828829
steps:

e2e/adapters-e2e/playwright.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default defineConfig({
2020
},
2121

2222
// Increase global timeout for service worker tests
23-
timeout: 30000,
23+
timeout: process.env.CI ? 120000 : 30000,
2424

2525
projects: [
2626
{
@@ -44,6 +44,6 @@ export default defineConfig({
4444
port: 3000,
4545
stdout: 'pipe',
4646
reuseExistingServer: !process.env.CI,
47-
timeout: 120000,
47+
timeout: process.env.CI ? 120000 : 30000,
4848
},
4949
});

e2e/qwik-cli-e2e/utils/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,4 +205,4 @@ export function log(text: string) {
205205
console.log(yellow('E2E: ' + text));
206206
}
207207

208-
export const DEFAULT_TIMEOUT = 30000;
208+
export const DEFAULT_TIMEOUT = process.env.CI ? 120000 : 30000;

e2e/qwik-react-e2e/playwright.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default defineConfig({
2020
},
2121

2222
// Increase global timeout for service worker tests
23-
timeout: 30000,
23+
timeout: process.env.CI ? 120000 : 30000,
2424

2525
projects: [
2626
{
@@ -44,5 +44,6 @@ export default defineConfig({
4444
port: 3000,
4545
stdout: 'pipe',
4646
reuseExistingServer: !process.env.CI,
47+
timeout: process.env.CI ? 120000 : 30000,
4748
},
4849
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
"typescript": "5.9.3",
155155
"typescript-eslint": "8.45.0",
156156
"vfile": "6.0.3",
157-
"vite": "7.1.11",
157+
"vite": "7.2.2",
158158
"vite-imagetools": "9.0.0",
159159
"vite-plugin-dts": "4.5.4",
160160
"vite-tsconfig-paths": "5.1.4",

packages/create-qwik/CHANGELOG.md

Lines changed: 4 additions & 0 deletions

packages/docs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"prettier": "3.6.2",
4444
"prism-themes": "1.9.0",
4545
"prismjs": "1.30.0",
46-
"puppeteer": "22.13.1",
46+
"playwright": "1.55.1",
4747
"qwik-image": "0.0.16",
4848
"react": "19.1.1",
4949
"react-dom": "19.1.1",
@@ -54,7 +54,7 @@
5454
"tsm": "2.3.0",
5555
"typescript": "5.9.3",
5656
"valibot": "0.33.3",
57-
"vite": "7.1.11",
57+
"vite": "7.2.2",
5858
"vite-tsconfig-paths": "5.1.4",
5959
"wrangler": "3.65.1"
6060
},
@@ -73,7 +73,7 @@
7373
"build.preview": "NODE_OPTIONS=--max-old-space-size=8192 vite build --ssr src/entry.preview.tsx",
7474
"build.repl-sw": "vite --config vite.config-repl-sw build",
7575
"build.server": "NODE_OPTIONS=--max-old-space-size=8192 vite build -c adapters/cloudflare-pages/vite.config",
76-
"build.showcase": "pnpm node scripts/showcase.js",
76+
"build.showcase": "pnpm node scripts/showcase.ts",
7777
"codesandbox.sync": "node codesandbox.sync.ts",
7878
"contributors": "node contributors.ts",
7979
"deploy": "wrangler pages publish ./dist",
58.6 KB
-34.2 KB
Binary file not shown.
-33.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)