Skip to content

Commit

Permalink
Merge pull request #16 from VeliovGroup/dev
Browse files Browse the repository at this point in the history
v0.2.15
  • Loading branch information
dr-dimitru committed May 26, 2015
2 parents 193679b + 875f2a6 commit 54ef2e4
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
base64@1.0.3
check@1.0.5
ejson@1.0.6
http@1.1.0
json@1.0.3
meteor@1.1.6
ostrio:neo4jdriver@0.2.13
ostrio:neo4jdriver@0.2.15
underscore@1.0.3
url@1.0.4
37 changes: 37 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
Changelog
=========

### [0.2.15](https://github.com/VeliovGroup/ostrio-neo4jdriver/releases/tag/v0.2.15)

- Trying to fix issue described [here](https://github.com/VeliovGroup/ostrio-neo4jdriver/issues/11)
- Remove colon from file names, to avoid Windows compilation issues
- Support for `audit-argument-checks` package

### [0.2.14](https://github.com/VeliovGroup/ostrio-neo4jdriver/releases/tag/v0.2.14)

- Add check for parameters on all functions

### [0.2.13](https://github.com/VeliovGroup/ostrio-neo4jdriver/releases/tag/v0.2.13)

- Better auth error

### [0.2.12](https://github.com/VeliovGroup/ostrio-neo4jdriver/releases/tag/v0.2.12)

- Solve issue with standard Neo4j Authorisation

### [0.2.11](https://github.com/VeliovGroup/ostrio-neo4jdriver/releases/tag/v0.2.11)

- Add known issues to docs

### [0.2.10](https://github.com/VeliovGroup/ostrio-neo4jdriver/releases/tag/v0.2.10)

- Switch from Meteor.npmRequire to Npm.require

### [0.2.5](https://github.com/VeliovGroup/ostrio-neo4jdriver/releases/tag/v0.2.5)

- Some minor updates
- Add missed dependencies

### [0.2.1](https://github.com/VeliovGroup/ostrio-neo4jdriver/releases/tag/v0.2.1)

- [Added] Catchall callbacks functionality: `this.N4JDB = new Neo4j(); N4JDB.listen(function(query, opts){...});`
4 changes: 2 additions & 2 deletions ostrio:neo4jdriver.js → neo4jdriver.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Meteor.Neo4j = (function() {
GraphDatabase.query = function(query, opts, callback){
check(query, String);
check(opts, Match.Optional(Match.OneOf(Object, null)));
check(callback, Match.Optional(Function));
check(callback, Match.Optional(Match.OneOf(Function, null)));

if(_this.ready){
return new _n4j.GraphDatabase(_this.url).query(query, opts, function(err, results){
Expand Down Expand Up @@ -113,7 +113,7 @@ Meteor.Neo4j = (function() {
*
*/
GraphDatabase.listen = function(callback){
check(callback, Match.Optional(Function));
check(callback, Match.Optional(Match.OneOf(Function, null)));

if(_this.ready){
GraphDatabase.callbacks.push(callback);
Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Package.describe({
name: 'ostrio:neo4jdriver',
summary: 'Meteor.js node-neo4j wrapper to be used with meteor applications (a.k.a. neo4j Connector)',
version: '0.2.14',
version: '0.2.15',
git: 'https://github.com/VeliovGroup/ostrio-neo4jdriver.git'
});

Package.onUse(function(api) {
api.versionsFrom('1.0');
api.addFiles('ostrio:neo4jdriver.js', 'server');
api.addFiles('neo4jdriver.js', 'server');
api.use(['underscore', 'check', 'http'], 'server');
});

Expand Down

0 comments on commit 54ef2e4

Please sign in to comment.