From 56371d482c1276693696c30a36ed23e7abf8c432 Mon Sep 17 00:00:00 2001 From: Luca Steeb Date: Sun, 26 Dec 2021 20:34:46 +0700 Subject: [PATCH] chore(prisma): upgrade prisma to 3.7.0 --- binaries/binaries.go | 4 ++-- test/features/composite_self/default_test.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/binaries/binaries.go b/binaries/binaries.go index 6522b3bf1..1e537d0f1 100644 --- a/binaries/binaries.go +++ b/binaries/binaries.go @@ -15,11 +15,11 @@ import ( ) // PrismaVersion is a hardcoded version of the Prisma CLI. -const PrismaVersion = "3.4.0" +const PrismaVersion = "3.7.0" // EngineVersion is a hardcoded version of the Prisma Engine. // The versions can be found under https://github.com/prisma/prisma-engines/commits/master -const EngineVersion = "1c9fdaa9e2319b814822d6dbfd0a69e1fcc13a85" +const EngineVersion = "8746e055198f517658c08a0c426c7eec87f5a85f" // PrismaURL points to an S3 bucket URL where the CLI binaries are stored. var PrismaURL = "https://prisma-photongo.s3-eu-west-1.amazonaws.com/%s-%s-%s.gz" diff --git a/test/features/composite_self/default_test.go b/test/features/composite_self/default_test.go index 03cfe8f17..d28a22d78 100644 --- a/test/features/composite_self/default_test.go +++ b/test/features/composite_self/default_test.go @@ -121,7 +121,7 @@ func TestCompositeSelf(t *testing.T) { for _, tt := range tests { tt := tt t.Run(tt.name, func(t *testing.T) { - test.RunSerial(t, test.Databases, func(t *testing.T, db test.Database, ctx context.Context) { + test.RunSerial(t, []test.Database{test.MySQL, test.PostgreSQL, test.SQLite}, func(t *testing.T, db test.Database, ctx context.Context) { client := NewClient() mockDBName := test.Start(t, db, client.Engine, tt.before) defer test.End(t, db, client.Engine, mockDBName)