Socket
Socket
Sign inDemoInstall

slonik

Package Overview
Dependencies
58
Maintainers
1
Versions
392
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 45.3.0 to 45.4.0

4

dist/routines/executeQuery.js

@@ -199,3 +199,5 @@ "use strict";

const { fields } = result;
const rows = await Promise.all(result.rows.map((row) => transformRow(executionContext, actualQuery, row, fields)));
const rows = await Promise.all(result.rows.map((row) => {
return transformRow(executionContext, actualQuery, row, fields);
}));
result = {

@@ -202,0 +204,0 @@ ...result,

@@ -8,7 +8,7 @@ {

"dependencies": {
"@slonik/driver": "^45.3.0",
"@slonik/errors": "^45.3.0",
"@slonik/pg-driver": "^45.3.0",
"@slonik/sql-tag": "^45.3.0",
"@slonik/utilities": "^45.3.0",
"@slonik/driver": "^45.4.0",
"@slonik/errors": "^45.4.0",
"@slonik/pg-driver": "^45.4.0",
"@slonik/sql-tag": "^45.4.0",
"@slonik/utilities": "^45.4.0",
"get-stack-trace": "^3.1.1",

@@ -87,3 +87,3 @@ "iso8601-duration": "^1.3.0",

"types": "./dist/index.d.ts",
"version": "45.3.0"
"version": "45.4.0"
}

@@ -355,5 +355,5 @@ import { TRANSACTION_ROLLBACK_ERROR_PREFIX } from '../constants';

const rows: QueryResultRow[] = await Promise.all(
result.rows.map((row) =>
transformRow(executionContext, actualQuery, row, fields),
),
result.rows.map((row) => {
return transformRow(executionContext, actualQuery, row, fields);
}),
);

@@ -360,0 +360,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc