Skip to content

Commit

Permalink
Update mysql-live-select to 0.0.11
Browse files Browse the repository at this point in the history
* Fixes MySQL 5.6 support
  • Loading branch information
numtel committed Jan 11, 2015
1 parent 7697978 commit 0d71412
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .versions
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jquery@1.0.2
json@1.0.2
keyboardjs:keyboardjs@0.4.2_1
less@1.0.12
local-test:numtel:mysql@0.0.18
local-test:numtel:mysql@0.0.19
logging@1.0.6
meteor@1.1.4
minifiers@1.1.3
minimongo@1.0.6
mongo@1.0.11
numtel:benchmark-packages@0.0.1
numtel:mysql@0.0.18
numtel:mysql@0.0.19
observe-sequence@1.0.4
ordered-dict@1.0.2
random@1.0.2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ var result = db.queryEx(function(esc, escId){

### `connection.initBinlog(settings)`

* :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.**

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.

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.

> 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).
In addition to the [`node-mysql` connection settings](https://github.com/felixge/node-mysql#connection-options), the following settings are available:
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.0.19',
version: '0.0.20',
git: 'https://github.com/numtel/meteor-mysql.git'
});

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

Package.onUse(function(api) {
Expand Down

0 comments on commit 0d71412

Please sign in to comment.