Comparing version 0.2.0 to 0.2.1
@@ -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 |
@@ -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"] |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
505461