Skip to content

Commit

Permalink
fix(deps): update engines to v2.16.0-17.874f616fce40a665d24867f42e602…
Browse files Browse the repository at this point in the history
…ce8b5ed2cd7 (#5298)

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Joël <joel.galeran@gmail.com>
  • Loading branch information
3 people committed Jan 27, 2021
1 parent c5c0af0 commit b68523c
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 78 deletions.
4 changes: 2 additions & 2 deletions src/packages/cli/package.json
Expand Up @@ -114,7 +114,7 @@
},
"scripts": {
"test:commands": "./fixtures/test.sh && jest dotenv format doctor generate init introspect studio --maxConcurrency=1",
"test-update": "pnpm run test:commands -- -u && pnpm run test:integration -- -u",
"test-update": "pnpm run test:commands -- -u",
"test": "pnpm run test:commands",
"jest": "jest",
"install": "node scripts/install-entry.js",
Expand All @@ -129,7 +129,7 @@
"precommit": "lint-staged"
},
"dependencies": {
"@prisma/engines": "2.16.0-16.8dba86708c0617090afa18f53a8c7bcfe706236e"
"@prisma/engines": "2.16.0-17.874f616fce40a665d24867f42e602ce8b5ed2cd7"
},
"lint-staged": {
"*.ts": [
Expand Down
4 changes: 2 additions & 2 deletions src/packages/client/package.json
Expand Up @@ -60,7 +60,7 @@
"devDependencies": {
"@prisma/debug": "workspace:*",
"@prisma/engine-core": "workspace:*",
"@prisma/engines": "2.16.0-16.8dba86708c0617090afa18f53a8c7bcfe706236e",
"@prisma/engines": "2.16.0-17.874f616fce40a665d24867f42e602ce8b5ed2cd7",
"@prisma/generator-helper": "workspace:*",
"@prisma/get-platform": "workspace:*",
"@prisma/migrate": "workspace:*",
Expand Down Expand Up @@ -126,7 +126,7 @@
}
},
"dependencies": {
"@prisma/engines-version": "2.16.0-16.8dba86708c0617090afa18f53a8c7bcfe706236e"
"@prisma/engines-version": "2.16.0-17.874f616fce40a665d24867f42e602ce8b5ed2cd7"
},
"lint-staged": {
"*.ts": [
Expand Down
2 changes: 1 addition & 1 deletion src/packages/engine-core/package.json
Expand Up @@ -33,7 +33,7 @@
},
"dependencies": {
"@prisma/debug": "workspace:*",
"@prisma/engines": "2.16.0-16.8dba86708c0617090afa18f53a8c7bcfe706236e",
"@prisma/engines": "2.16.0-17.874f616fce40a665d24867f42e602ce8b5ed2cd7",
"@prisma/generator-helper": "workspace:*",
"@prisma/get-platform": "workspace:*",
"chalk": "^4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/packages/fetch-engine/package.json
Expand Up @@ -6,7 +6,7 @@
"license": "Apache-2.0",
"author": "Tim Suchanek <suchanek@prisma.io>",
"devDependencies": {
"@prisma/engines-version": "2.16.0-16.8dba86708c0617090afa18f53a8c7bcfe706236e",
"@prisma/engines-version": "2.16.0-17.874f616fce40a665d24867f42e602ce8b5ed2cd7",
"@types/find-cache-dir": "3.2.0",
"@types/jest": "26.0.20",
"@types/node": "12.19.15",
Expand Down
2 changes: 1 addition & 1 deletion src/packages/migrate/package.json
Expand Up @@ -14,7 +14,7 @@
"version": "latest"
},
"devDependencies": {
"@prisma/engines-version": "2.16.0-16.8dba86708c0617090afa18f53a8c7bcfe706236e",
"@prisma/engines-version": "2.16.0-17.874f616fce40a665d24867f42e602ce8b5ed2cd7",
"@prisma/generator-helper": "workspace:*",
"@prisma/sdk": "workspace:*",
"@types/diff": "4.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/packages/sdk/package.json
Expand Up @@ -45,7 +45,7 @@
"dependencies": {
"@prisma/debug": "workspace:*",
"@prisma/engine-core": "workspace:*",
"@prisma/engines": "2.16.0-16.8dba86708c0617090afa18f53a8c7bcfe706236e",
"@prisma/engines": "2.16.0-17.874f616fce40a665d24867f42e602ce8b5ed2cd7",
"@prisma/fetch-engine": "workspace:*",
"@prisma/generator-helper": "workspace:*",
"@prisma/get-platform": "workspace:*",
Expand Down
58 changes: 2 additions & 56 deletions src/packages/sdk/src/__tests__/introspection/introspection.test.ts
Expand Up @@ -23,13 +23,11 @@ test('introspection basic', async () => {
model Post {
author Int
content String?
/// The value of this field is generated by the database as: \`'1970-01-01 00:00:00'\`.
createdAt DateTime @default(dbgenerated())
createdAt DateTime @default(dbgenerated(\\"'1970-01-01 00:00:00'\\"))
kind String?
published Boolean @default(false)
title String @default(\\"\\")
/// The value of this field is generated by the database as: \`'1970-01-01 00:00:00'\`.
updatedAt DateTime @default(dbgenerated())
updatedAt DateTime @default(dbgenerated(\\"'1970-01-01 00:00:00'\\"))
uuid String @id
User User @relation(fields: [author], references: [id])
}
Expand Down Expand Up @@ -78,9 +76,7 @@ test('introspection basic', async () => {
Column {
name: \\"author\\",
tpe: ColumnType {
data_type: \\"INTEGER\\",
full_data_type: \\"INTEGER\\",
character_maximum_length: None,
family: Int,
arity: Required,
native_type: None,
Expand All @@ -91,9 +87,7 @@ test('introspection basic', async () => {
Column {
name: \\"content\\",
tpe: ColumnType {
data_type: \\"TEXT\\",
full_data_type: \\"TEXT\\",
character_maximum_length: None,
family: String,
arity: Nullable,
native_type: None,
Expand All @@ -104,9 +98,7 @@ test('introspection basic', async () => {
Column {
name: \\"createdAt\\",
tpe: ColumnType {
data_type: \\"DATE\\",
full_data_type: \\"DATE\\",
character_maximum_length: None,
family: DateTime,
arity: Required,
native_type: None,
Expand All @@ -124,9 +116,7 @@ test('introspection basic', async () => {
Column {
name: \\"kind\\",
tpe: ColumnType {
data_type: \\"TEXT\\",
full_data_type: \\"TEXT\\",
character_maximum_length: None,
family: String,
arity: Nullable,
native_type: None,
Expand All @@ -137,9 +127,7 @@ test('introspection basic', async () => {
Column {
name: \\"published\\",
tpe: ColumnType {
data_type: \\"BOOLEAN\\",
full_data_type: \\"BOOLEAN\\",
character_maximum_length: None,
family: Boolean,
arity: Required,
native_type: None,
Expand All @@ -159,9 +147,7 @@ test('introspection basic', async () => {
Column {
name: \\"title\\",
tpe: ColumnType {
data_type: \\"TEXT\\",
full_data_type: \\"TEXT\\",
character_maximum_length: None,
family: String,
arity: Required,
native_type: None,
Expand All @@ -181,9 +167,7 @@ test('introspection basic', async () => {
Column {
name: \\"updatedAt\\",
tpe: ColumnType {
data_type: \\"DATE\\",
full_data_type: \\"DATE\\",
character_maximum_length: None,
family: DateTime,
arity: Required,
native_type: None,
Expand All @@ -201,9 +185,7 @@ test('introspection basic', async () => {
Column {
name: \\"uuid\\",
tpe: ColumnType {
data_type: \\"TEXT\\",
full_data_type: \\"TEXT\\",
character_maximum_length: None,
family: String,
arity: Required,
native_type: None,
Expand Down Expand Up @@ -251,9 +233,7 @@ test('introspection basic', async () => {
Column {
name: \\"age\\",
tpe: ColumnType {
data_type: \\"INTEGER\\",
full_data_type: \\"INTEGER\\",
character_maximum_length: None,
family: Int,
arity: Required,
native_type: None,
Expand All @@ -273,9 +253,7 @@ test('introspection basic', async () => {
Column {
name: \\"amount\\",
tpe: ColumnType {
data_type: \\"REAL\\",
full_data_type: \\"REAL\\",
character_maximum_length: None,
family: Decimal,
arity: Required,
native_type: None,
Expand All @@ -295,9 +273,7 @@ test('introspection basic', async () => {
Column {
name: \\"balance\\",
tpe: ColumnType {
data_type: \\"REAL\\",
full_data_type: \\"REAL\\",
character_maximum_length: None,
family: Decimal,
arity: Required,
native_type: None,
Expand All @@ -317,9 +293,7 @@ test('introspection basic', async () => {
Column {
name: \\"email\\",
tpe: ColumnType {
data_type: \\"TEXT\\",
full_data_type: \\"TEXT\\",
character_maximum_length: None,
family: String,
arity: Required,
native_type: None,
Expand All @@ -339,9 +313,7 @@ test('introspection basic', async () => {
Column {
name: \\"id\\",
tpe: ColumnType {
data_type: \\"INTEGER\\",
full_data_type: \\"INTEGER\\",
character_maximum_length: None,
family: Int,
arity: Required,
native_type: None,
Expand All @@ -352,9 +324,7 @@ test('introspection basic', async () => {
Column {
name: \\"name\\",
tpe: ColumnType {
data_type: \\"TEXT\\",
full_data_type: \\"TEXT\\",
character_maximum_length: None,
family: String,
arity: Nullable,
native_type: None,
Expand All @@ -365,9 +335,7 @@ test('introspection basic', async () => {
Column {
name: \\"role\\",
tpe: ColumnType {
data_type: \\"TEXT\\",
full_data_type: \\"TEXT\\",
character_maximum_length: None,
family: String,
arity: Required,
native_type: None,
Expand Down Expand Up @@ -418,9 +386,7 @@ test('introspection basic', async () => {
Column {
name: \\"revision\\",
tpe: ColumnType {
data_type: \\"INTEGER\\",
full_data_type: \\"INTEGER\\",
character_maximum_length: None,
family: Int,
arity: Required,
native_type: None,
Expand All @@ -431,9 +397,7 @@ test('introspection basic', async () => {
Column {
name: \\"name\\",
tpe: ColumnType {
data_type: \\"TEXT\\",
full_data_type: \\"TEXT\\",
character_maximum_length: None,
family: String,
arity: Required,
native_type: None,
Expand All @@ -444,9 +408,7 @@ test('introspection basic', async () => {
Column {
name: \\"datamodel\\",
tpe: ColumnType {
data_type: \\"TEXT\\",
full_data_type: \\"TEXT\\",
character_maximum_length: None,
family: String,
arity: Required,
native_type: None,
Expand All @@ -457,9 +419,7 @@ test('introspection basic', async () => {
Column {
name: \\"status\\",
tpe: ColumnType {
data_type: \\"TEXT\\",
full_data_type: \\"TEXT\\",
character_maximum_length: None,
family: String,
arity: Required,
native_type: None,
Expand All @@ -470,9 +430,7 @@ test('introspection basic', async () => {
Column {
name: \\"applied\\",
tpe: ColumnType {
data_type: \\"INTEGER\\",
full_data_type: \\"INTEGER\\",
character_maximum_length: None,
family: Int,
arity: Required,
native_type: None,
Expand All @@ -483,9 +441,7 @@ test('introspection basic', async () => {
Column {
name: \\"rolled_back\\",
tpe: ColumnType {
data_type: \\"INTEGER\\",
full_data_type: \\"INTEGER\\",
character_maximum_length: None,
family: Int,
arity: Required,
native_type: None,
Expand All @@ -496,9 +452,7 @@ test('introspection basic', async () => {
Column {
name: \\"datamodel_steps\\",
tpe: ColumnType {
data_type: \\"TEXT\\",
full_data_type: \\"TEXT\\",
character_maximum_length: None,
family: String,
arity: Required,
native_type: None,
Expand All @@ -509,9 +463,7 @@ test('introspection basic', async () => {
Column {
name: \\"database_migration\\",
tpe: ColumnType {
data_type: \\"TEXT\\",
full_data_type: \\"TEXT\\",
character_maximum_length: None,
family: String,
arity: Required,
native_type: None,
Expand All @@ -522,9 +474,7 @@ test('introspection basic', async () => {
Column {
name: \\"errors\\",
tpe: ColumnType {
data_type: \\"TEXT\\",
full_data_type: \\"TEXT\\",
character_maximum_length: None,
family: String,
arity: Required,
native_type: None,
Expand All @@ -535,9 +485,7 @@ test('introspection basic', async () => {
Column {
name: \\"started_at\\",
tpe: ColumnType {
data_type: \\"DATE\\",
full_data_type: \\"DATE\\",
character_maximum_length: None,
family: DateTime,
arity: Required,
native_type: None,
Expand All @@ -548,9 +496,7 @@ test('introspection basic', async () => {
Column {
name: \\"finished_at\\",
tpe: ColumnType {
data_type: \\"DATE\\",
full_data_type: \\"DATE\\",
character_maximum_length: None,
family: DateTime,
arity: Nullable,
native_type: None,
Expand Down
Expand Up @@ -253,9 +253,9 @@ model invalid_enum_value_name {
// }
model unsupported_type {
field1 Int @id @default(autoincrement())
// This type is currently not supported.
// unsupported binary(50)?
field1 Int @id @default(autoincrement())
// This type is currently not supported by the Prisma Client.
// unsupported Unsupported("binary(50)")?
}
enum invalid_enum_value_name_here_be_enum {
Expand Down Expand Up @@ -297,7 +297,7 @@ Array [
},
],
code: 3,
message: These fields were commented out because Prisma currently does not support their types.,
message: These fields are not supported by the Prisma Client, because Prisma currently does not support their types.,
},
Object {
affected: Array [
Expand Down
Expand Up @@ -253,9 +253,9 @@ model invalid_enum_value_name {
// }
model unsupported_type {
field1 Int @id @default(autoincrement())
// This type is currently not supported.
// unsupported polygon?
field1 Int @id @default(autoincrement())
// This type is currently not supported by the Prisma Client.
// unsupported Unsupported("polygon")?
}
enum invalid_enum {
Expand Down Expand Up @@ -297,7 +297,7 @@ Array [
},
],
code: 3,
message: These fields were commented out because Prisma currently does not support their types.,
message: These fields are not supported by the Prisma Client, because Prisma currently does not support their types.,
},
Object {
affected: Array [
Expand Down

0 comments on commit b68523c

Please sign in to comment.