From 0d71412f364fa058404c4a7bd29e3ded80499b67 Mon Sep 17 00:00:00 2001 From: numtel Date: Sun, 11 Jan 2015 00:21:01 -0800 Subject: [PATCH] Update mysql-live-select to 0.0.11 * Fixes MySQL 5.6 support --- .versions | 4 ++-- README.md | 4 ++-- package.js | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.versions b/.versions index a5fcc9b..ce8076d 100644 --- a/.versions +++ b/.versions @@ -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 diff --git a/README.md b/README.md index 235e1e9..1707fa4 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/package.js b/package.js index f81b812..e0306c4 100644 --- a/package.js +++ b/package.js @@ -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) {