From 85ac28e8206bd9ed77775caa5948f832622daeea Mon Sep 17 00:00:00 2001 From: Jan Piotrowski Date: Sat, 27 Apr 2024 01:13:44 +0200 Subject: [PATCH] fix(d1): Remove beta mention from warning --- packages/adapter-d1/src/d1.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/adapter-d1/src/d1.ts b/packages/adapter-d1/src/d1.ts index 0f3aa15b83f3..0d3af46e6e9e 100644 --- a/packages/adapter-d1/src/d1.ts +++ b/packages/adapter-d1/src/d1.ts @@ -171,7 +171,7 @@ export class PrismaD1 extends D1Queryable implements DriverAdapter { this.warnOnce( 'D1 Transaction', - "Cloudflare D1 - currently in Beta - does not support transactions. When using Prisma's D1 adapter, implicit & explicit transactions will be ignored and ran as individual queries, which breaks the guarantees of the ACID properties of transactions. For more details see https://pris.ly/d/d1-transactions", + "Cloudflare D1 does not support transactions yet. When using Prisma's D1 adapter, implicit & explicit transactions will be ignored and run as individual queries, which breaks the guarantees of the ACID properties of transactions. For more details see https://pris.ly/d/d1-transactions", ) return ok(new D1Transaction(this.client, options))