Socket
Socket
Sign inDemoInstall

helenus

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

helenus - npm Package Compare versions

Comparing version 0.6.8 to 0.6.9

.idea/.name

11

History.md

@@ -241,3 +241,3 @@ 0.0.1 / 2011-12-22

0.6.8 / 2013-12-15
0.6.8 / 2013-12-15
==================

@@ -248,2 +248,9 @@

* Add Date Type Support [ @tim-dev #131 ]
0.6.9 / 2014-03-20
==================
* Fixes deserialize issue with collection types [ @Oleg12 #139]
* Bump helenus-thrift version [ @devdazed ]
* Adds a read-timeout wrapper around the thrift connection [ @devdazed ]

@@ -104,3 +104,3 @@

}
if(val instanceof uuid.UUID){

@@ -116,3 +116,3 @@ return val.toString();

// C* < 2.0.2 doesn't work with negative longs
if(_val<0){
if(_val<0){
return "'" + val.getUTCFullYear()

@@ -393,3 +393,5 @@ + '-' + zero_pad(val.getUTCMonth() + 1)

command = args.shift(),
callback = args.pop();
callback = args.pop(),
timer, calledBack = false,
self = this;

@@ -401,2 +403,10 @@ if(typeof callback !== 'function'){

timer = setTimeout(function(){
if(!calledBack){
calledBack = true;
callback(new Error('Read Timed Out'));
self._connection.connection.destroy();
}
}, this.timeout);
/**

@@ -407,2 +417,8 @@ * Processes the return results of the query

function onReturn(err, results){
clearTimeout(timer);
if(calledBack){
return;
}
calledBack = true;
if(err){

@@ -409,0 +425,0 @@ callback(errors.create(err));

@@ -236,2 +236,6 @@ var Serializers = require('./serializers'),

return function(str){
if(str === null || str === undefined){
return null;
}
var buf = new Buffer(str, 'binary'),

@@ -260,5 +264,9 @@ pos = 2, len, vals = [], key, value;

return function(str){
if(str === null || str === undefined){
return null;
}
var buf = new Buffer(str, 'binary'),
pos = 2, len, vals = {}, key, value;
while( pos < buf.length){

@@ -265,0 +273,0 @@ len = buf.readUInt16BE(pos);

4

package.json
{
"name": "helenus"
, "version": "0.6.8"
, "version": "0.6.9"
, "description": "NodeJS Bindings for Cassandra"

@@ -16,3 +16,3 @@ , "keywords": ["cassandra"]

, "dependencies": {
"helenus-thrift": "0.7.3"
"helenus-thrift": "0.7.4"
, "node-uuid": "1.3.3"

@@ -19,0 +19,0 @@ }

Sorry, the diff of this file is not supported yet

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