Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

mysql

Package Overview
Dependencies
7
Maintainers
6
Versions
65
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.11.0 to 2.11.1

4

Changes.md

@@ -7,2 +7,6 @@ # Changes

## v2.11.1 (2016-06-07)
* Fix writing truncated packets starting with large string/buffer #1438
## v2.11.0 (2016-06-06)

@@ -9,0 +13,0 @@

2

lib/protocol/PacketWriter.js

@@ -191,3 +191,3 @@ var BIT_16 = Math.pow(2, 16);

if (!this._buffer) {
this._buffer = new Buffer(BUFFER_ALLOC_SIZE);
this._buffer = new Buffer(Math.max(BUFFER_ALLOC_SIZE, bytes));
this._offset = 0;

@@ -194,0 +194,0 @@ return;

{
"name": "mysql",
"description": "A node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed.",
"version": "2.11.0",
"version": "2.11.1",
"license": "MIT",

@@ -6,0 +6,0 @@ "author": "Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc