Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .changeset/reenable-qwik-tests.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"create-cloudflare": patch
---

Bump `create-qwik` from 1.19.0 to 1.19.1

This update fixes an upstream issue where `create-qwik` installed `@eslint/js` at "latest", which resolved to v10 and conflicted with the project's eslint 9.x.
4 changes: 3 additions & 1 deletion fixtures/nodejs-hybrid-app/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,9 @@ async function testPostgresLibrary(env: Env, ctx: Context) {
database: env.DB_NAME,
});
await client.connect();
const result = await client.query(`SELECT * FROM rnc_database LIMIT 5`);
const result = await client.query(
`SELECT * FROM rnacen.rnc_database LIMIT 5`
);
// Return the first row as JSON
const resp = new Response(JSON.stringify(result.rows[0]), {
headers: { "Content-Type": "application/json" },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -281,9 +281,6 @@ function getFrameworkTestConfig(pm: string): NamedFrameworkTestConfig[] {
{
name: "qwik:pages",
argv: ["--platform", "pages"],
// quarantined: upstream @eslint/js "latest" now resolves to v10 which
// conflicts with the project's eslint 9.x
quarantine: true,
promptHandlers: [
{
matcher: /Yes looks good, finish update/,
Expand All @@ -307,9 +304,6 @@ function getFrameworkTestConfig(pm: string): NamedFrameworkTestConfig[] {
{
name: "qwik:workers",
argv: ["--platform", "workers"],
// quarantined: upstream @eslint/js "latest" now resolves to v10 which
// conflicts with the project's eslint 9.x
quarantine: true,
promptHandlers: [
{
matcher: /Yes looks good, finish update/,
Expand Down Expand Up @@ -842,9 +836,6 @@ function getExperimentalFrameworkTestConfig(
{
name: "qwik:workers",
argv: ["--platform", "workers"],
// quarantined: upstream @eslint/js "latest" now resolves to v10 which
// conflicts with the project's eslint 9.x
quarantine: true,
promptHandlers: [
{
matcher: /Yes looks good, finish update/,
Expand Down
2 changes: 1 addition & 1 deletion packages/create-cloudflare/src/frameworks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"create-docusaurus": "3.9.2",
"create-hono": "0.19.4",
"create-next-app": "15.5.6",
"create-qwik": "1.19.0",
"create-qwik": "1.19.1",
"create-vite": "8.3.0",
"create-rwsdk": "3.1.3",
"create-react-router": "7.13.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default {

async function testPostgresLibrary(client: Client, ctx: ExecutionContext) {
await client.connect();
const result = await client.query(`SELECT * FROM rnc_database`);
const result = await client.query(`SELECT * FROM rnacen.rnc_database`);
// Return the first row as JSON
const resp = Response.json(result.rows[0]);

Expand Down
Loading