Socket
Socket
Sign inDemoInstall

mysql2

Package Overview
Dependencies
Maintainers
1
Versions
184
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mysql2 - npm Package Compare versions

Comparing version 0.11.3 to 0.11.4

7

Changelog.md

@@ -6,9 +6,13 @@ Backlog:

HEAD
0.11.4
- support YEAR type in prepared statements a0f33b5a4de4529130b3c4137f7a1dd3c02aed9e
0.11.3
- clean up debugger keywords #79
- add transaction helpers #56, #76 cc0a9f9b721900d3a22c7fc84a5244c74cd33dd5
0.11.2
- wrap callbacks in nextTick for exception safety b73ac9868804b603a0ab6df6129cf3682476d118

@@ -18,2 +22,3 @@ - domains support #73 36cba61359c83018a847ac4e7748d920b6f863c4

0.11.1
- buxfix: connection.connect callback was called more than once

@@ -20,0 +25,0 @@ #72 0352eefdafc0986f1ec79c0ce285f722ca12af16

2

lib/compile_binary_parser.js

@@ -54,3 +54,3 @@ var FieldFlags = require('./constants/field_flags');

case Types.YEAR:
return "\'not implemented\';";
return "packet.readInt16()";
case Types.FLOAT:

@@ -57,0 +57,0 @@ return "packet.readFloat();";

@@ -77,3 +77,5 @@ var net = require('net');

//if (this.stream instanceof net.Stream) {
// debugger;
// this.stream.ondata = function(data, start, end) {
// debugger;
// connection.packetParser.execute(data, start, end);

@@ -444,3 +446,5 @@ // };

var endCmd = { connection: this };
debugger
endCmd.execute = function() {
debugger
self._closing = true;

@@ -447,0 +451,0 @@ this.connection.stream.end();

{
"name": "mysql2",
"version": "0.11.3",
"version": "0.11.4",
"description": "fast mysql driver. Implements core protocol, prepared statements, ssl and compression in native JS",

@@ -5,0 +5,0 @@ "main": "index.js",

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