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

@minatojs/driver-mysql

Package Overview
Dependencies
Maintainers
2
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@minatojs/driver-mysql - npm Package Compare versions

Comparing version 2.2.1 to 2.2.2

2

lib/index.d.ts

@@ -11,2 +11,3 @@ import type { Pool, PoolConfig } from 'mysql';

declare class MySQLBuilder extends Builder {
protected escapeRegExp: RegExp;
protected escapeMap: {

@@ -19,2 +20,3 @@ '\0': string;

'\u001A': string;
'"': string;
'\'': string;

@@ -21,0 +23,0 @@ '\\': string;

@@ -113,2 +113,3 @@ "use strict";

super(tables);
this.escapeRegExp = /[\0\b\t\n\r\x1a'"\\]/g;
this.escapeMap = {

@@ -121,2 +122,3 @@ "\0": "\\0",

"": "\\Z",
'"': '\\"',
"'": "\\'",

@@ -123,0 +125,0 @@ "\\": "\\\\"

8

package.json
{
"name": "@minatojs/driver-mysql",
"version": "2.2.1",
"version": "2.2.2",
"description": "MySQL Driver for Minato",

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

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

@@ -36,7 +36,7 @@ "devDependencies": {

"dependencies": {
"@minatojs/sql-utils": "^3.0.0",
"@minatojs/sql-utils": "^3.0.1",
"@vlasky/mysql": "^2.18.5",
"cosmokit": "^1.4.0",
"reggol": "^1.3.4"
"reggol": "^1.3.5"
}
}

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