Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pg-promise

Package Overview
Dependencies
Maintainers
1
Versions
629
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pg-promise - npm Package Compare versions

Comparing version 11.2.0 to 11.3.0

12

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc