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

@minatojs/driver-sqlite

Package Overview
Dependencies
Maintainers
2
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@minatojs/driver-sqlite - npm Package Compare versions

Comparing version 3.1.2 to 3.2.3

5

lib/index.js

@@ -78,2 +78,5 @@ "use strict";

super(tables);
this.escapeMap = {
"'": "''"
};
this.evalOperators.$if = (args) => `iif(${args.map((arg) => this.parseEval(arg)).join(", ")})`;

@@ -179,3 +182,3 @@ this.define({

if (column.dflt_value !== null)
def += " DEFAULT " + (0, import_sql_utils.escape)(column.dflt_value);
def += " DEFAULT " + this.sql.escape(column.dflt_value);
columnDefs.push(def);

@@ -182,0 +185,0 @@ mapping[column.name] = column.name;

7

package.json
{
"name": "@minatojs/driver-sqlite",
"version": "3.1.2",
"version": "3.2.3",
"description": "SQLite Driver for Minato",

@@ -28,3 +28,3 @@ "main": "lib/index.js",

"peerDependencies": {
"@minatojs/core": "^2.1.0"
"@minatojs/core": "^2.1.1"
},

@@ -35,5 +35,4 @@ "devDependencies": {

"dependencies": {
"@minatojs/sql-utils": "^2.0.1",
"@minatojs/sql-utils": "^3.0.0",
"@minatojs/sql.js": "^2.0.0",
"sqlstring-sqlite": "^0.1.1",
"cosmokit": "^1.4.0",

@@ -40,0 +39,0 @@ "reggol": "^1.3.4"

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