@prisma/adapter-pg 6.19.0-integration-next.21 → 6.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains the driver adapter for Prisma ORM that enables usage of th
8
8
 
9
9
  ## Usage
10
10
 
11
- This section explains how you can use it with Prisma ORM and the `@prisma/adapter-pg` driver adapter. Be sure that the `DATABASE_URL` environment variable is set to your PostgreSQL connection string (e.g. loaded using `dotenv` from a `.env` file).
11
+ This section explains how you can use it with Prisma ORM and the `@prisma/adapter-pg` driver adapter. Be sure that the `DATABASE_URL` environment variable is set to your PostgreSQL connection string (e.g. in a `.env` file).
12
12
 
13
13
  ### 1. Install the dependencies
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/adapter-pg",
3
- "version": "6.19.0-integration-next.21",
3
+ "version": "6.19.0",
4
4
  "description": "Prisma's driver adapter for \"pg\"",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -31,13 +31,13 @@
31
31
  "license": "Apache-2.0",
32
32
  "sideEffects": false,
33
33
  "dependencies": {
34
- "pg": "^8.16.3",
35
34
  "postgres-array": "3.0.4",
36
- "@prisma/driver-adapter-utils": "6.19.0-integration-next.21"
35
+ "pg": "^8.11.3",
36
+ "@prisma/driver-adapter-utils": "6.19.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/pg": "8.11.11",
40
- "@prisma/debug": "6.19.0-integration-next.21"
40
+ "@prisma/debug": "6.19.0"
41
41
  },
42
42
  "scripts": {
43
43
  "dev": "DEV=true tsx helpers/build.ts",