Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rethinkdbdash

Package Overview
Dependencies
Maintainers
1
Versions
153
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rethinkdbdash - npm Package Compare versions

Comparing version 1.13.6 to 1.13.7

10

lib/connection.js

@@ -58,3 +58,2 @@ var net = require('net');

initBuffer.writeUInt32LE(protodef.VersionDummy.Version.V0_3, 0)
self.connection.write(initBuffer);

@@ -64,8 +63,6 @@ var authBuffer = new Buffer(self.authKey, 'ascii')

lengthBuffer.writeUInt32LE(authBuffer.length, 0)
self.connection.write(lengthBuffer);
self.connection.write(authBuffer);
var protocolBuffer = new Buffer(4)
protocolBuffer.writeUInt32LE(protodef.VersionDummy.Protocol.JSON, 0)
self.connection.write(protocolBuffer);
self.connection.write(Buffer.concat([initBuffer, lengthBuffer, authBuffer, protocolBuffer]));
});

@@ -368,4 +365,2 @@ self.connection.once("error", function(error) {

self.connection.write(tokenBuffer);
var data = new Buffer(JSON.stringify(query));

@@ -389,4 +384,3 @@ var lengthBuffer = new Buffer(4);

// This will emit an error if the connection is closed
self.connection.write(lengthBuffer);
self.connection.write(data);
self.connection.write(Buffer.concat([tokenBuffer, lengthBuffer, data]));
};

@@ -393,0 +387,0 @@

2

package.json
{
"name": "rethinkdbdash",
"version": "1.13.6",
"version": "1.13.7",
"description": "A Node.js driver for RethinkDB with promises and a connection pool",

@@ -5,0 +5,0 @@ "main": "lib/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