Socket
Socket
Sign inDemoInstall

@appland/scanner

Package Overview
Dependencies
124
Maintainers
4
Versions
119
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.46.1 to 1.46.2

12

built/scope/sqlTransactionScope.js

@@ -117,4 +117,9 @@ "use strict";

continue;
// This is normally a noop which generates a SQL warning.
// It can also happen if there's more than one SQL connection used
// and the new transaction is open in a different one than before.
// We currently don't track the separate connections, so we have to
// assume this is the same one and issue a warning.
if (isBegin(sql))
throw new Error('Transaction started within a transaction.');
console.warn("SQL transaction started within a transaction in event " + event.id);
var end = isEnd(sql);

@@ -126,2 +131,7 @@ if (end) {

}
if (!begin.transaction) {
// Transaction was still active at the end of appmap;
// assume it was aborted.
begin.transaction = { status: 'rollback', events: transaction };
}
return {

@@ -128,0 +138,0 @@ scope: begin,

2

package.json
{
"name": "@appland/scanner",
"version": "1.46.1",
"version": "1.46.2",
"description": "",

@@ -5,0 +5,0 @@ "bin": "built/cli.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc