Skip to content

Commit f504e74

Browse files
committed
Updated mysql-live-select to 0.0.15
1 parent 87372f0 commit f504e74

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ id-map@1.0.2
1717
insecure@1.0.2
1818
jquery@1.11.3
1919
json@1.0.2
20-
local-test:numtel:mysql@0.1.1
20+
local-test:numtel:mysql@0.1.2
2121
logging@1.0.6
2222
meteor@1.1.4
2323
minifiers@1.1.3
2424
minimongo@1.0.6
2525
mongo@1.0.11
26-
numtel:mysql@0.1.1
26+
numtel:mysql@0.1.2
2727
observe-sequence@1.0.4
2828
ordered-dict@1.0.2
2929
random@1.0.2

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.1.2
4+
5+
* [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.
6+
37
## 0.1.1
48

59
* [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.

lib/LiveMysql.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ LiveMysql.LiveMysqlSelect.prototype._publishCursor = function(sub) {
4141
}
4242

4343
selectHandler('added', 0, 1, function(){
44-
if(sub._ready === false &&
44+
if(sub._ready === false &&
4545
self.data.length === initLength - 1){
4646
sub.ready();
4747
}

package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Package.describe({
22
name: 'numtel:mysql',
33
summary: 'MySQL support with Reactive Select Subscriptions',
4-
version: '0.1.1',
4+
version: '0.1.2',
55
git: 'https://github.com/numtel/meteor-mysql.git'
66
});
77

88
Npm.depends({
99
'mysql': '2.5.4',
10-
'mysql-live-select': '0.0.14'
10+
'mysql-live-select': '0.0.15'
1111
});
1212

1313
Package.onUse(function(api) {

0 commit comments

Comments
 (0)