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

@sqb/connect

Package Overview
Dependencies
Maintainers
1
Versions
137
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sqb/connect - npm Package Compare versions

Comparing version 4.5.3 to 4.5.4

6

cjs/client/sqb-connection.js

@@ -84,4 +84,6 @@ "use strict";

this._intlcon = undefined;
this.client.pool.release(intlcon)
.catch(e => this.client.emit('error', e));
this.client.pool.release(intlcon, (e) => {
if (e)
this.client.emit('error', e);
});
debug('[%s] closed', intlcon.sessionId);

@@ -88,0 +90,0 @@ }

@@ -80,4 +80,6 @@ import assert from 'assert';

this._intlcon = undefined;
this.client.pool.release(intlcon)
.catch(e => this.client.emit('error', e));
this.client.pool.release(intlcon, (e) => {
if (e)
this.client.emit('error', e);
});
debug('[%s] closed', intlcon.sessionId);

@@ -84,0 +86,0 @@ }

{
"name": "@sqb/connect",
"description": "Multi-dialect database connection framework written with TypeScript",
"version": "4.5.3",
"version": "4.5.4",
"author": "Panates",

@@ -33,6 +33,6 @@ "contributors": [

"debug": "^4.3.4",
"lightning-pool": "^4.0.0",
"lightning-pool": "^4.2.0",
"lodash": "^4.17.21",
"putil-isplainobject": "^1.1.4",
"putil-merge": "^3.8.0",
"putil-merge": "^3.9.0",
"putil-promisify": "^1.8.5",

@@ -42,15 +42,13 @@ "putil-taskqueue": "^2.5.4",

"reflect-metadata": "^0.1.13",
"strict-typed-events": "^2.2.0",
"ts-gems": "^2.2.0"
"strict-typed-events": "^2.3.1",
"ts-gems": "^2.2.1"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/lodash": "^4.14.185"
"@types/lodash": "^4.14.186"
},
"peerDependencies": {
"@sqb/builder": "^4.5.0"
"@sqb/builder": "^4.5.4"
},
"type": "module",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",

@@ -91,2 +89,2 @@ "exports": {

]
}
}
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