Socket
Socket
Sign inDemoInstall

tarantool-driver

Package Overview
Dependencies
16
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.4.0 to 0.4.1

14

lib/connection.js

@@ -59,2 +59,3 @@ 'use strict';

});
this.schemaId = null;
this.msgpack = options.msgpack || msgpack;

@@ -247,2 +248,15 @@ this.state = states.INITED;

var reqId = obj[0][1];
if (this.schemaId)
{
if (this.schemaId != obj[0][5])
{
this.schemaId = obj[0][5];
//clear cache for naming
this.namespace = {};
}
}
else
{
this.schemaId = obj[0][5];
}
for(var i = 0; i<this.commandsQueue.length; i++)

@@ -249,0 +263,0 @@ if (this.commandsQueue[i][1] == reqId)

2

package.json
{
"name": "tarantool-driver",
"version": "0.4.0",
"version": "0.4.1",
"description": "Tarantool driver for 1.6",

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

@@ -175,2 +175,6 @@ # node-tarantool-driver

###0.4.1
Add clear schema cache on change schema id
###0.4.0

@@ -177,0 +181,0 @@

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