Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update engines to 5.13.0-15.8b36be322cc78c7e156e98b8966fb34e5ea04db9 #23824

Merged
Merged
4 changes: 2 additions & 2 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
"@prisma/debug": "workspace:*",
"@prisma/driver-adapter-utils": "workspace:*",
"@prisma/engines": "workspace:*",
"@prisma/engines-version": "5.13.0-6.dcdb692a8946281c0c85b4a6f7081984eec92b92",
"@prisma/engines-version": "5.13.0-15.8b36be322cc78c7e156e98b8966fb34e5ea04db9",
"@prisma/fetch-engine": "workspace:*",
"@prisma/generator-helper": "workspace:*",
"@prisma/get-platform": "workspace:*",
Expand All @@ -183,7 +183,7 @@
"@prisma/migrate": "workspace:*",
"@prisma/mini-proxy": "0.9.5",
"@prisma/pg-worker": "workspace:*",
"@prisma/query-engine-wasm": "5.13.0-6.dcdb692a8946281c0c85b4a6f7081984eec92b92",
"@prisma/query-engine-wasm": "5.13.0-15.8b36be322cc78c7e156e98b8966fb34e5ea04db9",
"@snaplet/copycat": "0.17.3",
"@swc-node/register": "1.9.0",
"@swc/core": "1.4.11",
Expand Down
4 changes: 2 additions & 2 deletions packages/client/src/__tests__/generation/generator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ describe('generator', () => {
})
} catch (e) {
expect(stripAnsi(e.message)).toMatchInlineSnapshot(`
"Prisma schema validation - (get-dmmf wasm)
"Prisma schema validation - (get-config wasm)
Error code: P1012
error: Error validating model "public": The model name \`public\` is invalid. It is a reserved name. Please change it. Read more at https://pris.ly/d/naming-models
--> schema.prisma:10
Expand All @@ -143,7 +143,7 @@ describe('generator', () => {
|

Validation Error Count: 2
[Context: getDmmf]
[Context: getConfig]

Prisma CLI Version : 0.0.0"
`)
Expand Down
2 changes: 1 addition & 1 deletion packages/engines/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"dependencies": {
"@prisma/debug": "workspace:*",
"@prisma/engines-version": "5.13.0-6.dcdb692a8946281c0c85b4a6f7081984eec92b92",
"@prisma/engines-version": "5.13.0-15.8b36be322cc78c7e156e98b8966fb34e5ea04db9",
"@prisma/fetch-engine": "workspace:*",
"@prisma/get-platform": "workspace:*"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/fetch-engine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
},
"dependencies": {
"@prisma/debug": "workspace:*",
"@prisma/engines-version": "5.13.0-6.dcdb692a8946281c0c85b4a6f7081984eec92b92",
"@prisma/engines-version": "5.13.0-15.8b36be322cc78c7e156e98b8966fb34e5ea04db9",
"@prisma/get-platform": "workspace:*"
},
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion packages/internals/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@
"@prisma/fetch-engine": "workspace:*",
"@prisma/generator-helper": "workspace:*",
"@prisma/get-platform": "workspace:*",
"@prisma/prisma-schema-wasm": "5.13.0-6.dcdb692a8946281c0c85b4a6f7081984eec92b92",
"@prisma/prisma-schema-wasm": "5.13.0-15.8b36be322cc78c7e156e98b8966fb34e5ea04db9",
"@prisma/schema-files-loader": "workspace:*",
"arg": "5.0.2",
"prompts": "2.4.2"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ describe('getDMMF', () => {
expect(isRustPanic(e)).toBe(true)
expect(serialize(e.message)).toMatchInlineSnapshot(`
""RuntimeError: panicked at prisma-fmt/src/get_dmmf.rs:0:0:
Failed to deserialize GetDmmfParams: invalid type: boolean \`true\`, expected a string at line 1 column 20""
Failed to deserialize GetDmmfParams: data did not match any variant of untagged enum SchemaFileInput at line 1 column 20""
jkomyno marked this conversation as resolved.
Show resolved Hide resolved
`)
expect(e.rustStack).toBeTruthy()
}
Expand Down