Skip to content

Commit 0d71412

Browse files
committed
Update mysql-live-select to 0.0.11
* Fixes MySQL 5.6 support
1 parent 7697978 commit 0d71412

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jquery@1.0.2
2121
json@1.0.2
2222
keyboardjs:keyboardjs@0.4.2_1
2323
less@1.0.12
24-
local-test:numtel:mysql@0.0.18
24+
local-test:numtel:mysql@0.0.19
2525
logging@1.0.6
2626
meteor@1.1.4
2727
minifiers@1.1.3
2828
minimongo@1.0.6
2929
mongo@1.0.11
3030
numtel:benchmark-packages@0.0.1
31-
numtel:mysql@0.0.18
31+
numtel:mysql@0.0.19
3232
observe-sequence@1.0.4
3333
ordered-dict@1.0.2
3434
random@1.0.2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ var result = db.queryEx(function(esc, escId){
3333

3434
### `connection.initBinlog(settings)`
3535

36-
* :horse: **This feature has only been tested to work with MySQL 5.5 (specifically, 5.5.40). Support for 5.6 is currently under construction.**
37-
3836
Initialize the Binary replication log transmission method. The one argument required, `settings` should be an object containing the settings to connect to the MySQL server with a user that has been granted replication slave privileges.
3937

38+
This feature has been tested to work with MySQL 5.5.40 and 5.6.19. Support for all MySQL server versions >= 5.1.15 is expected.
39+
4040
> Using the binary log transmission method requires your MySQL server to be configured properly. Please see the [installation instructions on the `mysql-live-select` NPM package repository](https://github.com/numtel/mysql-live-select#installation).
4141
4242
In addition to the [`node-mysql` connection settings](https://github.com/felixge/node-mysql#connection-options), the following settings are available:

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.0.19',
4+
version: '0.0.20',
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.10'
10+
'mysql-live-select': '0.0.11'
1111
});
1212

1313
Package.onUse(function(api) {

0 commit comments

Comments
 (0)