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

mysql-robin

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mysql-robin - npm Package Compare versions

Comparing version 2.0.7 to 2.0.8

8

lib/protocol/Protocol.js

@@ -68,3 +68,5 @@ var Parser = require('./Parser');

Protocol.prototype.pause = function() {
this._querySequence.emit('pause');
if (this._querySequence) {
this._querySequence.emit('pause');
}
this._parser.pause();

@@ -74,3 +76,5 @@ };

Protocol.prototype.resume = function() {
this._querySequence.emit('resume');
if (this._querySequence) {
this._querySequence.emit('resume');
}
this._parser.resume();

@@ -77,0 +81,0 @@ };

@@ -7,3 +7,3 @@ {

"description": "A node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed.",
"version": "2.0.7",
"version": "2.0.8",
"repository": {

@@ -10,0 +10,0 @@ "url": ""

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