Skip to content

Commit 03e65bc

Browse files
Changing upstream pg and pg-pool to respection yugabytedb versions (yugabyte#12)
1 parent 0c46701 commit 03e65bc

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/pg-pool/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@yugabytedb/pg-pool",
3-
"version": "3.5.1-yb-1",
3+
"version": "3.5.1-yb-3",
44
"description": "Connection pool for node-postgres",
55
"main": "index.js",
66
"directories": {
@@ -35,7 +35,7 @@
3535
"pg-cursor": "^1.3.0"
3636
},
3737
"peerDependencies": {
38-
"pg": ">=8.0"
38+
"@yugabytedb/pg": "*"
3939
},
4040
"publishConfig": {
4141
"access": "public"

packages/pg/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
var Client = require('./client')
44
var defaults = require('./defaults')
55
var Connection = require('./connection')
6-
var Pool = require('pg-pool')
6+
var Pool = require('@yugabytedb/pg-pool')
77
const { DatabaseError } = require('pg-protocol')
88

99
const poolFactory = (Client) => {

packages/pg/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@yugabytedb/pg",
3-
"version": "8.7.3-yb-9",
3+
"version": "8.7.3-yb-10",
44
"description": "Pure JavaScript PostgreSQL client and native libpq bindings with YugabyteDB smart-driver features",
55
"keywords": [
66
"database",
@@ -28,7 +28,7 @@
2828
"buffer-writer": "2.0.0",
2929
"packet-reader": "1.0.0",
3030
"pg-connection-string": "^2.5.0",
31-
"pg-pool": "^3.5.1",
31+
"@yugabytedb/pg-pool": "^3.5.1-yb-3",
3232
"pg-protocol": "^1.5.0",
3333
"pg-types": "^2.1.0",
3434
"pgpass": "1.x",

0 commit comments

Comments
 (0)