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

classql

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

classql - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

6

CHANGELOG.md

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

#0.1.10
#0.2.1
* Fixed incorrect syntax on save where query
#0.2.0
* Makes where query optional (bug)

@@ -4,0 +8,0 @@

2

dist/on.js

@@ -68,3 +68,3 @@ "use strict";

statement += where ?
(' WHERE' + where.field + ' = ?') : data.id ?
(' WHERE ' + where.field + ' = ?') : data.id ?
(' WHERE id = ?') : '';

@@ -71,0 +71,0 @@ const queryData = where ? [data, where.value] : data.id ? [data, data.id] : data;

{
"name": "classql",
"version": "0.2.0",
"version": "0.2.1",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "bugs": "https://github.com/sorakthunly/classql/issues",

@@ -77,3 +77,3 @@ const mysql = require('promise-mysql');

statement += where ?
(' WHERE' + where.field + ' = ?') : data.id ?
(' WHERE ' + where.field + ' = ?') : data.id ?
(' WHERE id = ?') : '';

@@ -80,0 +80,0 @@

Sorry, the diff of this file is not supported yet

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