Skip to content

Commit

Permalink
upgrading dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Jan 28, 2023
1 parent a87401b commit c1b390d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pg-promise",
"version": "11.0.2",
"version": "11.1.0",
"description": "PostgreSQL interface for Node.js",
"main": "lib/index.js",
"typings": "typescript/pg-promise.d.ts",
Expand Down Expand Up @@ -42,21 +42,21 @@
},
"dependencies": {
"assert-options": "0.8.0",
"pg": "8.8.0",
"pg": "8.9.0",
"pg-minify": "1.6.2",
"spex": "3.2.0"
},
"devDependencies": {
"@types/node": "18.11.18",
"bluebird": "3.7.2",
"coveralls": "3.1.1",
"cspell": "6.18.1",
"eslint": "8.30.0",
"cspell": "6.19.2",
"eslint": "8.32.0",
"istanbul": "0.4.5",
"jasmine-node": "3.0.0",
"jsdoc": "4.0.0",
"JSONStream": "1.3.5",
"pg-query-stream": "4.2.4",
"pg-query-stream": "4.3.0",
"tslint": "6.1.3",
"typescript": "4.9.4"
}
Expand Down
4 changes: 3 additions & 1 deletion typescript/pg-subset.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@
// Calling it 'pg-subset' to avoid a conflict in case the application also
// includes the official 'pg' typings.
//
// Supported version of pg: 8.7.1 and later.
// Supported version of pg: 8.9.0 and later.
//
// pg: https://github.com/brianc/node-postgres
//////////////////////////////////////////////////////////////////////////////

import {EventEmitter} from 'events';
import {checkServerIdentity} from 'tls';
import {Stream} from 'stream';

declare namespace pg {

Expand Down Expand Up @@ -102,6 +103,7 @@ declare namespace pg {
keepAlive?: boolean
keepalives?: number
keepalives_idle?: number
stream?: Stream | ((cn: IConnectionParameters) => Stream)
Client?: new(config: string | IConnectionParameters) => C
Promise?: any
types?: ITypeOverrides
Expand Down

0 comments on commit c1b390d

Please sign in to comment.