Skip to content

Commit

Permalink
Updated mysql-live-select to 0.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
numtel committed Feb 25, 2015
1 parent 87372f0 commit f504e74
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .versions
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ id-map@1.0.2
insecure@1.0.2
jquery@1.11.3
json@1.0.2
local-test:numtel:mysql@0.1.1
local-test:numtel:mysql@0.1.2
logging@1.0.6
meteor@1.1.4
minifiers@1.1.3
minimongo@1.0.6
mongo@1.0.11
numtel:mysql@0.1.1
numtel:mysql@0.1.2
observe-sequence@1.0.4
ordered-dict@1.0.2
random@1.0.2
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.1.2

* [mysql-live-select updated to 0.0.15](https://github.com/numtel/mysql-live-select/releases/tag/v0.0.15), minor fix for `LiveMysql` constructor callback.

## 0.1.1

* [mysql-live-select updated to 0.0.14](https://github.com/numtel/meteor-mysql/commit/cd949a4ee551b5ce3b0affb7ef5f40c0057c0bb4), enables callback on `LiveMysql` constructor to detect connection errors.
Expand Down
2 changes: 1 addition & 1 deletion lib/LiveMysql.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ LiveMysql.LiveMysqlSelect.prototype._publishCursor = function(sub) {
}

selectHandler('added', 0, 1, function(){
if(sub._ready === false &&
if(sub._ready === false &&
self.data.length === initLength - 1){
sub.ready();
}
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: 'numtel:mysql',
summary: 'MySQL support with Reactive Select Subscriptions',
version: '0.1.1',
version: '0.1.2',
git: 'https://github.com/numtel/meteor-mysql.git'
});

Npm.depends({
'mysql': '2.5.4',
'mysql-live-select': '0.0.14'
'mysql-live-select': '0.0.15'
});

Package.onUse(function(api) {
Expand Down

0 comments on commit f504e74

Please sign in to comment.