pg-promise
Advanced tools
Comparing version 11.2.0 to 11.3.0
{ | ||
"name": "pg-promise", | ||
"version": "11.2.0", | ||
"version": "11.3.0", | ||
"description": "PostgreSQL interface for Node.js", | ||
@@ -50,15 +50,15 @@ "main": "lib/index.js", | ||
"devDependencies": { | ||
"@types/node": "18.11.18", | ||
"@types/node": "18.14.0", | ||
"bluebird": "3.7.2", | ||
"coveralls": "3.1.1", | ||
"cspell": "6.19.2", | ||
"eslint": "8.32.0", | ||
"cspell": "6.26.3", | ||
"eslint": "8.34.0", | ||
"istanbul": "0.4.5", | ||
"jasmine-node": "3.0.0", | ||
"jsdoc": "4.0.0", | ||
"jsdoc": "4.0.2", | ||
"JSONStream": "1.3.5", | ||
"pg-query-stream": "4.3.0", | ||
"tslint": "6.1.3", | ||
"typescript": "4.9.4" | ||
"typescript": "4.9.5" | ||
} | ||
} |
@@ -98,3 +98,15 @@ /* | ||
rows?: number | ||
// Max milliseconds any query using this connection will execute for before timing out in error. | ||
// false = unlimited | ||
statement_timeout?: boolean | number | ||
// Abort any statement that waits longer than the specified duration in milliseconds | ||
// while attempting to acquire a lock; false = unlimited | ||
lock_timeout?: boolean | number | ||
// Terminate any session with an open transaction that has been idle for longer than | ||
// the specified duration in milliseconds; false = unlimited | ||
idle_in_transaction_session_timeout?: boolean | number | ||
query_timeout?: boolean | number | ||
@@ -250,6 +262,14 @@ connectionTimeoutMillis?: number | ||
// max milliseconds any query using this connection will execute for before timing out in error. | ||
// false=unlimited | ||
// Max milliseconds any query using this connection will execute for before timing out in error. | ||
// false = unlimited | ||
statement_timeout: boolean | number | ||
// Abort any statement that waits longer than the specified duration in milliseconds | ||
// while attempting to acquire a lock; false = unlimited | ||
lock_timeout: boolean | number | ||
// Terminate any session with an open transaction that has been idle for longer than | ||
// the specified duration in milliseconds; false = unlimited | ||
idle_in_transaction_session_timeout: boolean | number | ||
// max milliseconds to wait for query to complete (client side) | ||
@@ -256,0 +276,0 @@ query_timeout: boolean | number |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
422616
9727