New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

loopback-connector

Package Overview
Dependencies
Maintainers
4
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

loopback-connector - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

6

CHANGES.md

@@ -0,1 +1,7 @@

2015-05-20, Version 2.1.1
=========================
* Fix for https://github.com/strongloop/loopback-connector-postgresql/issues/80 (Raymond Feng)
2015-05-18, Version 2.1.0

@@ -2,0 +8,0 @@ =========================

5

lib/sql.js

@@ -642,3 +642,3 @@ var util = require('util');

for (var i = 0, n = columnValue.length; i < n; i++) {
if (columnValue instanceof ParameterizedSQL) {
if (columnValue[i] instanceof ParameterizedSQL) {
values.push(columnValue[i]);

@@ -753,4 +753,3 @@ } else {

stmt.merge(columnName + ' IS NULL');
} else if (expression &&
(typeof expression === 'object' && !Array.isArray(expression))) {
} else if (expression && expression.constructor === Object) {
var operator = Object.keys(expression)[0];

@@ -757,0 +756,0 @@ // Get the expression without the operator

2

package.json
{
"name": "loopback-connector",
"version": "2.1.0",
"version": "2.1.1",
"description": "Building blocks for LoopBack connectors",

@@ -5,0 +5,0 @@ "keywords": [

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