Skip to content

File tree

10 files changed

+30
-30
lines changed

10 files changed

+30
-30
lines changed

packages/pg-bundler-test/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "pg-bundler-test",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"description": "Test bundlers with pg-cloudflare, https://github.com/brianc/node-postgres/issues/3452",
55
"license": "MIT",
66
"private": true,
77
"type": "module",
88
"devDependencies": {
9-
"pg-cloudflare": "^1.2.5",
10-
"webpack": "^5.99.9",
11-
"webpack-cli": "^6.0.1",
12-
"rollup": "^4.41.1",
13-
"@rollup/plugin-node-resolve": "^16.0.1",
149
"@rollup/plugin-commonjs": "^28.0.3",
10+
"@rollup/plugin-node-resolve": "^16.0.1",
11+
"esbuild": "^0.25.5",
12+
"pg-cloudflare": "^1.2.6",
13+
"rollup": "^4.41.1",
1514
"vite": "^6.3.5",
16-
"esbuild": "^0.25.5"
15+
"webpack": "^5.99.9",
16+
"webpack-cli": "^6.0.1"
1717
},
1818
"scripts": {
1919
"test": "yarn webpack && yarn rollup && yarn vite && yarn esbuild",

packages/pg-cloudflare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pg-cloudflare",
3-
"version": "1.2.5",
3+
"version": "1.2.6",
44
"description": "A socket implementation that can run on Cloudflare Workers using native TCP connections.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

packages/pg-connection-string/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pg-connection-string",
3-
"version": "2.9.0",
3+
"version": "2.9.1",
44
"description": "Functions for dealing with a PostgresSQL connection string",
55
"main": "./index.js",
66
"types": "./index.d.ts",

packages/pg-cursor/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pg-cursor",
3-
"version": "2.15.0",
3+
"version": "2.15.1",
44
"description": "Query cursor extension for node-postgres",
55
"main": "index.js",
66
"exports": {
@@ -25,7 +25,7 @@
2525
"license": "MIT",
2626
"devDependencies": {
2727
"mocha": "^10.5.2",
28-
"pg": "^8.16.0"
28+
"pg": "^8.16.1"
2929
},
3030
"peerDependencies": {
3131
"pg": "^8"

packages/pg-esm-test/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pg-esm-test",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "A test module for PostgreSQL with ESM support",
55
"main": "index.js",
66
"type": "module",
@@ -14,13 +14,13 @@
1414
"test"
1515
],
1616
"devDependencies": {
17-
"pg": "^8.16.0",
18-
"pg-cloudflare": "^1.2.5",
19-
"pg-cursor": "^2.15.0",
20-
"pg-native": "^3.5.0",
21-
"pg-pool": "^3.10.0",
22-
"pg-protocol": "^1.10.0",
23-
"pg-query-stream": "^4.10.0"
17+
"pg": "^8.16.1",
18+
"pg-cloudflare": "^1.2.6",
19+
"pg-cursor": "^2.15.1",
20+
"pg-native": "^3.5.1",
21+
"pg-pool": "^3.10.1",
22+
"pg-protocol": "^1.10.1",
23+
"pg-query-stream": "^4.10.1"
2424
},
2525
"author": "Brian M. Carlson <[email protected]>",
2626
"license": "MIT"

packages/pg-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pg-native",
3-
"version": "3.5.0",
3+
"version": "3.5.1",
44
"description": "A slightly nicer interface to Postgres over node-libpq",
55
"main": "index.js",
66
"exports": {

packages/pg-pool/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pg-pool",
3-
"version": "3.10.0",
3+
"version": "3.10.1",
44
"description": "Connection pool for node-postgres",
55
"main": "index.js",
66
"exports": {

packages/pg-protocol/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pg-protocol",
3-
"version": "1.10.0",
3+
"version": "1.10.1",
44
"description": "The postgres client/server binary protocol, implemented in TypeScript",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

packages/pg-query-stream/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pg-query-stream",
3-
"version": "4.10.0",
3+
"version": "4.10.1",
44
"description": "Postgres query result returned as readable stream",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -45,7 +45,7 @@
4545
"concat-stream": "~1.0.1",
4646
"eslint-plugin-promise": "^7.2.1",
4747
"mocha": "^10.5.2",
48-
"pg": "^8.16.0",
48+
"pg": "^8.16.1",
4949
"stream-spec": "~0.3.5",
5050
"ts-node": "^8.5.4",
5151
"typescript": "^4.0.3"
@@ -54,6 +54,6 @@
5454
"pg": "^8"
5555
},
5656
"dependencies": {
57-
"pg-cursor": "^2.15.0"
57+
"pg-cursor": "^2.15.1"
5858
}
5959
}

packages/pg/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pg",
3-
"version": "8.16.0",
3+
"version": "8.16.1",
44
"description": "PostgreSQL client - pure javascript & libpq with the same API",
55
"keywords": [
66
"database",
@@ -35,9 +35,9 @@
3535
}
3636
},
3737
"dependencies": {
38-
"pg-connection-string": "^2.9.0",
39-
"pg-pool": "^3.10.0",
40-
"pg-protocol": "^1.10.0",
38+
"pg-connection-string": "^2.9.1",
39+
"pg-pool": "^3.10.1",
40+
"pg-protocol": "^1.10.1",
4141
"pg-types": "2.2.0",
4242
"pgpass": "1.0.5"
4343
},
@@ -53,7 +53,7 @@
5353
"wrangler": "^3.x"
5454
},
5555
"optionalDependencies": {
56-
"pg-cloudflare": "^1.2.5"
56+
"pg-cloudflare": "^1.2.6"
5757
},
5858
"peerDependencies": {
5959
"pg-native": ">=3.0.1"

0 commit comments

Comments
 (0)