Skip to content

Releases: numtel/mysql-live-select

Introduce checkConditionWhenQueued setting

24 Aug 22:35
Compare
Choose a tag to compare

Set checkConditionWhenQueued setting to true to call the condition function of a query on every binlog row change event. By default (when undefined or false), the condition function will not be called again when a query is already queued to be refreshed. Enabling this can be useful if external caching of row changes.

Addresses #16

Remove dead code from differ

23 Aug 20:56
Compare
Choose a tag to compare

Should provide a slight performance increase

Result set differences now updated to use less data

23 Aug 02:59
Compare
Choose a tag to compare
  • BREAKING CHANGE: added, changed, removed, and diff events no longer exist. update event now includes a diff argument along with the data argument.
  • Differ adapted from pg-live-select
  • QueryCache revised
  • skipDiff setting now longer exists

Updated node-mysql to 2.6.1

12 Apr 03:01
Compare
Choose a tag to compare
v0.0.18

0.0.18: Update node-mysql to 2.6.1

Updated Zongji to 0.3.2

05 Mar 21:40
Compare
Choose a tag to compare

Fixes temporal types in MySQL >= 5.6.4

Fixed stop() method

27 Feb 22:53
Compare
Choose a tag to compare

Clients actually disconnect now

Minor fix in error handler callback

25 Feb 03:42
Compare
Choose a tag to compare

😅 😞

Sorry about this bug

Error handler for LiveMysql constructor

14 Feb 21:42
Compare
Choose a tag to compare

Errors on connection may now be handled by passing a callback to the constructor that accepts a single error argument.

See example:

var liveDb = new LiveMysql(Meteor.settings.mysql, function (error) {
    // ...
});

MySQL 5.6 now supported

11 Jan 08:15
Compare
Choose a tag to compare

After fixing upstream issue, MySQL 5.6 is now supported.

Including fractional seconds in TIME, DATETIME and TIMESTAMP fields!

This closes #1

Added `stop` and `active` methods to LiveMsqlSelect prototype

06 Jan 02:45
Compare
Choose a tag to compare