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

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.2.0 to 0.2.1

7

History.md

@@ -48,2 +48,7 @@

* Added support for composite keys
* Fixed some deserialization issues
* Fixed some deserialization issues
0.2.1 / 2012-01-13
==================
* Fixed a buffer overflow issue when encoding numbers as UTF8

6

lib/marshal/serializers.js

@@ -43,3 +43,3 @@ var UUID = require('../uuid');

Serializers.encodeBinary = function(val){
return new Buffer(val, 'binary');
return new Buffer(val.toString(), 'binary');
};

@@ -84,3 +84,3 @@

Serializers.encodeUTF8 = function(val){
return new Buffer(val, 'utf8');
return new Buffer(val.toString(), 'utf8');
};

@@ -95,3 +95,3 @@

Serializers.encodeAscii = function(val){
return new Buffer(val, 'ascii');
return new Buffer(val.toString(), 'ascii');
};

@@ -98,0 +98,0 @@

{
"name": "helenus"
, "version": "0.2.0"
, "version": "0.2.1"
, "description": "NodeJS Bindings for Cassandra"

@@ -5,0 +5,0 @@ , "keywords": ["cassandra"]

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