Skip to content

Commit

Permalink
Tagging version 1.0.7 with addflds option added
Browse files Browse the repository at this point in the history
  • Loading branch information
straps committed Jan 14, 2012
1 parent 85d9ae5 commit 69d9470
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions History.md
@@ -1,3 +1,7 @@
1.0.7 / 2012-01-14
==================
* addlflds option added, see channelDefaults.js for an example usage

1.0.6 / 2011-11-08 1.0.6 / 2011-11-08
================== ==================
* Added `cond` parameter that lets generate events only when the SQL condition is true. It's usage is deferred to driver methods; for postgresql, you can pass a SQL condition referring to NEW or OLD records inside trigger function. `cond` is evaluated ad an `underscore` template at runtime passing an object with a rec property that can be NEW (for insert and update) or OLD (for delete). Example usage, valid for insert/update/delete: `cond:"<%= rec %>.name='YOUR NAME'"` * Added `cond` parameter that lets generate events only when the SQL condition is true. It's usage is deferred to driver methods; for postgresql, you can pass a SQL condition referring to NEW or OLD records inside trigger function. `cond` is evaluated ad an `underscore` template at runtime passing an object with a rec property that can be NEW (for insert and update) or OLD (for delete). Example usage, valid for insert/update/delete: `cond:"<%= rec %>.name='YOUR NAME'"`
Expand Down
2 changes: 1 addition & 1 deletion lib/dbmon.js
Expand Up @@ -3,7 +3,7 @@ var _=require('underscore')._,
channelDefaults=require('./channelDefaults').channelDefaults; channelDefaults=require('./channelDefaults').channelDefaults;


var dbmon={ var dbmon={
version : '1.0.6' version : '1.0.7'
}; };


dbmon.channel = function(opts){ dbmon.channel = function(opts){
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,5 +1,5 @@
{ "name": "dbmon", { "name": "dbmon",
"version": "1.0.6", "version": "1.0.7",
"description": "Database and Filesystem Monitor Utilities for Real Time Apps", "description": "Database and Filesystem Monitor Utilities for Real Time Apps",
"keywords" : ["dbmon", "monitoring", "postgresql", "mysql", "oracle", "polling", "rdbms", "faye", "nowjs"], "keywords" : ["dbmon", "monitoring", "postgresql", "mysql", "oracle", "polling", "rdbms", "faye", "nowjs"],
"author": "Strx <f@strx.it>", "author": "Strx <f@strx.it>",
Expand Down

0 comments on commit 69d9470

Please sign in to comment.