Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
16 changes: 8 additions & 8 deletions .github/workflows/test-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
matrix:
shard: ['1/5', '2/5', '3/5', '4/5', '5/5']
queryEngine: ${{ fromJson(inputs.queryEngine) }}
node: [18, 20, 22]
node: [18, 20, 22, 23]
previewFeatures: ['', 'relationJoins']
env:
NODE_OPTIONS: '--max-old-space-size=8096'
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
fail-fast: false
matrix:
shard: ['1/6', '2/6', '3/6', '4/6', '5/6', '6/6']
node: [18, 20, 22]
node: [18, 20, 22, 23]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
fail-fast: false
matrix:
queryEngine: ['library'] # TODO: binary engine is leaking at the moment
node: [18, 20, 22]
node: [18, 20, 22, 23]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -614,7 +614,7 @@ jobs:
matrix:
queryEngine: ${{ fromJson(inputs.queryEngine) }}
os: [ubuntu-latest]
node: [18, 20, 22]
node: [18, 20, 22, 23]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -660,7 +660,7 @@ jobs:
matrix:
queryEngine: ${{ fromJson(inputs.queryEngine) }}
os: [ubuntu-latest]
node: [18, 20, 22]
node: [18, 20, 22, 23]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -706,7 +706,7 @@ jobs:
matrix:
queryEngine: ${{ fromJson(inputs.queryEngine) }}
os: [ubuntu-latest]
node: [18, 20, 22]
node: [18, 20, 22, 23]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -751,7 +751,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
node: [18, 20, 22]
node: [18, 20, 22, 23]
include:
- os: windows-latest
version: 18
Expand Down Expand Up @@ -783,7 +783,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
node: [18, 20, 22]
node: [18, 20, 22, 23]
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/Init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
format,
getCommandWithExecutor,
HelpError,
isError,
link,
logger,
protocolToConnectorType,
Expand All @@ -16,7 +17,6 @@ import fs from 'fs'
import { bold, dim, green, red, yellow } from 'kleur/colors'
import path from 'path'
import { match, P } from 'ts-pattern'
import { isError } from 'util'

import { printError } from './utils/prompt/utils/print'

Expand Down
4 changes: 2 additions & 2 deletions sandbox/driver-adapters/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ This is a playground for testing the Prisma Client with Driver Adapters (aka Nod

## How to setup

We assume Node.js `v18.16.1`+ is installed. If not, run `nvm use` in the current directory.
This is very important to double-check if you have multiple versions installed, as PlanetScale requires either Node.js `v18.16.1`+ or a custom `fetch` function.
We assume Node.js `v18.18`+ is installed. If not, run `nvm use` in the current directory.
This is very important to double-check if you have multiple versions installed, as PlanetScale requires either Node.js `v18.18`+ or a custom `fetch` function.

- Create a `.envrc` starting from `.envrc.example`, and fill in the missing values following the given template
- Install Node.js dependencies via
Expand Down