- pg-cloudflare@1.2.0
 - pg-connection-string@2.8.0
 - pg-cursor@2.14.0
 - pg-esm-test@1.1.0
 - pg-native@3.4.0
 - pg-pool@3.9.0
 - pg-protocol@1.9.0
 - pg-query-stream@4.9.0
 - pg@8.15.0
This commit is contained in:
Brian Carlson 2025-04-22 10:55:24 -05:00
parent 60817cd914
commit 9ec9e5f58d
9 changed files with 23 additions and 23 deletions

View File

@ -1,6 +1,6 @@
{
"name": "pg-cloudflare",
"version": "1.1.2-alpha.1",
"version": "1.2.0",
"description": "A socket implementation that can run on Cloudflare Workers using native TCP connections.",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@ -1,6 +1,6 @@
{
"name": "pg-connection-string",
"version": "2.7.1-alpha.0",
"version": "2.8.0",
"description": "Functions for dealing with a PostgresSQL connection string",
"main": "./index.js",
"types": "./index.d.ts",

View File

@ -1,6 +1,6 @@
{
"name": "pg-cursor",
"version": "2.13.2-alpha.1",
"version": "2.14.0",
"description": "Query cursor extension for node-postgres",
"main": "index.js",
"exports": {
@ -25,7 +25,7 @@
"license": "MIT",
"devDependencies": {
"mocha": "^10.5.2",
"pg": "^8.14.2-alpha.1"
"pg": "^8.15.0"
},
"peerDependencies": {
"pg": "^8"

View File

@ -1,6 +1,6 @@
{
"name": "pg-esm-test",
"version": "1.0.1-alpha.1",
"version": "1.1.0",
"description": "A test module for PostgreSQL with ESM support",
"main": "index.js",
"type": "module",
@ -14,12 +14,12 @@
"test"
],
"devDependencies": {
"pg": "^8.14.2-alpha.1",
"pg-cloudflare": "^1.1.2-alpha.1",
"pg-cursor": "^2.13.2-alpha.1",
"pg-native": "^3.3.1-alpha.0",
"pg-pool": "^3.8.1-alpha.1",
"pg-query-stream": "^4.8.2-alpha.1"
"pg": "^8.15.0",
"pg-cloudflare": "^1.2.0",
"pg-cursor": "^2.14.0",
"pg-native": "^3.4.0",
"pg-pool": "^3.9.0",
"pg-query-stream": "^4.9.0"
},
"author": "Brian M. Carlson <brian.m.carlson@gmail.com>",
"license": "MIT"

View File

@ -1,6 +1,6 @@
{
"name": "pg-native",
"version": "3.3.1-alpha.0",
"version": "3.4.0",
"description": "A slightly nicer interface to Postgres over node-libpq",
"main": "index.js",
"exports": {

View File

@ -1,6 +1,6 @@
{
"name": "pg-pool",
"version": "3.8.1-alpha.1",
"version": "3.9.0",
"description": "Connection pool for node-postgres",
"main": "index.js",
"exports": {
@ -39,7 +39,7 @@
"expect.js": "0.3.1",
"lodash": "^4.17.11",
"mocha": "^10.5.2",
"pg-cursor": "^2.13.2-alpha.1"
"pg-cursor": "^2.14.0"
},
"peerDependencies": {
"pg": ">=8.0"

View File

@ -1,6 +1,6 @@
{
"name": "pg-protocol",
"version": "1.8.1-alpha.0",
"version": "1.9.0",
"description": "The postgres client/server binary protocol, implemented in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@ -1,6 +1,6 @@
{
"name": "pg-query-stream",
"version": "4.8.2-alpha.1",
"version": "4.9.0",
"description": "Postgres query result returned as readable stream",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
@ -45,7 +45,7 @@
"concat-stream": "~1.0.1",
"eslint-plugin-promise": "^6.0.1",
"mocha": "^10.5.2",
"pg": "^8.14.2-alpha.1",
"pg": "^8.15.0",
"stream-spec": "~0.3.5",
"ts-node": "^8.5.4",
"typescript": "^4.0.3"
@ -54,6 +54,6 @@
"pg": "^8"
},
"dependencies": {
"pg-cursor": "^2.13.2-alpha.1"
"pg-cursor": "^2.14.0"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "pg",
"version": "8.14.2-alpha.1",
"version": "8.15.0",
"description": "PostgreSQL client - pure javascript & libpq with the same API",
"keywords": [
"database",
@ -27,9 +27,9 @@
}
},
"dependencies": {
"pg-connection-string": "^2.7.1-alpha.0",
"pg-pool": "^3.8.1-alpha.1",
"pg-protocol": "^1.8.1-alpha.0",
"pg-connection-string": "^2.8.0",
"pg-pool": "^3.9.0",
"pg-protocol": "^1.9.0",
"pg-types": "^2.1.0",
"pgpass": "1.x"
},
@ -46,7 +46,7 @@
"wrangler": "^3.x"
},
"optionalDependencies": {
"pg-cloudflare": "^1.1.2-alpha.1"
"pg-cloudflare": "^1.2.0"
},
"peerDependencies": {
"pg-native": ">=3.0.1"