Comparing version 0.3.4 to 0.3.5
@@ -97,2 +97,7 @@ | ||
* fixed issue with keys not marshalling when using indexed queries | ||
* fixed issue with keys not marshalling when using indexed queries | ||
0.3.5 / 2012-03-27 | ||
================== | ||
* fixed inconsistency in the consistency of the naming of the consistency level variables |
@@ -212,3 +212,3 @@ var util = require('util'), | ||
mutations = [], batch = {}, | ||
consistency = options.consistency || DEFAULT_WRITE_CONSISTENCY; | ||
consistency = options.consistency || options.consistencyLevel || DEFAULT_WRITE_CONSISTENCY; | ||
@@ -254,3 +254,3 @@ for(; i < len; i += 1){ | ||
timestamp = args.options.timestamp || new Date(), | ||
consistency = args.options.consistency || DEFAULT_WRITE_CONSISTENCY; | ||
consistency = args.options.consistency || args.options.consistencyLevel || DEFAULT_WRITE_CONSISTENCY; | ||
@@ -282,3 +282,3 @@ this.connection.execute('remove', marshalledKey, path, timestamp, consistency, args.callback); | ||
var self = this, | ||
consistency = options.consistencyLevel || DEFAULT_READ_CONSISTENCY, | ||
consistency = options.consistency || options.consistencyLevel || DEFAULT_READ_CONSISTENCY, | ||
marshalledKey = this.keyMarshaller.serialize(key).toString('binary'), | ||
@@ -333,3 +333,3 @@ predicate = getSlicePredicate(options, this.columnMarshaller); | ||
i = 0, len = query.fields.length, field, valueMarshaller, | ||
consistency = options.consistencyLevel || DEFAULT_READ_CONSISTENCY, | ||
consistency = options.consistency || options.consistencyLevel || DEFAULT_READ_CONSISTENCY, | ||
predicate = getSlicePredicate(options, this.columnMarshaller); | ||
@@ -336,0 +336,0 @@ |
@@ -19,3 +19,3 @@ | ||
*/ | ||
Helenus.version = '0.3.4'; | ||
Helenus.version = '0.3.5'; | ||
@@ -22,0 +22,0 @@ /** |
{ | ||
"name": "helenus" | ||
, "version": "0.3.4" | ||
, "version": "0.3.5" | ||
, "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
528473