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.3.4 to 0.3.5

7

History.md

@@ -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

8

lib/column_family.js

@@ -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"]

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